.premium-container {
    width: 100%;
    background-color: #faf4eb;
    padding: 80px 0;
    font-family: 'Montserrat', sans-serif;
    box-sizing: border-box;
}

.layout-engine {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    padding: 0 20px;
    align-items: center;
    box-sizing: border-box;
}

.column-left {
    flex: 1.1;
    box-sizing: border-box;
}

.column-right {
    flex: 0.9;
    width: 100%;
    box-sizing: border-box;
}

/* --- Brand Typography --- */
.brand-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(230, 51, 41, 0.08);
    padding: 6px 16px;
    border-radius: 50px;
    color: #e63329; /* Primary Red Color */
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

    .brand-badge .dot {
        width: 6px;
        height: 6px;
        background-color: #e63329; /* Primary Red Color */
        border-radius: 50%;
    }

.editorial-title {
    font-size: 44px;
    font-weight: 800;
    color: #212529; /* Deep Dark Charcoal/Black */
    line-height: 1.2;
    margin: 20px 0;
}

    .editorial-title em {
        font-style: italic;
        color: #e63329; /* Accent Red */
        font-weight: 700;
    }

.editorial-lead {
    font-size: 15px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 40px;
    text-align: justify;
}

/* --- Metrics Grid --- */
.metrics-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.metric-card {
    background: #ffffff;
    padding: 20px 15px;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    text-align: center;
}

    .metric-card h3 {
        margin: 0 0 5px 0;
        font-size: 20px;
        color: #e63329; /* Accent Red */
        font-weight: 700;
    }

    .metric-card p {
        margin: 0;
        font-size: 12px;
        color: #212529; /* Text Identity Color */
        font-weight: 500;
        line-height: 1.4;
    }

/* --- Premium Interactive Card --- */
.premium-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.02);
    box-sizing: border-box;
}

.segmented-control {
    display: flex;
    background: #f4f5f7;
    padding: 6px;
    border-radius: 14px;
    margin-bottom: 25px;
}

.segment-btn {
    flex: 1;
    border: none;
    background: transparent;
    padding: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .segment-btn.active {
        background: #ffffff;
        color: #e63329; /* Red Tone Accent Toggle */
        box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    }

/* --- Amount Input & Chips --- */
.amount-chips {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.chip {
    flex: 1;
    background: #ffffff;
    border: 1px solid #e1e4e8;
    padding: 12px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #212529; /* Reset Dark Type */
    cursor: pointer;
    transition: all 0.2s ease;
}

    .chip.selected {
        border-color: #e63329; /* Primary Red Active State */
        background: rgba(230, 51, 41, 0.05);
        color: #e63329;
    }

.smart-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: #f8fafc;
    border: 1px solid #e1e4e8;
    border-radius: 12px;
    padding: 0 15px;
    margin-bottom: 20px;
}

    .smart-input-wrapper span {
        font-size: 22px;
        font-weight: 600;
        color: #212529; /* Black Identity */
    }

.smart-input {
    width: 100%;
    border: none;
    background: transparent;
    padding: 15px 10px;
    font-size: 22px;
    font-weight: 700;
    color: #212529; /* Black Identity Input Typography */
    outline: none;
}

/* --- Form Fields --- */
.ui-field-row {
    display: flex;
    gap: 15px;
}

.ui-field {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

    .ui-field label {
        font-size: 12px;
        font-weight: 600;
        color: #212529; /* Label Text Dark */
    }

    .ui-field input {
        background: #ffffff;
        border: 1px solid #e1e4e8;
        padding: 12px 15px;
        border-radius: 10px;
        font-size: 14px;
        color: #212529;
        outline: none;
        transition: border-color 0.2s ease;
    }

        .ui-field input:focus {
            border-color: #e63329; /* Input Focus Dynamic Red */
        }

/* --- Action Button --- */
.premium-cta-btn {
    width: 100%;
    background: #e63329; /* Main Accent Red */
    color: #ffffff;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 25px;
    box-shadow: 0 6px 20px rgba(230, 51, 41, 0.25);
    transition: all 0.3s ease;
}

    .premium-cta-btn:hover {
        background: #cc2a21;
        transform: translateY(-1px);
    }

/* --- Bank Account Grid Display --- */
.bank-slate-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 350px;
    overflow-y: auto;
    padding-right: 5px;
}

    /* Custom Scrollbar for Bank List */
    .bank-slate-container::-webkit-scrollbar {
        width: 4px;
    }

    .bank-slate-container::-webkit-scrollbar-thumb {
        background: #e63329; /* Custom Mini-accent scroll thumb */
        border-radius: 10px;
    }

.bank-slate {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.bank-meta-left {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.bank-tag-pill {
    align-self: flex-start;
    font-size: 9px;
    font-weight: 700;
    background: #212529; /* Structural Dark Tag Badge */
    color: #ffffff;
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.bank-title-name {
    font-size: 14px;
    font-weight: 700;
    color: #212529; /* Dark Structure Group */
}

.bank-subtitle-loc {
    font-size: 11px;
    color: #64748b;
}

.bank-numeric-data {
    text-align: right;
    font-size: 12px;
    color: #212529; /* Compact Black Typography */
    line-height: 1.5;
}

    .bank-numeric-data span {
        color: #64748b;
        margin-right: 4px;
    }

/* --- Legal Footer --- */
.legal-exemption-footer {
    border-top: 1px dashed #e1e4e8;
    margin-top: 25px;
    padding-top: 15px;
    font-size: 11px;
    color: #666;
    line-height: 1.5;
}

.hidden {
    display: none !important;
}

/* ==========================================
     RESPONSIVE ENGINE (MEDIA QUERIES)
========================================== -->
@media (max-width: 991px) {
    .layout-engine {
        flex-direction: column;
        gap: 40px;
    }
    .editorial-title {
        font-size: 34px;
    }
}

@media (max-width: 576px) {
    .premium-container {
        padding: 40px 0;
    }
    .premium-card {
        padding: 20px;
    }
    .metrics-row {
        grid-template-columns: 1fr;
    }
    .bank-slate {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .bank-numeric-data {
        text-align: left;
    }
}











/* ==========================================================================
   PRODUCTION GRAPHICS STYLE ENGINE - INCLUDES PREMIUM BACKGROUND GRAPHICS
   ========================================================================== */

/* Component Root Scope */
.jas-donation-products-scope {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #fcf8f6;
    color: #1e293b;
    line-height: 1.5;

}

.jas-products-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Typography Title Elements */
.jas-products-header {
    text-align: center;
    margin-bottom: 45px;
}

.jas-products-title {
    font-size: 2.2rem;
    color: #1e293b;
    font-weight: 800;
    margin: 0 0 10px 0;
}

.jas-title-divider {
    width: 60px;
    height: 4px;
    background-color: #e8541a;
    margin: 0 auto;
    border-radius: 2px;
}

/* Master Grid Alignment */
.jas-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Premium Card Module with Warm Subtle Gradient Background */
.jas-product-card {
    background: linear-gradient(145deg, #ffffff 0%, #fffbf9 100%);
    border-radius: 16px;
    border: 1px solid rgba(232, 84, 26, 0.08); /* Sophisticated light primary tint line */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.35s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.35s ease, background 0.35s ease;
}

    /* Smooth Interactive Hover Fluid Effect */
    .jas-product-card:hover {
        transform: translateY(-8px);
        background: linear-gradient(145deg, #ffffff 0%, #fff6f2 100%); /* Transitions to rich orange hue */
        border-color: rgba(232, 84, 26, 0.3);
        box-shadow: 0 20px 38px rgba(232, 84, 26, 0.06);
    }

/* Core Visual Frame Stage */
.jas-product-image-wrapper {
    width: 100%;
    height: 240px;
    background: linear-gradient(180deg, #fafafa 0%, #f5f5f5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-bottom: 1px solid rgba(232, 84, 26, 0.06);
    overflow: hidden;
}

.jas-product-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.04)); /* Generates rich product image depth */
}

/* Meta Data Content Container */
.jas-product-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.jas-product-price-row {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 8px;
}

.jas-currency {
    font-size: 1.5rem;
    font-weight: 800;
    color: #e8541a;
    letter-spacing: -0.5px;
}

.jas-per-unit {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
}

.jas-product-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 16px 0;
    line-height: 1.3;
}

/* Checkmarked Attribute Lists */
.jas-product-specs {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-grow: 1;
}

    .jas-product-specs li {
        font-size: 0.92rem;
        color: #475569;
        display: flex;
        align-items: flex-start;
        line-height: 1.4;
    }

.spec-tick {
    color: #16a34a;
    font-weight: bold;
    margin-right: 10px;
    font-size: 0.9rem;
}

/* Premium Call To Action Button */
.jas-modal-trigger-btn {
    width: 100%;
    background-color: #1e293b;
    color: #ffffff;
    border: none;
    padding: 12px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

    .jas-modal-trigger-btn:hover {
        background-color: #e8541a;
    }

    .jas-modal-trigger-btn:active {
        transform: scale(0.98);
    }

/* High-End Frosted Glass PopUp Engine Backdrop */
.jas-custom-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease-in-out;
    padding: 20px;
}

    .jas-custom-modal-overlay.jas-modal-active {
        opacity: 1;
        pointer-events: auto;
    }

/* Overlay Surface Frame Box */
.jas-modal-wrapper {
    background: #ffffff;
    border-radius: 20px;
    position: relative;
    max-width: 750px;
    width: 100%;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); /* Elegant spring ease */
}

.jas-custom-modal-overlay.jas-modal-active .jas-modal-wrapper {
    transform: scale(1);
}

/* Floating Overlay Close Handle */
.jas-modal-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    font-weight: bold;
    color: #1e293b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 10;
    transition: background 0.2s, color 0.2s, transform 0.1s;
}

    .jas-modal-close-btn:hover {
        background: #e8541a;
        color: #ffffff;
    }

.jas-modal-body {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 0;
}

.jas-modal-responsive-img {
    width: 100%;
    height: auto;
    max-height: 85vh;
    object-fit: contain;
    display: block;
}

/* Responsive Adaptive Fluid Engine */
@media (max-width: 991px) {
    .jas-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 650px) {
    .jas-donation-products-scope {
        padding: 40px 15px;
    }

    .jas-products-grid {
        grid-template-columns: 1fr;
    }

    .jas-products-title {
        font-size: 1.8rem;
    }

    .jas-custom-modal-overlay {
        padding: 10px;
    }

    .jas-modal-wrapper {
        border-radius: 14px;
    }

    .jas-modal-close-btn {
        top: 10px;
        right: 10px;
        width: 32px;
        height: 32px;
        font-size: 20px;
    }
}























/* ==========================================================================
   JAS Unified Donation Hub - Premium Redesign
   ========================================================================== */

/* Container Setup */
.jas-unified-donation-hub {
    font-family: 'Segoe UI', Arial, sans-serif;
    padding: 60px 20px;
    background-color: #fcf8f6; /* Subtle warm background matching the page */
}

.jas-hub-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Architecture */
.jas-hub-header {
    text-align: center;
    margin-bottom: 50px;
}

.jas-badge-tag {
    background-color: rgba(232, 84, 26, 0.1);
    color: #e8541a;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
}

.jas-hub-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0 0 12px 0;
    letter-spacing: -0.5px;
}

.jas-hub-subtitle {
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0.8;
}

/* 2-Column Responsive Grid */
.jas-hub-row-matrix {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: start;
}

.jas-column-block-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* LEFT COLUMN - Premium White/Light Theme Cards */
.jas-donation-cards-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.jas-info-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

    .jas-info-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    }

/* Custom Identity Borders for Left Cards */
.jas-card-blue {
    border-left: 5px solid #2563eb;
}

.jas-card-grey {
    border-left: 5px solid #64748b;
}

.jas-card-green {
    border-left: 5px solid #16a34a;
}

.jas-card-pink {
    border-left: 5px solid #db2777;
}

.jas-card-yellow {
    border-left: 5px solid #eab308;
}

.jas-card-cyan {
    border-left: 5px solid #06b6d4;
}

.jas-info-card .jas-card-icon-box {
    background: #f8fafc;
    border-radius: 8px;
    min-width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #475569;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Left Column Icon Color Customization based on parent color class */
.jas-card-blue .jas-card-icon-box {
    color: #2563eb;
    background: rgba(37, 99, 235, 0.06);
}

.jas-card-green .jas-card-icon-box {
    color: #16a34a;
    background: rgba(22, 163, 74, 0.06);
}

.jas-card-pink .jas-card-icon-box {
    color: #db2777;
    background: rgba(219, 39, 119, 0.06);
}

.jas-card-yellow .jas-card-icon-box {
    color: #d97706;
    background: rgba(234, 179, 8, 0.08);
}

.jas-card-cyan .jas-card-icon-box {
    color: #0891b2;
    background: rgba(6, 182, 212, 0.06);
}

.jas-info-card .jas-card-content {
    color: #334155;
    font-size: 0.98rem;
    line-height: 1.5;
}

.jas-text-highlight {
    background: rgba(232, 84, 26, 0.08);
    color: #e63329;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 700;
}

/* Contact Card Controls */
.d-flex-mobile-control {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.jas-contact-name {
    font-weight: 700;
    color: #1e293b;
}

.jas-contact-link {
    background: #e63329;
    color: #ffffff !important;
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(232, 84, 26, 0.2);
    transition: background 0.2s ease;
}

    .jas-contact-link:hover {
        background: #cf4510;
    }

/* Trust/Tax Card Blueprint */
.jas-tax-certification-card {
    background: #edf2f7;
    border-radius: 12px;
    padding: 20px;
    border: 1px dashed #cbd5e1;
}

.jas-cert-badge {
    background: #1e293b;
    color: #ffffff;
    padding: 5px 12px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
}

.jas-cert-text {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #475569;
}


/* RIGHT COLUMN - Premium Brand-Color Bank Cards (#e8541a) */
.jas-bank-grid-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.jas-bank-card {
    background: linear-gradient(135deg, #857b77 0%, #e63329 100%);
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(232, 84, 26, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    color: #ffffff;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

    .jas-bank-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 15px 35px rgba(232, 84, 26, 0.25);
    }

    .jas-bank-card .jas-card-header {
        background: rgba(0, 0, 0, 0.12);
        padding: 16px 24px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

.jas-header-title-wrap span {
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.jas-bank-card .jas-card-body {
    padding: 24px;
}

.jas-details-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

    .jas-details-list li {
        display: flex;
        align-items: center;
        font-size: 0.95rem;
        color: rgba(255, 255, 255, 0.9);
    }

.jas-tick {
    color: rgba(255, 255, 255, 0.6);
    margin-right: 12px;
    font-size: 0.85rem;
}

.jas-field-label {
    min-width: 115px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
}

.jas-field-separator {
    margin-right: 12px;
    color: rgba(255, 255, 255, 0.4);
}

.jas-field-value {
    font-weight: 600;
}

/* Beautiful Highlight Strip for Account Numbers */
.jas-highlight-row {
    background: rgba(255, 255, 255, 0.12);
    padding: 10px 14px;
    border-radius: 8px;
    margin: 4px 0;
    border-left: 4px solid #ffffff;
}

.jas-bold-num {
    font-size: 1.15rem;
    letter-spacing: 0.5px;
    color: #ffffff;
}

.jas-code-mono {
    font-family: 'SFMono-Regular', Consolas, monospace;
    background: rgba(0, 0, 0, 0.15);
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

/* Responsive Breakpoints */
@media (max-width: 991px) {
    .jas-hub-row-matrix {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .jas-hub-title {
        font-size: 2.1rem;
    }
}

@media (max-width: 576px) {
    .jas-info-card {
        flex-direction: column;
        gap: 14px;
    }

    .d-flex-mobile-control {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .jas-contact-link {
        width: 100%;
        justify-content: center;
    }

    .jas-field-label {
        min-width: 95px;
        font-size: 0.9rem;
    }
}
