.minpght {
    min-height: 500px;
}

.bd-b1 {
    border-top: 1px solid #eee;
    margin-top: 30px;
}

.cmlink {
    color: var(--teal-dk);
    font-weight: 600;
}

/* INNER HERO */
.inner-hero {
    background: var(--teal-pale);
    padding: 20px 0 0;
    position: relative;
    overflow: hidden;
    color: #fff;
    text-align: center;
    z-index: 1;
}

    .inner-hero::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -20%;
        width: 140%;
        height: 140%;
        background: radial-gradient(circle, rgba(123, 232, 201, 0.08) 0%, transparent 60%);
        pointer-events: none;
    }

    .inner-hero h1 {
        font-size: clamp(3rem, 5vw, 4.5rem);
        font-weight: 300;
        margin-bottom: 20px;
        color: var(--charcoal);
    }

        .inner-hero h1 em {
            font-style: italic;
            color: var(--teal-dkr);
        }

.breadcrumb {
    justify-content: center;
    background: transparent;
    padding: 0;
    margin: 0;
    opacity: 0.8 !important;
}

.breadcrumb-item {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

    .breadcrumb-item a {
        color: var(--teal-dkr);
        text-decoration: none;
    }

    .breadcrumb-item.active {
        color: var(--charcoal);
    }

    .breadcrumb-item + .breadcrumb-item::before {
        color: var(--charcoal);
    }

/* â”€â”€ STAFF SECTION â”€â”€ */
.staff-card {
    background: #fff;
    border: none;
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s;
    height: 100%;
    overflow: hidden;
    position: relative;
}

    .staff-card:hover {
        box-shadow: 0 20px 40px rgba(123, 232, 201, 0.15);
    }

.staff-img-wrap {
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/5;
}

    .staff-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.8s;
    }

.staff-info {
    padding: 30px;
}

.staff-tag {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--teal-dkr);
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.staff-name {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 15px;
}

.staff-desc {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--mid);
    font-weight: 300;
}

/* â”€â”€ TOM HIGHLIGHT â”€â”€ */
.tom-highlight {
    padding: 60px 0;
    background: var(--off);
    position: relative;
}

    .tom-highlight::after {
        content: '';
        position: absolute;
        right: 0;
        bottom: 0;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(123, 232, 201, 0.05) 0%, transparent 70%);
    }

.tom-content h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 300;
    margin-bottom: 30px;
    line-height: 1.1;
}

    .tom-content h2 em {
        font-style: italic;
        color: var(--teal-dkr);
        display: block;
        font-size: 0.6em;
        margin-top: 5px;
    }

.tom-p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--mid);
    margin-bottom: 25px;
    font-weight: 400;
    text-align: justify;
}

.tom-stats {
    display: flex;
    gap: 30px;
    margin: 40px 0;
    padding: 30px 0;
    border-top: 1px border var(--border);
    border-bottom: 1px border var(--border);
}

.stat-item span {
    display: block;
    font-size: 1.5rem;
    color: var(--charcoal);
}

.stat-item label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--teal-dkr);
    font-weight: 600;
}

.tom-quote-group {
    background: var(--white);
    padding: 40px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.03);
    position: relative;
}

.tom-quote {
    font-style: italic;
    font-size: 1.4rem;
    color: var(--charcoal);
    padding-left: 25px;
    border-left: 2px solid var(--teal);
    margin: 25px 0;
    line-height: 1.4;
}

    .tom-quote:first-child {
        margin-top: 0;
    }

    .tom-quote:last-child {
        margin-bottom: 0;
    }

/* â”€â”€ UTILITIES â”€â”€ */
.btn-teal {
    background: var(--teal);
    color: var(--charcoal);
    padding: 12px 30px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border: none;
    border-radius: 0;
    transition: all 0.3s;
}

    .btn-teal:hover {
        background: var(--teal-dk);
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(123, 232, 201, 0.2);
    }

/* â”€â”€ EDUCATION CARDS â”€â”€ */
.edu-card {
    background: var(--white);
    border: none;
    border-radius: 0;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
    transition: all 0.5s cubic-bezier(0.2, 1, 0.2, 1);
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .edu-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 50px rgba(123, 232, 201, 0.15);
    }

.edu-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

    .edu-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.8s ease;
    }

.edu-title-wrap {
    padding: 25px 20px;
    background: var(--white);
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.4s;
    border-top: 1px solid rgba(123, 232, 201, 0.2);
}

.edu-card:hover .edu-title-wrap {
    background: var(--off);
}

.edu-title {
    font-size: 1.4rem;
    font-weight: 400;
    margin: 0;
    color: var(--charcoal);
    text-align: center;
    line-height: 1.2;
}

.edu-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--teal);
    transition: width 0.4s ease;
}

.edu-card:hover::after {
    width: 100%;
}

/* â”€â”€ BUDGET PAGE â”€â”€ */
.budget-content {
    padding: 60px 0;
    background: var(--white);
}

.back-link-wrapper {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 30px;
}

.btn-back {
    background: var(--teal);
    color: var(--charcoal);
    padding: 10px 25px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    border: none;
}

    .btn-back:hover {
        background: var(--teal-dk);
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(123, 232, 201, 0.25);
        color: var(--charcoal);
    }

.page-title-main {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 400;
    margin-bottom: 15px;
    color: var(--charcoal);
    line-height: 1.1;
}

.section-subtitle-underlined {
    display: inline-block;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--teal-dkr);
    padding-bottom: 8px;
    border-bottom: 2px solid var(--teal);
    font-weight: 600;
}

.budget-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 700px;
}

    .budget-list li {
        font-size: 1.15rem;
        color: var(--mid);
        display: flex;
        align-items: center;
        font-weight: 300;
        transition: color 0.3s;
        padding: 5px 0;
    }

        .budget-list li::before {
            content: "•";
            color: var(--teal-dk);
            font-size: 3rem;
            margin-right: 18px;
            line-height: 0;
            margin-top: 10px;
            flex-shrink: 0;
        }

        .budget-list li:hover {
            color: var(--charcoal);
        }

        .budget-list li strong {
            color: var(--charcoal);
            font-weight: 600;
            margin-left: 5px;
        }

.budget-intro h2 {
    font-size: clamp(3rem, 5.5vw, 4.2rem);
    font-weight: 300;
    color: var(--charcoal);
    margin-bottom: 1.8rem;
    line-height: 1.1;
}

.budget-intro p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--mid);
    margin-bottom: 2.5rem;
}

.budget-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.budget-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 1.25rem;
    color: var(--teal-dkr);
    opacity: 0.9;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .budget-icon i {
        font-size: 1.8rem;
        line-height: 1;
    }

.budget-card {
    background: linear-gradient(135deg, #ffffff 0%, #fcfcfc 100%);
    border: 1px solid var(--border);
    padding: 3rem 1.5rem;
    text-align: center;
    position: relative;
    transition: transform 0.45s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.45s ease, border-color 0.45s ease;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    height: 100%;
}

    .budget-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 30px 60px rgba(123, 232, 201, 0.12);
        border-color: var(--teal-mid);
    }

    .budget-card.featured {
        grid-column: span 3;
        background: #111;
        border: none;
        color: #fff;
        display: flex;
        flex-direction: row;
        /* Horizontal layout for featured */
        align-items: stretch;
        justify-content: space-between;
        text-align: left;
        padding: 0;
        overflow: hidden;
        min-height: 420px;
    }

.featured-img {
    width: 45%;
    background-size: cover;
    background-position: center;
    position: relative;
}

    .featured-img::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, transparent 0%, rgba(17, 17, 17, 0.4) 100%);
    }

.featured-content {
    width: 55%;
    padding: 4rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured .budget-pct {
    color: var(--teal);
    font-size: 3.5rem;
}

.featured .budget-info h3 {
    color: #fff;
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
}

.featured .budget-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.budget-pct {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 0.9;
    color: var(--teal-dkr);
    margin-bottom: 1.5rem;
    display: block;
}

.budget-label {
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--charcoal);
}

.budget-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 2.22rem;
    background: var(--teal);
    color: #fff !important;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: background 0.3s, transform 0.3s;
}

    .budget-btn:hover {
        background: #fff;
        color: var(--charcoal) !important;
        transform: translateY(-2px);
    }

.budget-visual {
    margin: 4rem 0;
    padding: 4rem;
    background: var(--off);
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 6rem;
}

.pie-chart-wrap {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: conic-gradient(var(--teal) 0% 50%, #e4e4e4 50% 100%);
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

    .pie-chart-wrap::after {
        content: '50%';
        position: absolute;
        inset: 20px;
        background: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2.5rem;
        font-weight: 600;
        color: var(--teal-dkr);
    }

.visual-info h4 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.featured .budget-info h3 {
    color: #fff;
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
}

.featured .budget-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Tip Card */
.tip-card {
    grid-column: span 1.5;
    background: var(--teal-pale);
    border: 1.5px dashed var(--teal-dk);
    padding: 2.5rem;
    text-align: left;
    display: flex;
    gap: 1.5rem;
}

    .tip-card svg {
        flex-shrink: 0;
        width: 24px;
        color: var(--teal-dkr);
    }

    .tip-card h5 {
        font-size: 0.9rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        margin-bottom: 0.5rem;
        color: var(--teal-dkr);
    }

    .tip-card p {
        font-size: 0.95rem;
        color: var(--mid);
        line-height: 1.6;
        margin: 0;
    }

/* ——— DIAMOND EDUCATION V4: MAGAZINE STYLE ——— */
.diamond-edu-section {
 
    padding: 60px 0;
}

.intro-lead {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 300;
    color: var(--charcoal);
    line-height: 1.3;
    max-width: 900px;
    margin: 0 auto 100px;
}

.edu-magazine-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
    position: relative;
    margin-bottom: 60px;

}

    .edu-magazine-row:nth-child(even) {
        direction: rtl;
    }

        .edu-magazine-row:nth-child(even) .text-side {
            direction: ltr;
            /* Reset text direction */
        }

.text-side {
    position: relative;
    z-index: 2;
}

.bg-number {
    position: absolute;
    top: -50px;
    left: -30px;
    font-size: 15rem;
    font-weight: 600;
    color: rgba(123, 232, 201, 0.08);
    /* Faint teal number */
    line-height: 1;
    z-index: -1;
    pointer-events: none;
}

.edu-mag-title {
    font-size: 40px;
    font-weight: 300;
    color: var(--charcoal);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

    .edu-mag-title::after {
        content: '';
        flex: 1;
        height: 1px;
        background: var(--teal);
        opacity: 0.4;
    }

.edu-mag-p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--mid);
    font-weight: 400;
    margin-bottom: 35px;
}

.text-side.tom-p ul {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

    .text-side.tom-p ul li {
        position: relative;
        padding-left: 28px;
        margin-bottom: 1.25rem;
        font-size: 15px;
        line-height: 1.7;
        color: var(--mid);
    }

        .text-side.tom-p ul li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--teal-dk);
            font-weight: 700;
        }

.diagram-side {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mag-diagram-frame {
    background: #fff;
    padding: 20px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border);
    transition: transform 0.5s ease;
    text-align: center;
  
}

    .mag-diagram-frame:hover {
        transform: translateY(-10px);
    }

    .mag-diagram-frame img {
        max-width: 100%;
        filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.06));
    }

.mag-caption {
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--light);
    margin-top: 25px;
    display: block;
    text-align: center;
}

/* Expert Box refined */
.mag-expert-box {
    background: var(--off);
    border: 1px solid var(--border);
    padding: 40px;
    margin-top: 50px;
    position: relative;
}

    .mag-expert-box h5 {
        font-size: 0.65rem;
        letter-spacing: 0.2em;
        font-weight: 700;
        color: var(--teal-dkr);
        margin-bottom: 15px;
        text-transform: uppercase;
    }

    .mag-expert-box p {
        font-size: 1rem;
        font-style: italic;
        color: var(--charcoal);
        margin: 0;
    }

/* Refined Clarity grid for magazine */
.mag-clarity-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.mag-clarity-item {
    padding: 20px;
    border: 1px solid var(--border);
    background: #fff;
}

    .mag-clarity-item strong {
        display: block;
        font-size: 1.3rem;
        color: var(--charcoal);
    }

    .mag-clarity-item span {
        font-size: 0.6rem;
        text-transform: uppercase;
        color: var(--teal-dkr);
        letter-spacing: 0.1em;
    }
.serv-title {
    color: var(--charcoal);
}



/* ——— BIRTHSTONE / TABLE STYLES ——— */
.edu-table-section {
    background: #fff;
    padding: 60px 0;
}

.mag-table-container {
    overflow: visible;
    margin-top: 50px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.03);
}

.mag-edu-table {
    width: 100%;
    border-collapse: collapse;
}

    .mag-edu-table th {
        background: #fcfcfc;
        padding: 24px 15px;
        font-size: 15px;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--light);
        border-bottom: 2px solid var(--teal-pale);
        text-align: left;
        font-weight: 600;
    }

.service-card-premium {
    display: block;
    position: relative;
    height: 350px;
    overflow: hidden;
    text-decoration: none;
    background: var(--charcoal);
}

.service-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
    opacity: 0.85;
}

.service-card-premium::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 60%);
    opacity: 0.7;
    transition: opacity 0.5s ease;
}

.service-meta {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem;
    z-index: 2;
    transition: transform 0.5s ease;
}

    .service-meta span {
        display: block;
        font-size: 13px;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: var(--teal);
        margin-bottom: 0.5rem;
        font-weight: 600;
    }

    .service-meta h3 {
        font-size: 1.8rem;
        color: #fff;
        margin: 0;
        font-weight: 300;
    }


.service-card-premium:hover::after {
    opacity: 0.9;
}

.service-card-premium.square {
    height: auto;
    aspect-ratio: 1 / 1;
}

    .service-card-premium.square .service-meta {
        padding: 1.5rem;
    }

        .service-card-premium.square .service-meta h3 {
            font-size: 1.3rem;
            font-weight: 400;
        }

.mag-edu-table tr:hover td {
    background: var(--off);
}

.month-cell {
    font-size: 14px;
    font-weight: 500;
    color: var(--teal-dkr);
    padding-left: 30px !important;
}

.month-data {
    font-size: 12px;
    font-weight: 400;
    color: var(--charcoal);
    padding-left: 30px !important;
}

.stone-img-cell {
    width: 120px;
    text-align: center;
}

.stone-sprite {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
    .stone-sprite img {
        max-width: 100%;
        margin: 0 auto;
        display: block;
    }

.sun-sign-cell {
    font-size: 12px !important;
    line-height: 1.8;
    color: var(--light) !important;
}

    .sun-sign-cell strong {
        display: block;
        color: var(--charcoal);
        font-size: 0.85rem;
        margin-bottom: 3px;
        font-size: 12px !important;
    }

@media screen and (max-width: 1199px) {
    .mag-edu-table thead {
        display: none;
    }

    .mag-edu-table tr {
        display: block;
        margin-bottom: 30px;
        background: #fff;
        border: 1px solid #eee;
        position: relative;
    }

    .mag-edu-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        text-align: right;
        border-bottom: 1px solid #f9f9f9;
        font-size: 0.9rem;
    }

        .mag-edu-table td::before {
            content: attr(data-label);
            float: left;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.65rem;
            letter-spacing: 0.1em;
            color: var(--light);
            text-align: left;
            margin-right: 15px;
        }

    .month-cell {
        padding-left: 20px !important;
        background: var(--off);
        justify-content: center !important;
        font-size: 1.6rem !important;
    }

        .month-cell::before {
            display: none;
        }

    .stone-img-cell {
        width: 100% !important;
        justify-content: center !important;
        padding: 20px !important;
    }

        .stone-img-cell::before {
            display: none;
        }
}

/* ——— ANNIVERSARY SECTION ——— */
.anniversary-mag-card {
    background: #fff;
    padding: 0;
    border: 1px solid var(--teal-pale);
    height: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.anni-card-img {
    height: 220px;
    background-size: cover;
    background-position: center;
    background-color: #fcfcfc;
    border-bottom: 1px solid var(--teal-pale);
}

.anni-card-padd {
    padding: 2.5rem 2rem;
    flex-grow: 1;
}

.anniversary-mag-card:hover {
    box-shadow: 0 20px 40px rgba(123, 232, 201, 0.12);
}

.anniversary-mag-card.active {
    background: var(--off);
    border-color: var(--teal-mid);
}

.anni-year {
    font-size: 5rem;
    font-weight: 300;
    line-height: 1;
    color: var(--teal-pale);
    opacity: 1;
    margin-bottom: 0.5rem;
}

.anniversary-mag-card.active .anni-year {
    color: var(--teal-dk);
    opacity: 0.2;
}

.anniversary-mag-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--charcoal);
}

    .anniversary-mag-card h3 em {
        color: var(--teal-dkr);
        font-style: italic;
    }

.anniversary-mag-card p {
    font-size: 15px;
    color: var(--mid);
    line-height: 1.8;
    font-weight: 400;
    margin: 0;
}

/* ——— ANNIVERSARY TABLE REFINEMENT ——— */
.anniversary-table {
    border: none !important;
}

    .anniversary-table thead {
        border-bottom: 2px solid var(--teal-pale);
    }

        .anniversary-table thead th {
            border: none !important;
            font-size: 14px;
            letter-spacing: 0.1em;
            color: var(--light);
            padding: 20px 10px;
        }

    .anniversary-table tr {
        border-bottom: 1px solid #f2f2f2;
    }

        .anniversary-table tr:last-child {
            border: none;
        }

    .anniversary-table td {
        padding: 35px 15px !important;
        vertical-align: top;
        border: none !important;
    }

.year-cell {
    width: 140px;
    line-height: 0.9;
}

    .year-cell strong {
        font-size: 20px;
        font-weight: 700;
        color: var(--charcoal);
        display: block;
    }

    .year-cell span {
        font-size: 12px;
        font-weight: 600;
        color: var(--light);
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

.gem-cell {
    width: 160px;
    font-size: 18px;
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    color: var(--charcoal);
    padding-top: 45px !important;
    /* Align with bottom of big number */
}

.desc-cell {
    font-size: 15px;
    line-height: 1.7;
    color: var(--mid);
    padding-top: 35px !important;
}


/* ——— WEDDING CHECKLIST SECTION ——— */
.checklist-timeline {
    position: relative;
    padding-left: 60px;
    margin-top: 4rem;
}

    .checklist-timeline::before {
        content: '';
        position: absolute;
        left: 14px;
        top: 0;
        bottom: 0;
        width: 2px;
        background: var(--teal-pale);
    }

.timeline-group {
    position: relative;
    margin-bottom: 4rem;
}

    .timeline-group::before {
        content: '';
        position: absolute;
        left: -60px;
        top: 10px;
        width: 30px;
        height: 30px;
        background: #fff;
        border: 2px solid var(--teal);
        border-radius: 50%;
        z-index: 2;
        transition: background 0.3s;
    }

    .timeline-group:hover::before {
        background: var(--teal);
    }

.timeline-header {
    margin-bottom: 1.5rem;
}

.timeline-time {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--teal-dkr);
    padding: 2px 12px;
    background: var(--teal-pale);
    border-radius: 20px;
    margin-bottom: 0.5rem;
}

.timeline-header h3 {
    font-size: 2rem;
    font-weight: 400;
    color: var(--charcoal);
}

.timeline-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .timeline-list li {
        position: relative;
        padding: 0.8rem 1.5rem;
        font-size: 15px;
        font-weight: 400;
        color: var(--mid);
        line-height: 1.8;
        border-bottom: 1px solid #f9f9f9;
        transition: background 0.2s;
    }

        .timeline-list li::before,
        .mag-list-check li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--teal-dk);
            font-weight: 700;
        }

.mag-list-check {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

    .mag-list-check li {
        position: relative;
        padding-left: 25px;
        margin-bottom: 0.8rem;
        font-size: 15px;
    }

.timeline-list li:last-child {
    border-bottom: none;
}

.timeline-list li:hover {
    background: #fafafa;
}

.the-big-day h3 {
    color: var(--teal-dkr);
    font-weight: 600;
}

.the-big-day::before {
    background: var(--teal);
    box-shadow: 0 0 15px rgba(123, 232, 201, 0.5);
    border: none;
    width: 34px;
    height: 34px;
    left: -62px;
}

@media (max-width: 768px) {
    .checklist-timeline {
        padding-left: 40px;
    }

    .timeline-group::before {
        left: -40px;
        width: 24px;
        height: 24px;
    }

    .the-big-day::before {
        left: -42px;
        width: 28px;
        height: 28px;
    }
}

/* ——— VIDEO GALLERY SECTION ——— */
.vid-card {
    background: #fff;
    border: 1px solid var(--teal-pale);
    overflow: hidden;
    transition: transform 0.4s, box-shadow 0.4s;
    position: relative;
}

    .vid-card:hover {
        box-shadow: 0 15px 35px rgba(58, 58, 58, 0.08);
        border-color: var(--teal-mid);
    }

.vid-embed-wrap {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    height: 0;
    overflow: hidden;
    background: #000;
}

    .vid-embed-wrap iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

.vid-content {
    padding: 1.5rem;
}

.vid-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--teal-dk);
    background: var(--off);
    padding: 2px 10px;
    margin-bottom: 0.8rem;
    border-radius: 4px;
}

.vid-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--charcoal);
}

.vid-card p {
    font-size: 0.9rem;
    color: var(--mid);
    line-height: 1.6;
    margin: 0;
}

.main-vid {
    border-width: 2px;
}

    .main-vid h3 {
        font-size: 2.2rem;
    }

@media (max-width: 991px) {
    .main-vid h3 {
        font-size: 1.8rem;
    }
}

/* ——— CONTACT SECTION ——— */
.contact-section {
    padding: 6rem 0;
    background: #fff;
}

.contact-info-wrap {
    padding-right: 2rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.cm-icon {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    background: var(--off);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, transform 0.3s;
}

    .cm-icon img {
        width: 45px;
        height: 45px;
    }

.contact-method:hover .cm-icon {
    background: var(--teal-pale);
    transform: scale(1.1);
}

.cm-text h4 {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--teal-dk);
    margin: 0 0 0.5rem 0;
}

.cm-text p {
    font-size: 1.05rem;
    color: var(--charcoal);
    margin: 0;
    line-height: 1.6;
}

.cm-text a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

    .cm-text a:hover {
        color: var(--teal);
    }

.map-wrap {
    border: 1px solid var(--teal-pale);
    padding: 8px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.contact-form-wrap {
    background: #fff;
    padding: 3.5rem;
    border: 1px solid var(--teal-pale);
    box-shadow: 0 20px 50px rgba(58, 58, 58, 0.05);
    position: relative;
}

    .contact-form-wrap::before {
        content: '';
        position: absolute;
        top: -1px;
        left: -1px;
        right: -1px;
        height: 4px;
        background: var(--teal);
    }

    .contact-form-wrap h3 {
        font-size: 2.2rem;
        color: var(--charcoal);
        margin-bottom: 0.5rem;
    }

    .contact-form-wrap p {
        font-size: 0.9rem;
        color: var(--mid);
    }

.mag-form label {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--charcoal);
    margin: 0;
    display: block;
}

.mag-form .form-control {
    border: 1px solid #dcdcdc;
    border-radius: 2px;
    padding: 0.6rem 1rem;
    font-size: 1rem;
    color: var(--charcoal);
    background: #fff;
    transition: border-color 0.3s, box-shadow 0.3s;
}

    .mag-form .form-control:focus {
        box-shadow: 0 0 0 3px rgba(123, 232, 201, 0.15);
        border-color: var(--teal);
    }

    .mag-form .form-control.is-invalid {
        border-color: #dc3545;
        box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
    }

    .mag-form .form-control::placeholder {
        color: #ccc;
        font-size: 0.9rem;
    }

@media (max-width: 991px) {
    .contact-info-wrap {
        padding-right: 0;
    }

    .contact-form-wrap {
        padding: 1.5rem;
    }

    .budget-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .budget-card.featured {
        grid-column: span 2;
        flex-direction: column;
        text-align: center;
    }

    .featured-img {
        width: 100%;
        height: 250px;
    }

    .featured-content {
        width: 100%;
        padding: 3rem 2rem;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 4rem 0;
    }

    .contact-form-wrap {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .budget-grid {
        grid-template-columns: 1fr;
    }

    .budget-card.featured {
        grid-column: span 1;
    }

    .tip-card {
        grid-column: span 1;
        flex-direction: column;
        text-align: center;
    }

    .featured .budget-info h3 {
        font-size: 2rem;
    }
}



/* ——— IN-PAGE NAVIGATION ——— */
.page-navigation {
    border-top: 1px solid var(--teal-pale);
    padding-top: 2rem;
    padding-bottom: 3rem;
    display: flex;
    justify-content: end;
}

.nav-btn {
    color: var(--teal);
    text-decoration: none;
    font-weight: 500;
    text-transform: capitalize;
    transition: all 0.3s ease;
    font-size: 1.15rem;
    display: inline-flex;
    align-items: center;
}

    .nav-btn:hover {
        color: var(--teal-dk);
    }

    .nav-btn.prev:hover {
        transform: translateX(-5px);
    }

    .nav-btn.next:hover {
        transform: translateX(5px);
    }

    .nav-btn i {
        font-size: 1.25rem;
        color: var(--teal);
        align-items: center;
    }

@media (max-width: 576px) {
    .nav-btn {
        font-size: 1rem;
    }
}

/* ── VENDOR LINKS SECTION ── */
.vendor-section {
    padding: 60px 0;
    background: var(--white);
}

.vendor-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

@media (max-width: 1100px) {
    .vendor-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .vendor-grid {
        grid-template-columns: 1fr;
    }
}

.vendor-card {
    background: #fff;
    border: 1px solid var(--border);
    transition: transform 0.4s cubic-bezier(0.2, 0, 0.2, 1), box-shadow 0.4s ease;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: 100%;
}

    .vendor-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(123, 232, 201, 0.12);
        border-color: var(--teal-mid);
    }

.v-img-wrap {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #fdfdfd;
}

    .v-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

.vendor-card:hover .v-img-wrap img {
    transform: scale(1.05);
}

.v-body {
    padding: 25px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .v-body h3 {
        font-size: 1.25rem;
        font-weight: 500;
        color: var(--charcoal);
        margin-bottom: 8px;
        letter-spacing: 0.05em;
    }

    .v-body p {
        font-size: 0.85rem;
        color: var(--light);
        margin-bottom: 25px;
        line-height: 1.6;
    }

.v-btn {
    margin-top: auto;
    display: inline-block;
    align-self: center;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--teal-dkr);
    font-weight: 600;
    position: relative;
    padding-bottom: 5px;
}

    .v-btn::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 10%;
        width: 80%;
        height: 1px;
        background: var(--teal-dkr);
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

.vendor-card:hover .v-btn::after {
    transform: scaleX(1);
}

/* -- PRODUCT GRID (VENDORS) -- */
.v-products-section {
    padding: 60px 0;
    background: #fdfdfd;
}

.v-controls {
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.btn-collection {
    background: var(--teal);
    color: var(--charcoal);
    padding: 8px 18px;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-decoration: none;
    border-radius: 2px;
    transition: background 0.3s;
}

    .btn-collection:hover {
        background: var(--teal-dk);
        color: var(--charcoal);
    }

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

@media (max-width: 1500px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}

.product-card {
    background: #fff;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    padding: 15px;
    border: 1px solid transparent;
}

    .product-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.06);
        border-color: var(--teal-mid);
    }

.p-img-wrap {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: #fafafa;
    margin-bottom: 20px;
    position: relative;
}

.p-wish {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 5;
    background: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

    .p-wish:hover {
        background: var(--teal);
        color: var(--charcoal);
        transform: scale(1.1);
    }

.p-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.8s cubic-bezier(0.2, 0, 0.2, 1);
}

.product-card:hover .p-img-wrap img {
    transform: scale(1.08);
}

.p-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 5px 0 10px;
}

.p-code {
    font-size: 0.72rem;
    color: var(--mid);
    letter-spacing: 0.12em;
    font-weight: 500;
    text-transform: uppercase;
}

.p-search {
    background: var(--charcoal);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 10px 22px;
    text-decoration: none;
    letter-spacing: 0.15em;
    transition: all 0.3s ease;
    border-radius: 0;
    width: 100%;
    text-align: center;
}

    .p-search:hover {
        background: var(--teal);
        color: var(--charcoal);
    }


.page-link {
    color: var(--charcoal);
}

    .active > .page-link, .page-link.active {
        background-color: var(--teal);
        border-color: var(--teal);
    }

.pagenavbottom {
    margin: 50px 0 20px;
}

/* -- FINANCING PAGE -- */
.financing-section {
    padding: 60px 0;
    background: #fff;
}

.layaway-wrap {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

@media (max-width: 992px) {
    .layaway-wrap {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .l-img {
        order: -1;
    }
}

.l-content h2 {
    font-size: 2.8rem;
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 25px;
    color: var(--charcoal);
}

.l-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .l-list li {
        position: relative;
        padding-left: 30px;
        margin-bottom: 20px;
        color: var(--mid);
        font-weight: 400;
        font-size: 15px;
        line-height: 1.8;
    }

        .l-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--teal-dk);
            font-weight: 700;
        }

.l-img {
    overflow: hidden;
}

    .l-img img {
        width: 100%;
        transition: transform 0.6s ease;
    }

.f-provider-section {
    background: #fdfdfd;
    padding: 60px 0;
}

.f-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

@media (max-width: 768px) {
    .f-grid {
        grid-template-columns: 1fr;
    }
}

.f-card {
    background: #fff;
    padding: 20px;
    border: 1px solid #f0f0f0;
    text-align: center;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .f-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
        border-color: var(--teal);
    }

.f-logo {
    width: 140px;
    height: 140px;
    margin-bottom: 30px;
}

    .f-logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

.f-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    letter-spacing: 0.05em;
    color: var(--charcoal);
}

.f-card p {
    color: var(--mid);
    font-size: 15px;
    line-height: 1.8;
    flex-grow: 1;
}

.btn-f-apply {
    background: var(--charcoal);
    color: #fff;
    padding: 12px 35px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.2rem;
    font-weight: 600;
    transition: 0.3s;
}

    .btn-f-apply:hover {
        background: var(--teal);
        color: var(--charcoal);
    }

/* -- PICTURE GALLERY -- */
.gallery-section {
    padding: 60px 0;
    background: #fff;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.filter-btn {
    background: none;
    border: none;
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--light);
    cursor: pointer;
    padding-bottom: 5px;
    position: relative;
    transition: color 0.3s;
}

    .filter-btn.active,
    .filter-btn:hover {
        color: var(--charcoal);
    }

    .filter-btn::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 1px;
        background: var(--teal);
        transform: scaleX(0);
        transition: transform 0.3s;
    }

    .filter-btn.active::after {
        transform: scaleX(1);
    }

.gallery-grid {
    columns: 3;
    column-gap: 20px;
}

@media (max-width: 992px) {
    .gallery-grid {
        columns: 2;
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        columns: 1;
    }
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

    .gallery-item img {
        width: 100%;
        display: block;
        transition: transform 0.6s cubic-bezier(0.2, 0, 0.2, 1);
    }

/* -- CHARITY DONATIONS -- */
.charity-section {
    padding: 60px 0;
    background: #fff;
}

.charity-intro {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

    .charity-intro h2 {
        font-family: 'Cormorant Garamond', serif;
        font-size: 2.8rem;
        color: var(--charcoal);
        margin-bottom: 25px;
    }

.charity-table-wrap {
    overflow-x: auto;
    margin-bottom: 80px;
    border: 1px solid #eee;
    padding: 20px;
    background: #fdfdfd;
}

.charity-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
}

    .charity-table th {
        background: var(--charcoal);
        color: #fff;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        padding: 15px;
        text-align: left;
    }

    .charity-table td {
        padding: 15px;
        border-bottom: 1px solid #efefef;
        color: var(--mid);
    }

    .charity-table tr:hover td {
        background: #f9f9f9;
    }

.charity-highlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    background: #f8f8f8;
    padding: 60px;
}


.ch-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.ch-img-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

    .ch-img-grid img {
        width: 100%;
        aspect-ratio: 1;
        object-fit: cover;
    }

.org-list-section {
    padding: 60px 0 0;
    border-top: 1px solid #eee;
}

.org-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}


.org-col ul {
    list-style: none;
    padding: 0;
}

.org-col li {
    font-size: 0.85rem;
    color: var(--light);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .org-col li::before {
        content: '✓';
        left: 0;
        color: var(--teal-dk);
        font-weight: 700;
    }

/* -- IMPROVED CHARITY DESIGN -- */
.charity-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 80px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    border: 1px solid #eee;
    background: #fff;
    transition: 0.3s;
}

    .stat-item:hover {
        border-color: var(--teal);
        transform: translateY(-5px);
    }

    .stat-item h2 {
        font-family: 'Jost', sans-serif;
        font-size: 2.5rem;
        font-weight: 600;
        color: var(--charcoal);
        margin-bottom: 5px;
    }

    .stat-item p {
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.2em;
        color: var(--light);
    }

.charity-table-magazine {
    background: #fff;
    border: 1px solid #eee;
    padding: 40px;
    margin-bottom: 100px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.mag-table {
    width: 100%;
    border-collapse: collapse;
}

    .mag-table th {
        border-bottom: 2px solid var(--charcoal);
        padding: 20px 10px;
        font-family: 'Jost', sans-serif;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.15em;
        font-size: 0.75rem;
        color: var(--charcoal);
        text-align: left;
    }

    .mag-table td {
        padding: 20px 10px;
        border-bottom: 1px solid #f2f2f2;
        font-size: 0.9rem;
        color: var(--mid);
    }

    .mag-table tr:last-child td {
        border-bottom: none;
    }

.tag-donation {
    display: inline-block;
    padding: 4px 12px;
    background: #f8f8f8;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--light);
    border-radius: 2px;
}

.amount-col {
    font-weight: 600;
    color: var(--charcoal);
    text-align: right;
}

/* -- READ MORE SYSTEM -- */
.mag-table tr.row-hidden {
    display: none;
}

.read-more-wrap {
    text-align: center;
    margin-top: 40px;
}

.btn-read-more {
    font-family: 'Jost', sans-serif;
    background: transparent;
    border: 1px solid var(--charcoal);
    padding: 12px 40px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    color: var(--charcoal);
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

    .btn-read-more:hover {
        background: var(--charcoal);
        color: #fff;
        letter-spacing: 0.3em;
    }

/* --- VIP CUSTOMER PAGE ENHANCED --- */
.vip-section {
    padding: 60px 0;
    background: radial-gradient(circle at top left, #fdfdfd 0%, #f4f9f7 100%);
    position: relative;
    overflow: hidden;
}

    .vip-section::before {
        content: '';
        position: absolute;
        top: -10%;
        right: -10%;
        width: 60%;
        height: 60%;
        background: radial-gradient(circle, rgba(123, 232, 201, 0.07) 0%, transparent 70%);
        pointer-events: none;
        z-index: 0;
    }

    .vip-section::after {
        content: '';
        position: absolute;
        bottom: -10%;
        left: -5%;
        width: 40%;
        height: 40%;
        background: radial-gradient(circle, rgba(123, 232, 201, 0.04) 0%, transparent 70%);
        pointer-events: none;
        z-index: 0;
    }

.benefits-col {
    padding-right: 80px;
    z-index: 2;
    position: relative;
}

.vip-benefits-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--teal-dkr);
    margin-bottom: 20px;
    display: inline-block;
    font-weight: 600;
}

.vip-benefit-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.vip-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

    .vip-benefit-item:hover {
        transform: translateX(10px);
    }

.vbi-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--teal-dkr);
    font-size: 1.25rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(123, 232, 201, 0.2);
}

.vbi-text {
    font-size: 15px;
    color: var(--mid);
    line-height: 1.8;
    font-weight: 300;
    align-self: center;
}

    .vbi-text strong {
        display: block;
        color: var(--charcoal);
        font-weight: 600;
        font-size: 1.15rem;
        margin-bottom: 4px;
    }

.vip-promo-card {
    background: var(--charcoal);
    color: #fff;
    padding: 40px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

    .vip-promo-card::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(123, 232, 201, 0.1) 0%, transparent 50%);
        pointer-events: none;
    }

    .vip-promo-card h3 {
        font-size: 1.8rem;
        font-weight: 300;
        margin-bottom: 15px;
        position: relative;
    }

        .vip-promo-card h3 em {
            color: var(--teal);
            font-style: italic;
        }

    .vip-promo-card p {
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.7);
        margin: 0;
        line-height: 1.6;
    }

.vip-tom-frame {
    position: relative;
    margin-top: 60px;
    border: none;
    box-shadow: none;
    padding: 0;
    background: transparent;
}

.vip-tom-img-wrap {
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
}

.vip-tom-img {
    width: 100%;
    display: block;
    height: auto;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.vip-tom-frame:hover .vip-tom-img {
    transform: scale(1.05);
}

.vip-tom-badge {
    position: absolute;
    bottom: -20px;
    right: 40px;
    background: var(--teal);
    color: var(--charcoal);
    padding: 20px 30px;
    box-shadow: 0 15px 35px rgba(123, 232, 201, 0.3);
    z-index: 3;
    text-align: center;
}

.vtb-name {
    display: block;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.vtb-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0.8;
}

.vip-form-col {
    position: relative;
}

.vip-form-wrap {
    background: #fff;
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.vip-form-horizontal .form-control {
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 10px 15px;
    font-size: 1rem;
    background: #fff;
    color: #333;
}

    .vip-form-horizontal .form-control:focus {
        border-color: var(--teal);
        box-shadow: 0 0 0 3px rgba(123, 232, 201, 0.2);
    }

.vform-req-note {
    color: #ff5e7d;
    font-size: 1rem;
    margin-bottom: 40px;
}

.vlabel {
    font-weight: 700;
    font-size: 1.1rem;
    color: #333;
}

.vstar {
    color: #f00;
    font-weight: 700;
}

.captcha-box-simple {
    border: 1px solid #d3d3d3;
    background: #f9f9f9;
    padding: 15px 20px;
    border-radius: 3px;
    width: 100%;
}

.captcha-check {
    width: 24px;
    height: 24px;
    border: 2px solid #c1c1c1;
    border-radius: 2px;
    background: #fff;
}

.captcha-text {
    font-family: Roboto, helvetica, arial, sans-serif;
    font-size: 14px;
    color: #000;
}

.captcha-brand {
    font-size: 8px;
    color: #555;
    margin-top: 2px;
    text-transform: none;
    letter-spacing: 0;
}

.vsubmit-btn {
    background: #7be8c9;
    color: #3a3a3a;
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
    border-radius: 3px;
}

    .vsubmit-btn:hover {
        background: #5eced0;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

.vform-privacy-note {
    color: #ff5e7d;
    font-size: 1rem;
    margin-top: 25px;
}

@media (max-width: 767px) {
    .text-md-end {
        text-align: left !important;
        margin-bottom: 10px;
    }
}

.vform-mission {
    display: block;
    margin-top: 15px;
    font-size: 1.2rem;
    color: var(--charcoal);
    font-weight: 600;
    font-style: normal;
    text-transform: none;
}


@media (max-width: 1199px) {
    .benefits-col {
        padding-right: 30px;
    }

    .vip-form-wrap {
        padding: 50px;
    }
}

@media (max-width: 991px) {
    .benefits-col {
        padding-right: 15px;
    }

    .vform-title {
        font-size: 2.2rem;
    }
}

/* --- CANADIAN PAGE ENHANCED --- */
.canadian-section {
    padding: 60px 0;
    background: radial-gradient(circle at bottom right, #fff 0%, #fffbfb 100%);
    position: relative;
    overflow: hidden;
}

.canadian-content {
    position: relative;
    z-index: 2;
}

.canadian-title-group h2.canadian-subhead {
    font-size: 44px;
    line-height: 1.1;
    font-weight: 300;
    color: var(--charcoal);
    margin-bottom: 30px;
    text-align: left;
}

.canadian-subhead em {
    color: #ff5e7d;
    font-style: italic;
}

.canadian-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.canadian-benefit-card {
    background: rgba(255, 255, 255, 0.7);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 20px;
    border-radius: 4px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
}

    .canadian-benefit-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
        border-color: rgba(255, 94, 125, 0.2);
    }

.cbc-icon {
    font-size: 1.8rem;
    color: #ff5e7d;
    margin-bottom: 12px;
    display: block;
}

.cbc-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--mid);
    font-weight: 400;
}

    .cbc-text strong {
        color: var(--charcoal);
        font-weight: 700;
    }

.canadian-quote-box {
    background: var(--charcoal);
    color: #fff;
    padding: 45px;
    position: relative;
    overflow: hidden;
    margin-top: 40px;
}

.hoisted-flag {
    position: fixed;
    bottom: 0;
    left: 40px;
    z-index: 9999;
    display: flex;
    align-items: flex-end;
    pointer-events: none;
}

.flag-pole {
    width: 4px;
    height: 140px;
    background: linear-gradient(to right, #e0e0e0, #888, #e0e0e0);
    border-radius: 4px 4px 0 0;
    position: relative;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

    .flag-pole::after {
        content: '';
        position: absolute;
        top: -6px;
        left: -3px;
        width: 10px;
        height: 10px;
        background: radial-gradient(circle at 30% 30%, #ffd700, #b8860b);
        border-radius: 50%;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

.flag-canvas {
    width: 90px;
    height: 55px;
    position: absolute;
    bottom: 75px;
    left: 4px;
    transform-origin: left center;
    animation: flag-wave 4s ease-in-out infinite;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.15);
    border-left: 2px solid rgba(0, 0, 0, 0.1);
}

    .flag-canvas img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

@keyframes flag-wave {
    0% {
        transform: rotate(0deg) skewY(0deg) scaleX(1);
    }

    25% {
        transform: rotate(2deg) skewY(1deg) scaleX(0.98);
    }

    50% {
        transform: rotate(-1deg) skewY(-1deg) scaleX(1.02);
    }

    75% {
        transform: rotate(1deg) skewY(0.5deg) scaleX(0.99);
    }

    100% {
        transform: rotate(0deg) skewY(0deg) scaleX(1);
    }
}

@media (max-width: 768px) {
    .hoisted-flag {
        left: 20px;
        transform: scale(0.8);
        transform-origin: bottom left;
    }
}

.canadian-quote-box::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 94, 125, 0.1) 0%, transparent 70%);
}

.cqb-text {
    font-size: 25px;
    line-height: 1.4;
    font-weight: 300;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

    .cqb-text strong {
        color: #ff5e7d;
        font-style: italic;
        font-weight: 300;
    }

.canadian-note {
    color: var(--mid);
    opacity: 0.6;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

@media (max-width: 991px) {
    .canadian-grid {
        grid-template-columns: 1fr;
    }

    .canadian-benefit-card[style*="grid-column: span 2"] {
        grid-column: span 1 !important;
    }

    .canadian-title-group h2.canadian-subhead {
        font-size: 2.2rem;
    }

    .canadian-quote-box {
        padding: 40px 30px;
    }

    .cqb-text {
        font-size: 1.6rem;
    }
}

@media (max-width: 576px) {
    .canadian-section {
        padding: 40px 0;
    }

    .canadian-title-group h2.canadian-subhead {
        font-size: 1.8rem;
    }

    .canadian-benefit-card {
        padding: 25px 20px;
    }

    .cqb-text {
        font-size: 1.3rem;
    }

    .canadian-quote-box {
        padding: 30px 20px;
    }
}

/* --- TV & RADIO ARCHIVES --- */
.tr-section {
    padding: 60px 0;
    background: #fdfaf7;
    /* Warm archival cream */
    position: relative;
    overflow: hidden;
}

    .tr-section::before {
        content: 'ARCHIVE';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(-5deg);
        font-size: 25vw;
        font-family: 'Cormorant Garamond', serif;
        font-weight: 700;
        color: rgba(0, 0, 0, 0.02);
        white-space: nowrap;
        pointer-events: none;
        z-index: 0;
    }

.tr-sticky-nav {
  
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 20px 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    width:100%;
}

    .tr-sticky-nav.scrolled {
        position: fixed;
        top: 155px;
    }
    .tr-nav-list {
        display: flex;
        justify-content: center;
        gap: 30px;
        list-style: none;
        margin: 0;
        padding: 0;
    }

.tr-nav-link {
    font-family: 'Jost', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: #999;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    padding: 10px 0;
}

    .tr-nav-link:hover {
        color: var(--charcoal);
    }

    .tr-nav-link.active {
        color: var(--teal);
    }

        .tr-nav-link.active::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--teal);
            transform-origin: left;
            animation: tr-nav-line 0.5s forwards;
        }

@keyframes tr-nav-line {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}


.tr-category {
    margin-bottom: 100px;
    scroll-margin-top: 180px;
}

.tr-category-head {
    display: flex;
    align-items: baseline;
    gap: 20px;
    margin-bottom: 40px;
}

.tr-category-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 300;
    margin: 0;
    color: var(--charcoal);
}

    .tr-category-title em {
        font-style: italic;
        color: var(--teal-dk);
    }

.tr-category-count {
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    color: var(--light);
    font-weight: 400;
}

.tr-audio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.tr-audio-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.03);
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 35px;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
    cursor: pointer;
}


    .tr-audio-card:hover {
        box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
        transform: translateY(-10px);
        border-color: var(--teal);
    }


.tr-play-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-dk);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.tr-audio-card:hover .tr-play-btn {
    background: var(--teal);
    color: #fff;
}

.tr-audio-info {
    flex-grow: 1;
}

.tr-audio-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--teal-dk);
    font-weight: 700;
    margin-bottom: 5px;
    display: block;
}

.tr-audio-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 500;
    margin: 0;
    color: var(--charcoal);
}

.tr-player-wrap {
    margin-top: 15px;
}

    .tr-player-wrap audio {
        width: 100%;
        height: 30px;
        filter: invert(10%) sepia(50%) saturate(200%) hue-rotate(150deg);
    }

/* TV SECTION - CINEMA MODE */
.tr-cinema-section {
    padding: 60px 0;
    color: #fff;
    position: relative;
}

    .tr-cinema-section::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 150%;
        height: 150%;
        background: radial-gradient(circle, rgba(0, 188, 188, 0.05) 0%, transparent 70%);
        transform: translate(-50%, -50%);
        pointer-events: none;
    }

.tr-video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}


.tr-vid-card {
    position: relative;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

    .tr-vid-card:hover {
        transform: scale(1.02);
    }

.tr-vid-embed {
    position: relative;
    aspect-ratio: 16/9;
    background: #000;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

    .tr-vid-embed iframe {
        width: 100%;
        height: 100%;
        border: none;
    }

.tr-vid-info h3 {
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 10px;
    color: var(--charcoal);
}

.tr-vid-tag {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--teal);
    font-weight: 600;
}

@media (max-width: 991px) {
    .tr-nav-list {
        gap: 15px;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 0 20px;
    }

    .tr-nav-link {
        white-space: nowrap;
    }

    .tr-category-title {
        font-size: 2.8rem;
    }

    .tr-audio-grid,
    .tr-video-grid {
        grid-template-columns: 1fr;
    }

    .tr-audio-card {
        padding: 20px;
        gap: 15px;
    }

    .tr-play-btn {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 576px) {

    .tr-section,
    .tr-cinema-section {
        padding: 30px 0;
    }

    .tr-category-title {
        font-size: 2.2rem;
    }

    .tr-audio-title {
        font-size: 1.3rem;
    }
}

/* ══════════════════════════════════════════════════════════════════
   LOGIN & AUTH PAGES
   ══════════════════════════════════════════════════════════════════ */
.auth-section {
    min-height: calc(100vh - 160px);
    display: flex;
    align-items: stretch;
    background: #fff;
    overflow: hidden;
    padding: 0 ;
}

.auth-row {
    display: flex;
    width: 100%;
}

.auth-img-col {
    flex: 1.2;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

    .auth-img-col::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to right, rgba(0, 0, 0, 0.4), transparent);
    }

.auth-form-col {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px;
    background: #fff;
    position: relative;
}

.auth-card {
    width: 100%;
    max-width: 440px;
}

.auth-header {
    margin-bottom: 35px;
}

    .auth-header h1 {
        font-family: 'Cormorant Garamond', serif;
        font-size: 3.8rem;
        font-weight: 300;
        color: var(--charcoal);
        margin-bottom: 15px;
        line-height: 1;
        letter-spacing: -0.02em;
    }

        .auth-header h1 em {
            font-style: italic;
            color: var(--teal);
        }

    .auth-header p {
        color: #888;
        font-size: 0.9rem;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        font-weight: 500;
    }

        .auth-header p a {
            color: var(--charcoal);
            font-weight: 700;
            text-decoration: none;
            margin-left: 8px;
            border-bottom: 1px solid transparent;
            transition: all 0.3s ease;
        }

            .auth-header p a:hover {
                border-color: var(--teal);
            }

.auth-group {
    margin-bottom: 30px;
}

    .auth-group label {
        display: block;
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.15em;
        color: #444;
        margin-bottom: 10px;
        font-weight: 700;
    }

.auth-field {
    width: 100%;
    background: #f9f9f9;
    border: 1px solid #eee;
    padding: 16px 20px;
    font-family: 'Jost', sans-serif;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
    color: var(--charcoal);
}

    .auth-field:focus {
        background: #fff;
        border-color: var(--teal);
        outline: none;
        box-shadow: 0 10px 30px rgba(0, 188, 188, 0.08);
        transform: translateY(-2px);
    }

.auth-footer {
    margin-top: 40px;
}

.auth-btn-row {
    display: flex;
    align-items: center;
    gap: 30px;
}

.auth-links {
    margin-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f0f0f0;
    padding-top: 20px;
}

    .auth-links a {
        color: #999;
        font-size: 0.85rem;
        text-decoration: none;
        transition: all 0.3s ease;
    }

        .auth-links a:hover {
            color: var(--teal);
            transform: translateX(3px);
        }

.auth-brand-note {
    margin-top: 25px;
    font-size: 0.8rem;
    color: red;
    font-style: italic;
    line-height: 1.8;
}
.redtext, .redclr, .textred, .pricemsg {
    color: #d61212;
}
.hidden {
    display:none !important;
}

@media (max-width: 1199px) {
    .auth-form-col {
        padding: 50px;
    }

    .tr-audio-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .tr-sticky-nav.scrolled {
        position: fixed;
        top: 115px;
    }
}
@media (max-width: 991px) {


    .auth-row {
        flex-direction: column;
    }

    .auth-img-col {
        height: 250px;
        flex: none;
        width: 100%;
    }

    .auth-form-col {
        padding: 40px 20px;
        flex: none;
        width: 100%;
    }

    .auth-header h1 {
        font-size: 3rem;
    }

    .auth-header {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .auth-header h1 {
        font-size: 2.2rem;
    }
    .tr-audio-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }
    .auth-btn-row {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    .auth-brand-note {
        margin-top: 40px;
    }
    .tr-nav-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        overflow-x: hidden;
        gap: 10px;
    }
    .tr-nav-link.active::after{
        bottom: 2px;
    }
 }

/* --- WISHLIST PAGE --- */
.wishlist-section {
    padding: 60px 0;
}

.wishlist-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.wishlist-item {
    display: flex;
    flex-direction: column;
}

.wi-img-wrap {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    margin-bottom: 25px;
    background: #fdfdfd;
}

    .wi-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }

.wishlist-item:hover .wi-img-wrap img {
    transform: scale(1.1);
}

.wi-content {
    flex-grow: 1;
    text-align: center;
}

.wi-category {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--teal);
    margin-bottom: 10px;
    display: block;
    font-weight: 700;
}

.wi-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: var(--charcoal);
    margin-bottom: 10px;
    font-weight: 400;
}

.wi-price {
    font-family: 'Jost', sans-serif;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 25px;
    display: block;
}

.wi-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    border-top: 1px solid #f2f2f2;
    padding-top: 20px;
}

.wi-btn {
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.wi-btn-cart {
    color: var(--teal);
}

    .wi-btn-cart:hover {
        color: var(--teal-dk);
    }

.wi-btn-remove {
    color: #999;
}

    .wi-btn-remove:hover {
        color: #d9534f;
    }

/* Empty State */
.wishlist-empty {
    text-align: center;
    padding: 100px 0;
}

.we-icon {
    font-size: 4rem;
    color: #eee;
    margin-bottom: 30px;
    display: block;
}

.we-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.we-text {
    color: #888;
    max-width: 450px;
    margin: 0 auto 40px;
    line-height: 1.8;
}
/** Iframe */
.dframebg {
    width: 100%;
    height: 2750px;
}

.framebg {
    width: 100%;
    height: 1622px;
    border: 0;
}

@media (max-width: 991px) {
    .wishlist-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 575px) {
    .wishlist-grid {
        grid-template-columns: 1fr;
    }

    .we-title {
        font-size: 2rem;
    }
}

/* --- SITEMAP PAGE --- */
.sitemap-section {
    padding: 100px 0;
}

.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
}

.sitemap-col h2 {
    font-family: 'Jost', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--teal-dk);
    margin-bottom: 30px;
    font-weight: 700;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
}

.sitemap-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .sitemap-list li {
        margin-bottom: 12px;
    }

    .sitemap-list a {
        text-decoration: none;
        color: var(--charcoal);
        font-size: 0.95rem;
        transition: color 0.3s ease;
        font-weight: 400;
        display: inline-block;
    }

        .sitemap-list a:hover {
            color: var(--teal-dk);
            transform: translateX(5px);
        }

.filter {
    background: #fff;
    border: 1px solid #e5e5e5;
    padding: 20px;
    margin-bottom: 20px;
}

    .filter h4 {
        margin: 0 0 15px;
        padding-bottom: 10px;
        font-size: 18px;
        font-weight: 600;
        color: #222;
        border-bottom: 2px solid var(--teal);
    }

    .filter ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

        .filter ul li {
            margin-bottom: 0px;
        }


            .filter ul li a {
                display: block;
                padding: 10px 12px;
                color: #444;
                text-decoration: none;
                transition: all 0.3s ease;
                font-size: 15px;
            }

                .filter ul li a:hover {
                    background: var(--teal);
                    padding-left: 18px;
                }

                .filter ul li a.active {
                    background: var(--teal);
                    color: #fff;
                    font-weight: 600;
                }

.closem, .closem:hover {
    position: absolute;
    right: -17px;
    top: -16px;
    background: var(--teal);
    color: var(--charcoal);
    border: 0;
    font-size: 20px;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    line-height: 35px;
    z-index: 99;
}

.BtnClose, .BtnClose.hover {
    background: #f2f2f2;
    padding: 6px 10px;
    border: 0;
    line-height: 1.5;
}

.btnviewcart, .btnviewcart:hover {
    background: var(--teal);
    color: var(--charcoal);
    padding: 6px 10px;
    border: 0;
    line-height: 1.5;
    text-decoration: none;
}

.msgcartsuccess {
    text-align: center;
    padding: 20px 0;
    font-size: 20px;
    background: #fff;
    margin: 0;
}

/* ——— RESPONSIVE ——— */
@media(max-width: 1399.98px) {
    .dframebg {
        height: 5650px;
    }

    .framebg {
        height: 1422px;
    }
}

@media(max-width: 1199.98px) {
    .sitemap-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

    .dframebg {
        height: 5750px;
    }
}

@media(max-width: 1032.98px) {
    .dframebg {
        height: 6650px;
    }
}

@media(max-width: 991px) {
    .diamond-edu-section {
        padding: 10px 0 !important;
    }
    .stat-item {
      
        padding: 10px;
    }
    .charity-stats, .charity-table-magazine, .charity-highlight {
        margin-bottom: 30px;
    }
    .charity-table-magazine {
        padding: 15px;
    }
    .mag-table th, .mag-table td {
        padding: 10px;
    }
        .dframebg {
        height: 5750px;
    }

    .budget-content {
        padding: 10px 0 !important;
    }

    .edu-magazine-row {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 80px;
        direction: ltr !important;
    }

        .edu-magazine-row:nth-child(even) .text-side {
            direction: ltr;
            /* Reset text direction for mobile stacks */
        }

    .bg-number {
        font-size: 8rem;
        top: -30px;
        left: -10px;
        opacity: 0.05;
    }

    .edu-mag-title {
        font-size: 32px;
        margin-bottom: 20px;
    }


    .mag-diagram-frame {
        padding: 20px 20px;
        max-width: 640px;
        margin: 0 20px 30px;
        text-align: center;
    }


    .mag-clarity-grid {
        grid-template-columns: 1fr;
    }

    .intro-lead {
        font-size: 1.5rem;
        margin-bottom: 60px;
        text-align: center;
    }

    .inner-hero h1 {
        font-size: 2.5rem;
    }

    .contact-info-wrap {
        padding-right: 0;
    }

    .sitemap-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .charity-highlight {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }

    .org-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0px 20px;
    }
}


@media(max-width: 807px) {
    .dframebg {
        height: 8150px;
    }

    .framebg {
        height: 3600px;
    }
}

@media (max-width: 720px) {
    .dframebg {
        height: 7150px;
    }

    .framebg {
        height: 3300px;
    }
}

@media (max-width: 650px) {
    .dframebg {
        height: 6850px;
    }

    .framebg {
        height: 2400px;
    }
}
@media (max-width: 600px) {
    .org-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .charity-stats {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}
@media (max-width: 576px) {
    .dframebg {
        height: 6350px;
    }
}

@media(max-width: 575px) {
    .sitemap-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .sitemap-section {
        padding: 60px 0;
    }
}

@media (max-width: 450px) {
    .dframebg {
        height: 5950px;
    }

    .framebg {
        height: 1900px;
    }
}
