/* ── CSS VARIABLES ── */
:root {
    --hunter: #466740;
    --ygreen: #9FC252;
    --tea: #D0DFBE;
    --muted: #8CA98A;
    --beige: #EAF3DD;
    --dark: #1E2B1C;
    --dark2: #2A3828;
    --mid: #4A5E48;
    --ltxt: #6B7C69;
    --white: #FFFFFF;
    --offwhite: #FAFCF8;
    --border: rgba(70, 103, 64, .15);
}

/* ── BASE ── */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: clip;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--offwhite);
    color: var(--dark);
    overflow-x: clip;
    max-width: 100%;
}

/* ── TYPOGRAPHY HELPERS ── */
.font-playfair {
    font-family: 'Playfair Display', serif;
}

.section-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: var(--hunter);
    letter-spacing: .14em;
    text-transform: uppercase;
    background: var(--beige);
    border: 1px solid var(--tea);
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.15;
    letter-spacing: -.02em;
}

.section-title em {
    font-style: italic;
    color: var(--hunter);
}

.section-sub {
    font-size: 16px;
    color: var(--ltxt);
    line-height: 1.75;
    margin-top: 12px;
    font-weight: 300;
}

.sidebar {
    z-index: 1050 !important;
}

.sidebar-overlay {
    z-index: 1040 !important;
}

.hamburger {
    z-index: 1055 !important;
}

/* ── BUTTONS ── */
.btn-primary-custom {
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--ygreen), var(--hunter));
    border: none;
    border-radius: 50px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 16px rgba(70, 103, 64, .3);
    transition: all .3s;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(70, 103, 64, .45);
    color: #fff;
}

.btn-outline-custom {
    padding: 11px 28px;
    border: 1.5px solid var(--hunter);
    border-radius: 50px;
    color: var(--hunter);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all .25s;
    background: transparent;
}

.btn-outline-custom:hover {
    background: var(--hunter);
    color: #fff;
}

.btn-white-outline {
    padding: 13px 32px;
    border: 1.5px solid rgba(255, 255, 255, .35);
    border-radius: 50px;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    transition: all .3s;
}

.btn-white-outline:hover {
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .6);
    color: #fff;
}

.btn-ygreen {
    padding: 13px 36px;
    background: linear-gradient(135deg, var(--ygreen), #72A020);
    border-radius: 50px;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    box-shadow: 0 6px 22px rgba(159, 194, 82, .4);
    transition: all .3s;
    border: none;
}

.btn-ygreen:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(159, 194, 82, .55);
    color: #fff;
}

/* ── ANNOUNCE BAR ── */
.announce-bar {
    background: var(--hunter);
    color: var(--beige);
    text-align: center;
    padding: 5px 20px 9px 20px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 36px;
    box-sizing: border-box;
}

.announce-bar a {
    color: var(--ygreen);
    font-weight: 700;
    text-decoration: none;
}

/* Offcanvas menu */
.offcanvas {
    width: 280px;
    transition: transform .3s ease-in-out;
}

.offcanvas-header {
    border-bottom: 1px solid #eee;
}

.offcanvas-body .nav-link {
    padding: 12px 0;
    font-size: 16px;
    border-bottom: 1px solid #eee;
}

.offcanvas-body .nav-link:hover {
    color: #406B37;
}

/* ── HEADER ── */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: #fff;
    box-shadow: 0 2px 16px rgba(70, 103, 64, .1);
    border-bottom: 2px solid var(--tea);
}

.header-inner {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    flex-wrap: nowrap;
}

/* ── NAVBAR ── */
.site-navbar {
    background: var(--white) !important;
    border-top: 1px solid var(--tea);
    padding: 0;
}

.site-navbar .navbar-collapse {
    justify-content: flex-start !important;
    flex-grow: 0 !important;
}

.site-navbar .navbar-nav {
    justify-content: flex-start !important;
    gap: 0 !important;
    width: auto !important;
}

.site-navbar .navbar-nav .nav-link {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--dark) !important;
    padding: 13px 14px !important;
    border-bottom: 2.5px solid transparent;
    border-top: none;
    transition: color .2s, border-color .2s;
    white-space: nowrap;
    line-height: 1;
}

.site-navbar .navbar-nav .nav-link:hover,
.site-navbar .navbar-nav .nav-link:focus,
.site-navbar .navbar-nav .nav-link.active {
    color: var(--hunter) !important;
    border-bottom-color: var(--ygreen);
    background: transparent !important;
}

.header-inner>div:first-child {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.header-inner .navbar-toggler {
    border: none;
    background: transparent;
    font-size: 20px;
    padding: 6px 10px;
    align-items: start;
}

@media (min-width: 992px) {

    .navbar-toggler {
        display: none !important;
    }

}

.header-inner .logo {
    display: flex;
    align-items: center;
}

.header-inner .logo img {
    height: 44px;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

/* Dropdown */
.site-navbar .dropdown-menu {
    border: 1.5px solid var(--tea) !important;
    border-radius: 12px !important;
    padding: 8px 0 !important;
    box-shadow: 0 12px 36px rgba(70, 103, 64, .14) !important;
    min-width: 190px;
    margin-top: 0;
    z-index: 9999 !important;
}

@media (min-width: 992px) {
    .site-navbar .dropdown:hover>.dropdown-menu {
        display: block;
        margin-top: 0;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 9999;
    }
}

.site-navbar .dropdown-item {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--dark);
    padding: 10px 18px;
    display: flex;
    align-items: center;
    gap: 9px;
    transition: all .18s;
}

.site-navbar .dropdown-item i {
    color: var(--muted);
    font-size: 12px;
    width: 14px;
}

.site-navbar .dropdown-item:hover,
.site-navbar .dropdown-item:focus {
    background: var(--beige) !important;
    color: var(--hunter) !important;
    padding-left: 22px;
}

.site-navbar .nav-link.dropdown-toggle::after {
    display: inline-block !important;
    margin-left: 6px;
    vertical-align: middle;
    border-top: 4px solid currentColor;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    content: '' !important;
}

.btn-nav-join {
    padding: 8px 20px;
    /* border: 1.5px solid var(--hunter);
    border-radius: 50px; */
    color: var(--hunter);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all .25s;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.btn-nav-join:hover {
    background: var(--hunter);
    color: #fff;
}

.btn-nav-member {
    padding: 9px 22px;
    background: linear-gradient(135deg, var(--ygreen), var(--hunter));
    border-radius: 50px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    box-shadow: 0 4px 14px rgba(159, 194, 82, .4);
    transition: all .25s;
}

.btn-nav-member:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(159, 194, 82, .5);
    color: #fff;
}

/* ── HERO ── */
.hero-section {
    min-height: 82vh;
    background: var(--dark);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-swiper {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(70, 103, 64, .88) 0%,
            rgba(30, 43, 28, .78) 55%,
            rgba(10, 15, 10, .92) 100%);
    z-index: 1;
}

.hero-grid-bg {
    position: absolute;
    inset: 0;
    z-index: 2;
    background-image:
        linear-gradient(rgba(159, 194, 82, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(159, 194, 82, .04) 1px, transparent 1px);
    background-size: 55px 55px;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding-top: 80px;
    padding-bottom: 80px;
    display: flex;
    align-items: flex-start;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(159, 194, 82, .15);
    border: 1px solid rgba(159, 194, 82, .4);
    border-radius: 50px;
    padding: 6px 18px;
    margin-bottom: 22px;
    animation: fadeUp .6s ease both;
}

.hero-badge span {
    font-size: 12px;
    color: var(--tea);
    letter-spacing: .08em;
    font-weight: 600;
    text-transform: uppercase;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -.02em;
    max-width: 680px;
    margin-bottom: 20px;
    animation: fadeUp .6s .1s ease both;
}

.hero-title em {
    font-style: italic;
    color: var(--ygreen);
}

.hero-desc {
    font-size: 17px;
    color: rgba(255, 255, 255, .6);
    line-height: 1.75;
    max-width: 520px;
    margin-bottom: 34px;
    font-weight: 300;
    animation: fadeUp .6s .2s ease both;
}

.hero-btns {
    animation: fadeUp .6s .3s ease both;
}

.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 52px;
    padding-top: 36px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    animation: fadeUp .6s .4s ease both;
}

.hero-content .row {
    width: 100%;
}

.hero-content .col-lg-8 {
    text-align: left;
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    font-weight: 700;
    color: var(--ygreen);
    line-height: 1;
}

.stat-lbl {
    font-size: 12px;
    color: rgba(255, 255, 255, .42);
    margin-top: 5px;
    letter-spacing: .06em;
    text-transform: uppercase;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── SPONSOR BAR ── */
.sponsor-bar {
    background: var(--white);
    padding: 30px 0;
    border-bottom: 1px solid var(--tea);
}

.sponsor-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--muted);
    letter-spacing: .12em;
    text-transform: uppercase;
    white-space: nowrap;
}

.sponsor-divider {
    width: 1px;
    height: 44px;
    background: var(--tea);
}

.sponsor-img-wrap {
    border-radius: 12px;
    border: 2px dashed var(--tea);
    height: 150px;
    overflow: hidden;
    flex: 1;
    min-width: 200px;
    background: var(--tea);
}

.sponsor-img-wrap a {
    display: block;
    width: 100%;
    height: 100%;
}

.sponsor-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    display: block;
}

/* ── ABOUT ── */
.about-section {
    background: var(--offwhite);
}

.about-main-img {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 22px;
    overflow: hidden;
    background: var(--tea);
}

.about-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transform: scale(1.35);
    transform-origin: center center;
    display: block;
}

.about-mini-img {
    height: 130px;
    border-radius: 14px;
    overflow: hidden;
    background: var(--tea);
}

.about-mini-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-float {
    position: absolute;
    background: #fff;
    border-radius: 14px;
    padding: 14px 18px;
    box-shadow: 0 10px 34px rgba(70, 103, 64, .14);
    border: 1px solid var(--tea);
    z-index: 2;
}

.float-top {
    top: -18px;
    right: -20px;
}

.float-bottom {
    bottom: -18px;
    left: -20px;
}

.float-num {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--hunter);
}

.float-lbl {
    font-size: 11px;
    color: var(--muted);
    margin-top: 3px;
}

.feature-card {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: var(--beige);
    border-radius: 14px;
    padding: 16px 18px;
    border: 1px solid var(--tea);
    transition: all .25s;
    margin-bottom: 16px;
}

.feature-card:hover {
    background: var(--white);
    box-shadow: 0 4px 16px rgba(70, 103, 64, .1);
}

.feature-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    background: var(--hunter);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ygreen);
    font-size: 18px;
}

.feature-text h4 {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}

.feature-text p {
    font-size: 13.5px;
    color: var(--ltxt);
    line-height: 1.6;
    margin: 0;
}

/* ── MISSION ── */
.mission-section {
    background: var(--offwhite);
    border-bottom: 1px solid var(--tea);
}

.mission-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 900;
    color: var(--dark);
    line-height: 1.1;
    letter-spacing: -.02em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.mission-title em {
    font-style: normal;
    color: var(--hunter);
    display: block;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--beige);
    border: 1px solid var(--tea);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 600;
    color: var(--hunter);
    margin: 4px;
}

.mission-img {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(70, 103, 64, .18);
}

.mission-img img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

/* ── OFFER CARDS ── */
.offer-section {
    background: var(--white);
}

.offer-card {
    background: var(--offwhite);
    border: 1.5px solid var(--tea);
    border-radius: 18px;
    padding: 28px 24px;
    text-align: center;
    transition: all .3s;
    height: 100%;
}

.offer-card:hover {
    background: var(--white);
    border-color: var(--muted);
    box-shadow: 0 8px 28px rgba(70, 103, 64, .12);
    transform: translateY(-4px);
}

.offer-icon {
    width: 56px;
    height: 56px;
    background: var(--beige);
    border: 1px solid var(--tea);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--hunter);
    font-size: 22px;
    transition: all .3s;
}

.offer-card:hover .offer-icon {
    background: var(--hunter);
    color: var(--ygreen);
    border-color: var(--hunter);
}

.offer-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.offer-card p {
    font-size: 13.5px;
    color: var(--ltxt);
    line-height: 1.65;
    margin: 0;
}

/* ── NETWORK / CHAPTERS ── */
.network-section {
    background: var(--offwhite);
}

.chapter-nav-tabs {
    list-style: none;
    padding: 0;
    margin: 0 0 0 0;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 20px;
}

.chapter-nav-tabs::-webkit-scrollbar {
    display: none;
}

.chapter-nav-tabs .nav-item {
    flex-shrink: 0;
}

.chapter-tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 20px;
    border-radius: 50px;
    border: 1.5px solid var(--tea);
    background: var(--white);
    font-size: 13px;
    font-weight: 600;
    color: var(--mid);
    cursor: pointer;
    transition: all .25s;
    white-space: nowrap;
}

.chapter-tab-btn.active,
.chapter-tab-btn:hover {
    background: var(--hunter);
    border-color: var(--hunter);
    color: #fff;
}

.tab-content>.tab-pane {
    display: none;
}

.tab-content>.tab-pane.active {
    display: flex;
}

.chapter-panel {
    border-radius: 20px;
    overflow: hidden;
    border: 1.5px solid var(--tea);
    box-shadow: 0 12px 40px rgba(70, 103, 64, .1);
}

.chapter-info {
    background: var(--white);
    padding: 48px 44px;
    flex: 1;
}

.chapter-info-icon {
    width: 52px;
    height: 52px;
    background: var(--beige);
    border: 1px solid var(--tea);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hunter);
    font-size: 22px;
    margin-bottom: 20px;
}

.chapter-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 14px;
}

.chapter-info p {
    font-size: 14px;
    color: var(--ltxt);
    line-height: 1.8;
    margin-bottom: 10px;
}

.chapter-info p strong {
    color: var(--dark);
}

.chapter-img-panel {
    flex: 0 0 45%;
    min-height: 420px;
    position: relative;
    background: var(--tea);
    overflow: hidden;
}

.chapter-img-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    inset: 0;
}

/* ── SKILL DEVELOPMENT ── */
.lsd-section {
    background: var(--white);
}

.skill-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--offwhite);
    border: 1.5px solid var(--tea);
    border-radius: 16px;
    padding: 20px;
    transition: all .25s;
    height: 100%;
}

.skill-card:hover {
    background: var(--beige);
    border-color: var(--muted);
    transform: translateY(-2px);
}

.skill-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background: var(--hunter);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ygreen);
    font-size: 16px;
}

.skill-text h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.skill-text p {
    font-size: 13px;
    color: var(--ltxt);
    line-height: 1.6;
    margin: 0;
}

/* ── MEGA EVENTS ── */
.events-section {
    background: var(--offwhite);
}

.event-card-new {
    border-radius: 20px;
    overflow: hidden;
    background: var(--white);
    border: 1.5px solid var(--tea);
    box-shadow: 0 6px 24px rgba(70, 103, 64, .08);
    transition: all .3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.event-card-new:hover {
    box-shadow: 0 14px 40px rgba(70, 103, 64, .16);
    transform: translateY(-4px);
}

.event-img-wrap {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: var(--tea);
    flex-shrink: 0;
    display: block;
}

.event-img-wrap img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform .4s;
}

.event-card-new:hover .event-img-wrap img {
    transform: scale(1.04);
}

.event-badge-pill {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--ygreen);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 50px;
    z-index: 2;
}

.event-body {
    padding: 26px 28px 28px;
    flex: 1;
    background: var(--white);
}

.event-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: #1E2B1C !important;
    margin-bottom: 12px;
}

.event-body h3 em {
    font-style: italic;
    color: #466740 !important;
}

.event-body p {
    font-size: 13.5px;
    color: #1E2B1C !important;
    line-height: 1.75;
    margin-bottom: 10px;
}

/* ── TEAM ── */
.team-section {
    background: var(--dark);
    overflow: hidden;
    position: relative;
}

.team-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(159, 194, 82, .07) 0%, transparent 65%);
    pointer-events: none;
}

#teamSlider {
    display: flex;
    gap: 20px;
    transition: transform .5s cubic-bezier(.4, 0, .2, 1);
    will-change: transform;
}

.team-card {
    flex: 0 0 calc((100% - 40px) / 3);
    min-width: 0;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    background: var(--dark2);
    border: 1px solid rgba(255, 255, 255, .08);
    transition: border-color .3s, box-shadow .3s;
}

.team-card:hover {
    border-color: rgba(159, 194, 82, .35);
    box-shadow: 0 16px 44px rgba(0, 0, 0, .4);
}

.team-card-img {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--mid);
    position: relative;
}

.team-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    filter: grayscale(20%);
    transition: transform .4s, filter .4s;
}

.team-card:hover .team-card-img img {
    transform: scale(1.04);
    filter: grayscale(0%);
}

.team-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(30, 43, 28, .92) 0%, rgba(30, 43, 28, .3) 50%, transparent 100%);
}

.team-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 20px 22px;
}

.team-card-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.team-card-info span {
    font-size: 12px;
    color: var(--ygreen);
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.slider-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .06);
    color: #fff;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .25s;
}

.slider-btn:hover {
    background: var(--ygreen);
    border-color: var(--ygreen);
}

.slider-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .2);
    cursor: pointer;
    transition: all .25s;
    display: inline-block;
    border: none;
}

.slider-dot.active {
    background: var(--ygreen);
    width: 22px;
    border-radius: 4px;
}

/* ── WHY JOIN ── */
.why-section {
    background: var(--hunter);
    position: relative;
    overflow: hidden;
}

.why-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 55% 50% at 90% 50%, rgba(159, 194, 82, .12) 0%, transparent 65%);
    pointer-events: none;
}

.why-section .section-tag {
    background: rgba(159, 194, 82, .15);
    color: var(--tea);
    border-color: rgba(159, 194, 82, .3);
}

.why-section .section-title {
    color: #fff;
}

.why-section .section-title em {
    color: var(--ygreen);
}

.why-section .section-sub {
    color: rgba(255, 255, 255, .52);
}

.why-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 18px;
    padding: 28px 24px;
    transition: all .3s;
    height: 100%;
}

.why-card:hover {
    background: rgba(159, 194, 82, .1);
    border-color: rgba(159, 194, 82, .35);
    transform: translateY(-4px);
}

.why-icon {
    width: 52px;
    height: 52px;
    background: rgba(159, 194, 82, .15);
    border: 1px solid rgba(159, 194, 82, .3);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ygreen);
    font-size: 22px;
    margin-bottom: 18px;
    transition: all .3s;
}

.why-card:hover .why-icon {
    background: rgba(159, 194, 82, .25);
}

.why-title {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.why-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, .52);
    line-height: 1.7;
}

/* ── VIDEO TESTIMONIALS ── */
.video-swiper-wrap {
    position: relative;
    overflow: hidden;
}

.video-swiper-wrap .swiper {
    width: 100%;
    padding: 10px 0 20px;
    overflow: hidden;
}

.video-swiper-wrap .swiper-slide {
    width: calc(33.333% - 14px);
    height: auto;
}

@media (max-width: 991px) {
    .video-swiper-wrap .swiper-slide {
        width: calc(50% - 10px);
    }
}

@media (max-width: 575px) {
    .video-swiper-wrap .swiper-slide {
        width: calc(100% - 0px);
    }
}

.video-swiper-wrap .slider-btn.video-slider-btn {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.video-swiper-wrap .slider-btn.video-slider-btn:hover {
    background: var(--ygreen);
    border-color: var(--ygreen);
    color: #fff;
}

.video-swiper-wrap .slider-dot {
    background: rgba(255, 255, 255, 0.2);
}

.video-swiper-wrap .slider-dot.active {
    background: var(--ygreen);
}

.vtesti-section {
    background: var(--hunter);
}

.vtesti-section .section-tag {
    background: rgba(159, 194, 82, .15);
    color: var(--tea);
    border-color: rgba(159, 194, 82, .3);
}

.vtesti-section .section-title {
    color: #fff;
}

.vtesti-section .section-title em {
    color: var(--ygreen);
}

.vid-card {
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 16/10;
    cursor: pointer;
    background: var(--dark2);
    transition: all .3s;
    display: block;
}

.vid-card:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .4);
}

.vid-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.vid-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .6), rgba(0, 0, 0, .15));
}

.vid-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vid-play-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hunter);
    font-size: 20px;
    transition: all .3s;
}

.vid-card:hover .vid-play-btn {
    background: var(--ygreen);
    color: #fff;
    transform: scale(1.1);
}

.vid-iframe-wrap {
    display: none;
    position: absolute;
    inset: 0;
}

.vid-iframe-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ── FAQ ── */
.faq-section {
    background: var(--beige);
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-accordion .accordion-item {
    background: var(--white);
    border: 1.5px solid var(--tea);
    border-radius: 14px !important;
    overflow: hidden;
    transition: border-color .2s;
}

.faq-accordion .accordion-item:not(:first-of-type) {
    border-top: 1.5px solid var(--tea);
}

.faq-accordion .accordion-item:hover {
    border-color: var(--muted);
}

.faq-accordion .accordion-header {
    margin: 0;
}

.faq-accordion .accordion-button {
    padding: 18px 22px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    gap: 14px;
    user-select: none;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    box-shadow: none !important;
    outline: none !important;
}

.faq-accordion .accordion-button::after {
    display: none;
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
    outline: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: transparent;
    color: var(--dark);
    box-shadow: none;
}

.faq-accordion .accordion-button:hover {
    color: var(--hunter);
}

.faq-num {
    font-size: 12px;
    color: var(--muted);
    font-weight: 700;
    min-width: 22px;
    margin-right: 16px;
}

.faq-question-text {
    display: flex;
    align-items: center;
    flex: 1;
}

.faq-accordion .accordion-button .faq-toggle {
    display: none;
}

.faq-accordion .accordion-button::after {
    content: '\002b';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--beige);
    color: var(--hunter);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    transition: all .25s;
    margin-left: auto;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    content: '\f00d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--hunter);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    transform: rotate(0deg);
    transition: all .25s;
    margin-left: auto;
}

.faq-accordion .accordion-button.collapsed:hover::after {
    background: var(--hunter);
    color: #fff;
}

.faq-accordion .accordion-collapse {
    transition: all .35s ease;
}

.faq-accordion .accordion-body {
    padding: 0 22px 20px 22px;
}

.faq-answer {
    font-size: 14px;
    color: var(--mid);
    line-height: 1.75;
    padding-left: 54px;
}

.faq-sponsor-wrap {
    border-radius: 18px;
    overflow: hidden;
    border: 2px dashed var(--tea);
    background: var(--white);
}

.faq-sponsor-label {
    background: var(--beige);
    padding: 9px 14px;
    font-size: 10px;
    font-weight: 700;
    color: var(--muted);
    letter-spacing: .1em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
}

.faq-sponsor-label i {
    color: var(--ygreen);
}

.faq-sponsor-img a {
    display: block;
}

.faq-sponsor-img img {
    width: 100%;
    height: auto;
    display: block;
}

/* ── FOOTER ── */
.site-footer {
    background: var(--hunter);
    padding: 36px 0 18px;
}

.footer-content {
    display: flex !important;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.footer-left {
    flex: 1;
    min-width: 260px;
    max-width: 500px;
}

.footer-left .footer-logo {
    height: 52px;
    width: auto;
    margin-bottom: 18px;
    background: #fff;
    padding: 8px 14px;
    border-radius: 10px;
    display: inline-block;
}

.footer-left .footer-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, .72);
    line-height: 1.75;
    margin-bottom: 18px;
}

.footer-left .footer-addr {
    font-size: 13.5px;
    color: rgba(255, 255, 255, .62);
    line-height: 1.7;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-left .footer-addr i {
    color: var(--ygreen);
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-left .footer-addr a {
    color: rgba(255, 255, 255, .72);
    text-decoration: none;
    transition: color .2s;
}

.footer-left .footer-addr a:hover {
    color: var(--ygreen);
}

.footer-right {
    flex: 1;
    min-width: 260px;
    max-width: 420px;
}

.footer-right h5 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.footer-right .footer-sub {
    font-size: 14px;
    color: rgba(255, 255, 255, .62);
    margin-bottom: 20px;
    line-height: 1.65;
}

.footer-right .btn-ygreen.btn-sm {
    padding: 11px 26px;
    font-size: 14px;
    margin-bottom: 22px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 50px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 5px 14px;
    align-items: center;
    row-gap: 8px;
}

.footer-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, .65);
    text-decoration: none;
    transition: color .2s;
}

.footer-links a:hover {
    color: var(--ygreen);
}

.footer-dev {
    color: #ccc;
    font-size: 13px;
    margin: 0;
}

.footer-dev a {
    color: #e8572a;
    text-decoration: none;
    font-weight: 700;
}

.footer-dev a:hover {
    text-decoration: underline;
}

.footer-links .btn-attendance {
    display: inline-block;
    padding: 5px 14px;
    background: var(--ygreen);
    border-radius: 4px;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background .2s;
    white-space: nowrap;
    width: auto;
    flex-basis: 100%;
    max-width: fit-content;
}

.footer-links .btn-attendance:hover {
    background: #7aa33d;
    color: #fff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, .42);
    margin: 0;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .7);
    font-size: 15px;
    text-decoration: none;
    transition: all .2s;
}

.social-links a:hover {
    background: var(--ygreen);
    border-color: var(--ygreen);
    color: #fff;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 36px;
    }

    .footer-left,
    .footer-right {
        max-width: 100%;
        min-width: unset;
    }
}

/* ── WHATSAPP FLOAT ── */
.wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
    text-decoration: none;
    box-shadow: 0 4px 22px rgba(37, 211, 102, .45);
    z-index: 999;
    transition: all .3s;
}

.wa-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, .6);
    color: #fff;
}

/* ── REVEAL ANIMATION ── */
.s4b-reveal {
    transform: translateY(26px);
    transition: opacity .65s ease, transform .65s ease;
}

.s4b-reveal.s4b-visible {
    opacity: 1;
    transform: translateY(0);
}

.s4b-reveal-delay-1 {
    transition-delay: .1s;
}

.s4b-reveal-delay-2 {
    transition-delay: .2s;
}

.s4b-reveal-delay-3 {
    transition-delay: .3s;
}

.s4b-reveal-delay-4 {
    transition-delay: .4s;
}

.s4b-reveal-delay-5 {
    transition-delay: .5s;
}

/* ── SECTION SPACING ── */
.section-pad {
    padding: 96px 0;
}

/* ── UTILITY ── */
.text-hunter {
    color: var(--hunter) !important;
}

.text-ygreen {
    color: var(--ygreen) !important;
}

.text-muted-custom {
    color: var(--ltxt) !important;
}

.bg-offwhite {
    background: var(--offwhite) !important;
}

.bg-beige {
    background: var(--beige) !important;
}

.bg-hunter {
    background: var(--hunter) !important;
}

.bg-dark-custom {
    background: var(--dark) !important;
}

.border-tea {
    border-color: var(--tea) !important;
}

/*EVENTS PAGE */

/* ── EVENTS HERO ── */
.events-hero {
    position: relative;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 50%, #1a3318 100%);
    padding: 80px 0 72px;
    overflow: hidden;
}

.events-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 80% 50%, rgba(159, 194, 82, .12) 0%, transparent 65%),
        radial-gradient(ellipse 40% 40% at 10% 80%, rgba(70, 103, 64, .25) 0%, transparent 60%);
    pointer-events: none;
}

/* decorative circle — hidden on mobile to prevent horizontal overflow */
.events-hero::after {
    content: '';
    position: absolute;
    top: -60px;
    right: -80px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(159, 194, 82, .05);
    border: 1px solid rgba(159, 194, 82, .08);
}

.events-hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
}

.events-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(159, 194, 82, .12);
    border: 1px solid rgba(159, 194, 82, .25);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 11.5px;
    font-weight: 600;
    color: var(--ygreen);
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.events-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(34px, 5vw, 60px);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -.025em;
    margin-bottom: 18px;
}

.events-title em {
    font-style: italic;
    color: var(--ygreen);
}

.events-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, .65);
    line-height: 1.75;
    margin-bottom: 36px;
    font-weight: 300;
    max-width: 600px;
}

/* ── HERO STATS ── */
.events-stats {
    display: flex;
    gap: 32px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.evt-stat-item {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.evt-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--ygreen);
    line-height: 1;
}

.evt-stat-lbl {
    font-size: 12px;
    color: rgba(255, 255, 255, .5);
    font-weight: 400;
}

/* ── WHY ATTEND SECTION ── */
.why-attend-section {
    background: var(--beige);
    padding: 32px 0;
    border-bottom: 1px solid var(--tea);
}

.why-attend-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.why-attend-heading {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    white-space: nowrap;
    flex-shrink: 0;
}

.why-attend-divider {
    width: 1px;
    height: 40px;
    background: var(--tea);
    flex-shrink: 0;
}

.why-attend-items {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    flex: 1;
}

.why-attend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: #fff;
    border-radius: 50px;
    border: 1px solid var(--tea);
    font-size: 13px;
    font-weight: 500;
    color: var(--dark2);
    transition: all .2s;
}

.why-attend-item:hover {
    border-color: var(--hunter);
    color: var(--hunter);
}

.why-attend-item i {
    color: var(--hunter);
    font-size: 12px;
}

.why-attend-cta {
    flex-shrink: 0;
    margin-left: auto;
}

/* ── EVENTS MAIN ── */
.events-main {
    padding: 60px 0 80px;
    background: var(--offwhite);
    overflow-x: hidden;
}

/* ── LAYOUT: flex row on desktop ── */
.events-layout {
    display: flex;
    flex-direction: row;
    gap: 28px;
    /* align-items: flex-start; */
    width: 100%;
}

/* ── FILTER SIDEBAR ── */
.filter-sidebar {
    flex: 0 0 260px;
    width: 260px;
    min-width: 260px;
    position: sticky;
    top: 80px;
}

.filter-panel {
    background: #fff;
    border: 1.5px solid var(--tea);
    border-radius: 16px;
    overflow: hidden;
}

.filter-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    background: var(--beige);
    border-bottom: 1px solid var(--tea);
}

.filter-panel-header h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-panel-header h4 i {
    color: var(--hunter);
}

.filter-reset-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 12px;
    color: var(--muted);
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    transition: color .2s;
    padding: 0;
}

.filter-reset-btn:hover {
    color: var(--hunter);
}

.filter-group {
    padding: 18px 20px;
    border-bottom: 1px solid var(--tea);
}

.filter-group:last-child {
    border-bottom: none;
}

/* ── ACCORDION FILTER GROUPS ── */
.filter-group-accordion {
    padding: 0;
    border-bottom: 1px solid var(--tea);
}

.filter-accordion-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    transition: color .2s;
    text-align: left;
}

.filter-accordion-btn:hover {
    color: var(--hunter);
}

.filter-acc-icon {
    font-size: 11px;
    color: var(--muted);
    transition: transform .25s;
    flex-shrink: 0;
}

.filter-accordion-btn[aria-expanded="false"] .filter-acc-icon {
    transform: rotate(180deg);
}

.filter-accordion-body {
    padding: 0 20px 18px;
}

.filter-accordion-body.collapsed {
    display: none;
}

/* ── FILTER SELECT ── */
.filter-select-searchable {
    width: 100%;
    padding: 9px 12px;
    border: 1.5px solid var(--tea);
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    color: var(--dark);
    background: #fff;
    cursor: pointer;
    transition: border-color .2s;
    appearance: auto;
}

.filter-select-searchable:focus {
    outline: none;
    border-color: var(--hunter);
    box-shadow: 0 0 0 3px rgba(70, 103, 64, .08);
}

/* ── MOBILE FILTER TOGGLE — hidden on desktop ── */
.filter-mobile-toggle {
    display: none;
    width: 100%;
    margin-bottom: 16px;
    padding: 12px 20px;
    background: #fff;
    border: 1.5px solid var(--tea);
    border-radius: 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    align-items: center;
    justify-content: space-between;
    transition: all .2s;
}

.filter-mobile-toggle:hover {
    border-color: var(--hunter);
    color: var(--hunter);
}

/* ── EVENTS CONTENT AREA ── */
.events-content {
    flex: 1;
    min-width: 0;
}

/* ── EVENTS TOOLBAR ── */
.events-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    gap: 12px;
    flex-wrap: wrap;
}

.evt-section-heading {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
    letter-spacing: -.01em;
}

/* ── CTA BANNER ── */
.evt-cta-banner {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 60%, #1a3318 100%);
    border-radius: 20px;
    padding: 48px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
}

.evt-cta-banner::before {
    content: '';
    position: absolute;
    right: -40px;
    top: -40px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(159, 194, 82, .08);
    border: 1px solid rgba(159, 194, 82, .1);
}

.evt-cta-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.25;
}

.evt-cta-text h3 em {
    font-style: italic;
    color: var(--ygreen);
}

.evt-cta-text p {
    font-size: 14px;
    color: rgba(255, 255, 255, .6);
    margin: 0;
    line-height: 1.65;
}

.evt-cta-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* ── EVENTS GRID ── */
.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    min-height: 200px;
    transition: opacity .25s;
}

/* ── EVENT CARD ── */
.event-card-new {
    background: #fff;
    border: 1.5px solid var(--tea);
    border-radius: 16px;
    overflow: hidden;
    transition: all .28s cubic-bezier(.4, 0, .2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 12px rgba(70, 103, 64, .06);
}

.event-card-new:hover {
    border-color: rgba(70, 103, 64, .3);
    box-shadow: 0 10px 36px rgba(70, 103, 64, .14);
    transform: translateY(-4px);
}

.event-card-new.card-special {
    border-color: rgba(159, 194, 82, .35);
}

.event-card-new.card-special:hover {
    border-color: var(--ygreen);
}

/* ── POSTER WRAP ── */
.evt-poster-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--dark2);
}

.evt-poster-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.event-card-new:hover .evt-poster-img {
    transform: scale(1.04);
}

.evt-poster-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, .45) 100%);
    pointer-events: none;
}

/* ── STATUS BADGES ── */
.evt-status-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 10.5px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
    letter-spacing: .04em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
    z-index: 2;
    width: fit-content;
    white-space: nowrap;
}

.badge-closed {
    background: rgba(239, 68, 68, .92);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .15);
}

.badge-special {
    background: rgba(159, 194, 82, .92);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .15);
}

.badge-open {
    background: rgba(34, 197, 94, .92);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .15);
}

/* ── CARD INFO ── */
.evt-card-info {
    padding: 18px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.evt-date-line {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 2px;
}

.evt-date-text {
    font-size: 12px;
    font-weight: 600;
    color: var(--hunter);
    letter-spacing: .02em;
}

.evt-date-slash {
    font-size: 12px;
    color: var(--muted);
    font-weight: 300;
}

.evt-card-name {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.25;
    margin: 0 0 4px;
    letter-spacing: -.01em;
}

.evt-card-chapter {
    font-size: 12.5px;
    color: var(--ltxt);
    font-weight: 400;
    margin-bottom: 6px;
}

.evt-card-location {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    font-size: 12.5px;
    color: var(--ltxt);
    line-height: 1.4;
    margin-bottom: 14px;
}

.evt-card-location i {
    color: var(--hunter);
    font-size: 12px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* ── CARD ACTION BUTTONS ── */
.evt-card-actions {
    display: flex;
    gap: 8px;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--tea);
}

.btn-register-new {
    flex: 1;
    padding: 9px 14px;
    background: linear-gradient(135deg, var(--ygreen), var(--hunter));
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 12.5px;
    font-weight: 700;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: all .2s;
    text-align: center;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.btn-register-new:hover {
    box-shadow: 0 4px 16px rgba(70, 103, 64, .35);
    color: #fff;
    transform: translateY(-1px);
}

.btn-details-new {
    flex: 1;
    padding: 8px 14px;
    border: 1.5px solid var(--hunter);
    border-radius: 8px;
    color: var(--hunter);
    font-size: 12.5px;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: all .2s;
    text-align: center;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: transparent;
}

.btn-details-new:hover {
    background: var(--hunter);
    color: #fff;
}

/* ── CARD LINK ── */
.evt-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.evt-card-link:hover {
    color: inherit;
}

/* ── LIST VIEW ── */
.events-grid.list-view {
    grid-template-columns: 1fr;
}

.events-grid.list-view .event-card-new {
    flex-direction: row;
}

.events-grid.list-view .evt-poster-wrap {
    width: 200px;
    min-width: 200px;
    aspect-ratio: unset;
    min-height: 180px;
}

.events-grid.list-view .evt-card-info {
    padding: 20px 22px;
}

/* ── LOADING ── */
.evt-loading {
    text-align: center;
    padding: 40px 20px;
    font-size: 15px;
    color: var(--ltxt);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.evt-loading i {
    color: var(--hunter);
    font-size: 18px;
}

/* ── PAGINATION ── */
.evt-pagination-wrap {
    margin-top: 36px;
    display: flex;
    justify-content: center;
}

.evt-pagination-wrap .pagination {
    gap: 5px;
    flex-wrap: wrap;
    justify-content: center;
}

.evt-pagination-wrap .pagination .page-item .page-link {
    min-width: 38px;
    height: 38px;
    border: 1.5px solid var(--tea);
    border-radius: 10px !important;
    color: var(--dark);
    font-size: 13.5px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
    font-family: 'DM Sans', sans-serif;
    background: #fff;
    padding: 0 10px;
}

.evt-pagination-wrap .pagination .page-item .page-link:hover {
    background: var(--beige);
    border-color: var(--hunter);
    color: var(--hunter);
}

.evt-pagination-wrap .pagination .page-item.active .page-link {
    background: linear-gradient(135deg, var(--ygreen), var(--hunter));
    border-color: transparent;
    color: #fff;
    box-shadow: 0 3px 12px rgba(70, 103, 64, .3);
}

.evt-pagination-wrap .pagination .page-item.disabled .page-link {
    opacity: .4;
    cursor: not-allowed;
}

/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */

/* ── LARGE DESKTOP (1200px) ── */
@media (max-width: 1199.98px) {
    .filter-sidebar {
        flex: 0 0 220px;
        width: 220px;
        min-width: 220px;
    }

    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ── TABLET (992–991px boundary) ── */
@media (max-width: 991.98px) {

    .events-layout {
        flex-direction: column;
        gap: 16px;
    }

    .filter-sidebar {
        flex: none;
        width: 100%;
        min-width: unset;
        position: static;
    }

    /* Hide panel, show via toggle */
    .filter-panel {
        display: none;
    }

    .filter-panel.mobile-open {
        display: block;
    }

    /* Show toggle button */
    .filter-mobile-toggle {
        display: flex;
    }

    .events-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    /* CTA banner stacks */
    .evt-cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 36px 28px;
    }

    .evt-cta-actions {
        justify-content: center;
        width: 100%;
    }

    /* Why attend bar */
    .why-attend-divider {
        display: none;
    }

    .why-attend-cta {
        margin-left: 0;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .why-attend-items {
        justify-content: center;
    }
}

/* ── MOBILE (< 768px) ── */
@media (max-width: 767.98px) {

    /* prevent horizontal scroll */
    html,
    body {
        overflow-x: hidden;
    }

    .events-hero,
    .why-attend-section,
    .events-main {
        overflow-x: hidden;
        max-width: 100%;
    }

    /* kill decorative circle bleeding right */
    .events-hero::after {
        display: none;
    }

    .events-hero {
        padding: 56px 0 52px;
    }

    .events-title {
        font-size: clamp(28px, 8vw, 42px);
    }

    .events-desc {
        font-size: 14px;
    }

    .events-stats {
        gap: 20px;
    }

    .evt-stat-num {
        font-size: 22px;
    }

    .events-layout {
        flex-direction: column;
        gap: 14px;
        overflow-x: hidden;
    }

    .filter-sidebar {
        flex: none;
        width: 100%;
        min-width: unset;
        position: static;
    }

    .filter-panel {
        display: none;
    }

    .filter-panel.mobile-open {
        display: block;
    }

    .filter-mobile-toggle {
        display: flex;
    }

    .events-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        max-width: 100%;
    }

    .event-card-new {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    /* list view fix on mobile */
    .events-grid.list-view .event-card-new {
        flex-direction: column;
    }

    .events-grid.list-view .evt-poster-wrap {
        width: 100%;
        min-width: unset;
        aspect-ratio: 4 / 3;
        min-height: unset;
    }

    .why-attend-section {
        padding: 22px 0;
    }

    .why-attend-inner {
        flex-direction: column;
        gap: 14px;
    }

    .why-attend-heading {
        width: 100%;
        text-align: center;
        font-size: 16px;
    }

    .why-attend-items {
        justify-content: center;
        gap: 8px;
    }

    .why-attend-item {
        font-size: 12px;
        padding: 8px 14px;
    }

    .why-attend-cta {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-left: 0;
    }

    .evt-cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 24px 18px;
        border-radius: 14px;
        gap: 18px;
        margin-bottom: 20px;
    }

    .evt-cta-text h3 {
        font-size: 18px;
    }

    .evt-cta-text p {
        font-size: 13px;
    }

    .evt-cta-actions {
        flex-direction: column;
        width: 100%;
        gap: 8px;
    }

    .evt-cta-actions .btn-ygreen,
    .evt-cta-actions .btn-white-outline {
        width: 100%;
        justify-content: center;
    }
}

/* ── EXTRA SMALL (< 480px) ── */
@media (max-width: 479.98px) {

    .events-main {
        padding: 40px 0 60px;
    }

    .evt-card-actions {
        flex-direction: column;
    }

    .btn-register-new,
    .btn-details-new {
        width: 100%;
    }
}


/* event detail */


/* ── HERO — identical to .directory-hero ── */
.event-detail-hero {
    position: relative;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 50%, #1a3318 100%);
    padding: 80px 0 72px;
    overflow: hidden;
}

.event-detail-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 80% 50%, rgba(159, 194, 82, .12) 0%, transparent 65%),
        radial-gradient(ellipse 40% 40% at 10% 80%, rgba(70, 103, 64, .25) 0%, transparent 60%);
    pointer-events: none;
}

.event-detail-hero::after {
    content: '';
    position: absolute;
    top: -60px;
    right: -80px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(159, 194, 82, .05);
    border: 1px solid rgba(159, 194, 82, .08);
}

.event-detail-hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
}

/* Badge — identical to .directory-badge */
.evt-detail-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(159, 194, 82, .12);
    border: 1px solid rgba(159, 194, 82, .25);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 11.5px;
    font-weight: 600;
    color: var(--ygreen);
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* Title — identical to .directory-title */
.evt-detail-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(34px, 5vw, 60px);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -.025em;
    margin-bottom: 18px;
}

.evt-detail-title em {
    font-style: italic;
    color: var(--ygreen);
}

/* Desc — identical to .directory-desc */
.evt-detail-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, .65);
    line-height: 1.75;
    margin-bottom: 28px;
    font-weight: 300;
    max-width: 600px;
}

/* Breadcrumb */
.evt-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 16px;
    font-size: 12.5px;
    flex-wrap: wrap;
}

.evt-breadcrumb a {
    color: rgba(255, 255, 255, .5);
    text-decoration: none;
    transition: color .2s;
}

.evt-breadcrumb a:hover {
    color: var(--ygreen);
}

.evt-breadcrumb .sep {
    color: rgba(255, 255, 255, .25);
    font-size: 10px;
}

.evt-breadcrumb .current {
    color: rgba(255, 255, 255, .8);
    font-weight: 500;
}

/* Stats — identical to .directory-stats */
.evt-detail-stats {
    display: flex;
    gap: 32px;
    margin-top: 4px;
    flex-wrap: wrap;
}

.evt-stat-item {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.evt-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--ygreen);
    line-height: 1;
}

.evt-stat-lbl {
    font-size: 12px;
    color: rgba(255, 255, 255, .5);
    font-weight: 400;
}

/* ── MAIN SECTION — identical to .directory-main ── */
.event-detail-main {
    padding: 60px 0 80px;
    background: var(--offwhite);
}

/* CTA Banner — identical to .dir-cta-banner */
.evt-cta-banner {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 60%, #1a3318 100%);
    border-radius: 20px;
    padding: 48px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
}

.evt-cta-banner::before {
    content: '';
    position: absolute;
    right: -40px;
    top: -40px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(159, 194, 82, .08);
    border: 1px solid rgba(159, 194, 82, .1);
}

.evt-cta-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.25;
}

.evt-cta-text h3 em {
    font-style: italic;
    color: var(--ygreen);
}

.evt-cta-text p {
    font-size: 14px;
    color: rgba(255, 255, 255, .6);
    margin: 0;
    line-height: 1.65;
}

.evt-cta-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* ── LAYOUT — identical to .directory-layout ── */
.event-detail-layout {
    display: flex;
    gap: 28px;
    align-items: flex-start;
}

/* ── LEFT SIDEBAR — identical to .filter-sidebar ── */
.evt-info-sidebar {
    flex: 0 0 260px;
    width: 260px;
    position: sticky;
    top: 140px;
}

/* Info panel — identical to .filter-panel */
.evt-info-panel {
    background: #fff;
    border: 1.5px solid var(--tea);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
}

/* Panel header — identical to .filter-panel-header */
.evt-info-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    background: var(--beige);
    border-bottom: 1px solid var(--tea);
}

.evt-info-panel-header h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.evt-info-panel-header h4 i {
    color: var(--hunter);
}

/* Status pill */
.evt-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 10.5px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
    letter-spacing: .04em;
}

.pill-closed {
    background: rgba(239, 68, 68, .1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, .2);
}

.pill-special {
    background: rgba(159, 194, 82, .15);
    color: var(--hunter);
    border: 1px solid rgba(159, 194, 82, .3);
}

.pill-open {
    background: rgba(34, 197, 94, .1);
    color: #16a34a;
    border: 1px solid rgba(34, 197, 94, .2);
}

/* Info rows — identical to .filter-group rows */
.evt-info-row {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 15px 20px;
    border-bottom: 1px solid var(--tea);
    transition: background .15s;
}

.evt-info-row:last-of-type {
    border-bottom: none;
}

.evt-info-row:hover {
    background: var(--offwhite);
}

.evt-info-icon {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: var(--beige);
    border: 1px solid var(--tea);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hunter);
    font-size: 13px;
}

.evt-info-text {
    flex: 1;
}

.evt-info-label {
    font-size: 10.5px;
    font-weight: 700;
    color: var(--ltxt);
    text-transform: uppercase;
    letter-spacing: .09em;
    margin-bottom: 3px;
}

.evt-info-value {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.4;
}

.evt-info-value a {
    color: var(--hunter);
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
}

.evt-info-value a:hover {
    text-decoration: underline;
}

.evt-fee-big {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--hunter);
    line-height: 1;
}

.evt-fee-note {
    font-size: 11px;
    color: var(--ltxt);
    font-weight: 400;
}

/* Register button — identical to .filter-apply-btn */
.evt-register-btn {
    display: flex;
    width: calc(100% - 40px);
    margin: 16px 20px;
    padding: 12px;
    background: linear-gradient(135deg, var(--ygreen), var(--hunter));
    border: none;
    border-radius: 10px;
    color: #fff;
    font-size: 13.5px;
    font-weight: 700;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: all .25s;
    text-align: center;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.evt-register-btn:hover {
    box-shadow: 0 6px 22px rgba(70, 103, 64, .4);
    transform: translateY(-1px);
    color: #fff;
}

/* Sponsor panel — sidebar */
.evt-sponsor-panel {
    background: #fff;
    border: 1.5px solid var(--tea);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
}

.evt-sponsor-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    background: var(--beige);
    border-bottom: 1px solid var(--tea);
    font-size: 11px;
    font-weight: 700;
    color: var(--ltxt);
    text-transform: uppercase;
    letter-spacing: .09em;
}

.evt-sponsor-header i {
    color: var(--hunter);
}

.evt-sponsor-img {
    padding: 14px;
}

.evt-sponsor-img img {
    width: 100%;
    border-radius: 8px;
    display: block;
}

/* Quick links panel */
.evt-quick-links {
    background: #fff;
    border: 1.5px solid var(--tea);
    border-radius: 16px;
    overflow: hidden;
}

.evt-quick-link-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 18px;
    border-bottom: 1px solid var(--tea);
    text-decoration: none;
    color: var(--dark2);
    font-size: 13px;
    font-weight: 500;
    transition: background .15s;
    cursor: pointer;
    background: none;
    border-left: none;
    border-right: none;
    border-top: none;
    width: 100%;
    text-align: left;
    font-family: 'DM Sans', sans-serif;
}

.evt-quick-link-row:last-child {
    border-bottom: none;
}

.evt-quick-link-row:hover {
    background: var(--beige);
    color: var(--hunter);
}

.evt-quick-link-row i {
    color: var(--hunter);
    width: 16px;
    text-align: center;
    font-size: 13px;
}

/* Mobile toggle — identical to .filter-mobile-toggle */
.evt-mobile-info-toggle {
    display: none;
    width: 100%;
    margin-bottom: 16px;
    padding: 12px 20px;
    background: #fff;
    border: 1.5px solid var(--tea);
    border-radius: 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    align-items: center;
    justify-content: space-between;
    transition: all .2s;
}

.evt-mobile-info-toggle:hover {
    border-color: var(--hunter);
    color: var(--hunter);
}

/* ── RIGHT CONTENT — identical to .directory-content ── */
.evt-detail-content {
    flex: 1;
    min-width: 0;
}

/* ── POSTER CARD ── */
.evt-poster-card {
    background: #fff;
    border: 1.5px solid var(--tea);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 2px 12px rgba(70, 103, 64, .06);
}

.evt-poster-wrap {
    position: relative;
    width: 100%;
    height: 320px;
    /* explicit height — Swiper needs this, not aspect-ratio */
    overflow: hidden;
    background: var(--dark2);
}

.evt-poster-wrap .swiper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.evt-poster-wrap .swiper-slide {
    width: 100%;
    height: 100%;
}

.evt-poster-wrap .swiper-wrapper {
    height: 100%;
}

.evt-poster-wrap .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.evt-poster-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 30%, rgba(0, 0, 0, .5) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Status badge */
.evt-poster-wrap .evt-status-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 10.5px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 50px;
    letter-spacing: .04em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
    width: fit-content;
    white-space: nowrap;
}

.badge-closed {
    background: rgba(239, 68, 68, .92);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .15);
}

.badge-special {
    background: rgba(159, 194, 82, .92);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .15);
}

.badge-open {
    background: rgba(34, 197, 94, .92);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .15);
}

.evt-share-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    min-width: 36px;
    /* never stretch */
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 13px;
    cursor: pointer;
    transition: all .2s;
    text-decoration: none;
    z-index: 3;
    flex-shrink: 0;
}

.evt-share-btn:hover {
    background: rgba(255, 255, 255, .28);
    color: #fff;
}

.evt-poster-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 18px;
    z-index: 2;
}

.evt-date-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, .13);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50px;
    padding: 6px 14px;
    color: #fff;
    font-size: 12.5px;
    font-weight: 600;
}

.evt-date-chip i {
    color: var(--ygreen);
    font-size: 11px;
}

/* Thumbnails */
.evt-thumb-strip {
    padding: 12px 18px;
    border-bottom: 1px solid var(--tea);
    overflow: hidden;
}

.evt-thumb-strip .swiper {
    width: 100%;
}

.evt-thumb-strip .swiper-slide {
    width: 78px !important;
    flex-shrink: 0;
}

.evt-thumb {
    width: 78px;
    height: 56px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid var(--tea);
    cursor: pointer;
    transition: all .2s;
    display: block;
}

.evt-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.evt-thumb:hover,
.evt-thumb.active {
    border-color: var(--hunter);
}

/* Poster body */
.evt-poster-body {
    padding: 20px 22px 18px;
}

/* Toolbar row */
.evt-poster-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    gap: 10px;
    flex-wrap: wrap;
}

.evt-poster-chapter {
    font-size: 11px;
    font-weight: 700;
    color: var(--hunter);
    text-transform: uppercase;
    letter-spacing: .1em;
    display: flex;
    align-items: center;
    gap: 5px;
}

.evt-poster-name {
    font-family: 'Playfair Display', serif;
    font-size: clamp(18px, 2.5vw, 26px);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    letter-spacing: -.02em;
    margin-bottom: 12px;
}

/* Meta pills */
.evt-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 14px;
}

.evt-meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 13px;
    background: var(--beige);
    border: 1px solid var(--tea);
    border-radius: 50px;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--dark2);
}

.evt-meta-pill i {
    color: var(--hunter);
    font-size: 11px;
    flex-shrink: 0;
}

.evt-desc-text {
    font-size: 14px;
    color: var(--ltxt);
    line-height: 1.8;
    font-weight: 300;
}

/* Tags */
.evt-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 12px;
}

.evt-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: #fff;
    border: 1px solid var(--tea);
    border-radius: 50px;
    font-size: 11.5px;
    font-weight: 500;
    color: var(--ltxt);
}

.evt-tag i {
    font-size: 9px;
    color: var(--hunter);
}

/* Footer buttons */
.evt-poster-footer {
    display: flex;
    gap: 10px;
    padding: 14px 22px;
    border-top: 1px solid var(--tea);
    background: var(--offwhite);
}

.btn-evt-register {
    flex: 1;
    padding: 10px 16px;
    background: linear-gradient(135deg, var(--ygreen), var(--hunter));
    border: none;
    border-radius: 10px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: all .22s;
    text-align: center;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    box-shadow: 0 3px 12px rgba(70, 103, 64, .22);
}

.btn-evt-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(70, 103, 64, .38);
    color: #fff;
}

.btn-evt-directions {
    flex: 1;
    padding: 9px 16px;
    border: 1.5px solid var(--hunter);
    border-radius: 10px;
    color: var(--hunter);
    font-size: 13px;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: all .2s;
    text-align: center;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    background: transparent;
}

.btn-evt-directions:hover {
    background: var(--hunter);
    color: #fff;
}

/* ── CONTENT SECTION CARDS (About / Speakers / Sponsors / FAQ) ── */
.evt-section-card {
    background: #fff;
    border: 1.5px solid var(--tea);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(70, 103, 64, .04);
}

/* Section header */
.evt-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 22px;
    background: var(--beige);
    border-bottom: 1px solid var(--tea);
}

.evt-section-header h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 9px;
}

.evt-section-header h3 i {
    color: var(--hunter);
}

.evt-section-body {
    padding: 22px;
}

/* About */
.evt-about-content {
    font-size: 14.5px;
    color: var(--ltxt);
    line-height: 1.8;
    font-weight: 300;
}

.evt-about-content p {
    margin-bottom: 12px;
}

.evt-about-content p:last-child {
    margin-bottom: 0;
}

.evt-about-content h2,
.evt-about-content h3,
.evt-about-content h4 {
    color: var(--dark);
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
}

.evt-about-content ul,
.evt-about-content ol {
    padding-left: 20px;
    margin-bottom: 12px;
}

.evt-about-content li {
    margin-bottom: 6px;
}

/* Speakers */
.evt-speaker-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.evt-speaker-card {
    text-align: center;
}

.evt-speaker-img-wrap {
    position: relative;
    width: 84px;
    height: 84px;
    margin: 0 auto 10px;
}

.evt-speaker-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 2.5px solid var(--tea);
}

.evt-speaker-role-pill {
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--hunter);
    color: #fff;
    font-size: 8.5px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 50px;
    white-space: nowrap;
}

.evt-speaker-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 2px;
}

.evt-speaker-desig {
    font-size: 11.5px;
    color: var(--ltxt);
}

/* Sponsors */
.evt-sponsors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.evt-sponsor-item {
    border: 1.5px solid var(--tea);
    border-radius: 10px;
    padding: 14px 10px;
    text-align: center;
    background: var(--offwhite);
    transition: all .2s;
}

.evt-sponsor-item:hover {
    border-color: var(--hunter);
    background: var(--beige);
}

.evt-sponsor-item img {
    max-height: 48px;
    width: 100%;
    object-fit: contain;
    margin-bottom: 6px;
}

.evt-sponsor-item span {
    display: block;
    font-size: 11.5px;
    color: var(--ltxt);
    font-weight: 500;
}

/* RSVP Modal */
.rsvp-modal-hdr {
    background: linear-gradient(135deg, var(--dark), var(--dark2));
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.rsvp-modal-hdr h5 {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.rsvp-modal-hdr h5 em {
    color: var(--ygreen);
    font-style: italic;
}

.rsvp-close-btn {
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    font-size: 13px;
    transition: background .2s;
}

.rsvp-close-btn:hover {
    background: rgba(255, 255, 255, .2);
}

.rsvp-form-group {
    margin-bottom: 14px;
}

.rsvp-form-group label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: .07em;
    margin-bottom: 6px;
}

.rsvp-form-group input,
.rsvp-form-group select {
    width: 100%;
    padding: 10px 13px;
    border: 1.5px solid var(--tea);
    border-radius: 9px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13.5px;
    color: var(--dark);
    background: var(--offwhite);
    transition: border-color .2s;
    outline: none;
}

.rsvp-form-group input:focus,
.rsvp-form-group select:focus {
    border-color: var(--hunter);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(70, 103, 64, .08);
}

/* RESPONSIVE — EVENT DETAIL PAGE*/

/* ── TABLET (768px – 991px) ── */
@media (max-width: 991.98px) {

    /* Layout: stack sidebar below content on tablet */
    .event-detail-layout {
        flex-direction: column;
    }

    .evt-info-sidebar {
        flex: none;
        width: 100%;
        position: static;
        order: -1;
        /* sidebar above content on tablet */
    }

    /* Hide panel by default, show via toggle */
    .evt-info-panel {
        display: none;
    }

    .evt-info-panel.mobile-open {
        display: block;
    }

    .evt-mobile-info-toggle {
        display: flex;
    }

    /* Quick links — full-width row layout */
    .evt-quick-links {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .evt-quick-link-row:nth-child(2) {
        border-right: none;
    }

    .evt-quick-link-row:nth-child(3),
    .evt-quick-link-row:nth-child(4) {
        border-bottom: none;
    }

    /* Sponsor panel: side by side on tablet */
    .evt-sponsor-panel .evt-sponsor-img {
        padding: 10px 14px;
    }

    /* CTA banner: stack */
    .evt-cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 36px 28px;
    }

    .evt-cta-actions {
        justify-content: center;
        width: 100%;
    }

    /* Poster: tablet */
    .evt-poster-wrap {
        height: 280px;
    }

    /* Speaker grid: 3 columns still ok on tablet */
    .evt-speaker-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Why bar */
    .why-attend-divider {
        display: none;
    }

    .why-attend-cta {
        margin-left: 0;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .why-attend-items {
        justify-content: center;
    }
}

/* ── MOBILE (< 768px) ── */
@media (max-width: 767.98px) {

    /* ── HERO ── */
    .event-detail-hero {
        padding: 44px 0 40px;
    }

    .evt-breadcrumb {
        font-size: 11px;
        gap: 4px;
    }

    .evt-detail-badge {
        font-size: 10.5px;
        padding: 5px 12px;
        margin-bottom: 14px;
    }

    .evt-detail-title {
        font-size: clamp(26px, 7.5vw, 38px);
        margin-bottom: 12px;
    }

    .evt-detail-desc {
        font-size: 13.5px;
        line-height: 1.65;
        margin-bottom: 20px;
    }

    .evt-detail-stats {
        gap: 16px;
        flex-wrap: wrap;
    }

    .evt-detail-stats .evt-stat-item {
        flex: 0 0 calc(50% - 8px);
    }

    .evt-stat-num {
        font-size: 20px;
    }

    .evt-stat-lbl {
        font-size: 11px;
    }

    /* ── WHY ATTEND BAR ── */
    .why-attend-section {
        padding: 22px 0;
    }

    .why-attend-inner {
        flex-direction: column;
        gap: 14px;
    }

    .why-attend-heading {
        width: 100%;
        text-align: center;
        font-size: 16px;
    }

    .why-attend-items {
        justify-content: center;
        gap: 8px;
    }

    .why-attend-item {
        font-size: 12px;
        padding: 8px 14px;
    }

    .why-attend-cta {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-left: 0;
    }

    .why-attend-cta .btn-primary-custom {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    /* ── MAIN SECTION ── */
    .event-detail-main {
        padding: 28px 0 52px;
    }

    /* ── CTA BANNER ── */
    .evt-cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 24px 18px;
        border-radius: 14px;
        gap: 18px;
        margin-bottom: 20px;
    }

    .evt-cta-text h3 {
        font-size: 18px;
        margin-bottom: 6px;
    }

    .evt-cta-text p {
        font-size: 13px;
    }

    .evt-cta-actions {
        flex-direction: column;
        width: 100%;
        gap: 8px;
    }

    .evt-cta-actions .btn-ygreen,
    .evt-cta-actions .btn-white-outline {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 13.5px;
    }

    /* ── SIDEBAR ── */
    .evt-info-sidebar {
        width: 100%;
    }

    .evt-mobile-info-toggle {
        padding: 12px 16px;
        font-size: 13.5px;
    }

    .evt-info-panel-header {
        padding: 14px 16px;
    }

    .evt-info-row {
        padding: 12px 16px;
    }

    .evt-info-icon {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .evt-info-label {
        font-size: 9.5px;
    }

    .evt-info-value {
        font-size: 13px;
    }

    .evt-fee-big {
        font-size: 19px;
    }

    .evt-register-btn {
        width: calc(100% - 32px);
        margin: 12px 16px;
        font-size: 13px;
        padding: 11px;
    }

    /* Quick links — full width rows on mobile */
    .evt-quick-links {
        display: block;
    }

    .evt-quick-link-row {
        padding: 11px 16px;
        font-size: 12.5px;
    }

    /* Sponsor panel */
    .evt-sponsor-header {
        padding: 12px 14px;
        font-size: 10px;
    }

    /* ── POSTER CARD ── */
    .evt-poster-card {
        border-radius: 12px;
        margin-bottom: 14px;
    }

    .evt-poster-wrap {
        height: 220px;
        /* fixed height — no more aspect-ratio issues */
    }

    .evt-poster-wrap .evt-status-badge {
        top: 10px;
        left: 10px;
        font-size: 9.5px;
        padding: 4px 9px;
    }

    .evt-share-btn {
        top: 10px;
        right: 10px;
        width: 32px;
        height: 32px;
        font-size: 12px;
    }

    .evt-poster-bottom {
        padding: 12px 14px;
    }

    .evt-date-chip {
        font-size: 11.5px;
        padding: 5px 11px;
    }

    /* Thumbnails: smaller on mobile */
    .evt-thumb-strip {
        padding: 10px 14px;
    }

    .evt-thumb {
        width: 60px;
        height: 44px;
        border-radius: 6px;
    }

    .evt-thumb-strip .swiper-slide {
        width: 60px !important;
    }

    /* Poster body */
    .evt-poster-body {
        padding: 14px 16px 12px;
    }

    .evt-poster-toolbar {
        margin-bottom: 8px;
    }

    .evt-poster-chapter {
        font-size: 10px;
    }

    .evt-poster-name {
        font-size: clamp(16px, 5vw, 22px);
        margin-bottom: 10px;
    }

    .evt-meta-row {
        gap: 6px;
        margin-bottom: 10px;
    }

    .evt-meta-pill {
        font-size: 11.5px;
        padding: 5px 10px;
    }

    .evt-meta-pill i {
        font-size: 10px;
    }

    .evt-desc-text {
        font-size: 13px;
        line-height: 1.7;
    }

    .evt-tags {
        gap: 5px;
        margin-top: 10px;
    }

    .evt-tag {
        font-size: 10.5px;
        padding: 3px 8px;
    }

    /* Poster footer: stack buttons */
    .evt-poster-footer {
        flex-direction: column;
        padding: 12px 16px;
        gap: 8px;
    }

    .btn-evt-register,
    .btn-evt-directions {
        width: 100%;
        padding: 11px 16px;
        font-size: 12.5px;
        justify-content: center;
    }

    /* ── SECTION CARDS ── */
    .evt-section-card {
        border-radius: 12px;
        margin-bottom: 14px;
    }

    .evt-section-header {
        padding: 13px 16px;
    }

    .evt-section-header h3 {
        font-size: 13px;
    }

    .evt-section-body {
        padding: 16px;
    }

    /* About content */
    .evt-about-content {
        font-size: 13.5px;
        line-height: 1.75;
    }

    /* Speakers: 2 columns on mobile */
    .evt-speaker-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .evt-speaker-img-wrap {
        width: 70px;
        height: 70px;
    }

    .evt-speaker-role-pill {
        font-size: 7.5px;
        padding: 2px 6px;
    }

    .evt-speaker-name {
        font-size: 12px;
    }

    .evt-speaker-desig {
        font-size: 10.5px;
    }

    /* Sponsors: 2 columns on mobile */
    .evt-sponsors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .evt-sponsor-item {
        padding: 12px 8px;
    }

    .evt-sponsor-item img {
        max-height: 38px;
    }

    .evt-sponsor-item span {
        font-size: 10.5px;
    }

    /* RSVP Modal */
    .rsvp-modal-hdr {
        padding: 16px 18px;
    }

    .rsvp-modal-hdr h5 {
        font-size: 15px;
    }

    .rsvp-form-group label {
        font-size: 10px;
    }

    .rsvp-form-group input,
    .rsvp-form-group select {
        font-size: 13px;
        padding: 9px 12px;
    }
}

/* ── EXTRA SMALL (< 480px) ── */
@media (max-width: 479.98px) {

    /* Hero */
    .event-detail-hero {
        padding: 36px 0 32px;
    }

    .evt-detail-title {
        font-size: clamp(22px, 7vw, 30px);
    }

    .evt-detail-desc {
        display: none;
        /* hide long desc on very small screens to save space */
    }

    .evt-detail-stats {
        gap: 12px;
    }

    .evt-detail-stats .evt-stat-item {
        flex: 0 0 calc(50% - 6px);
    }

    .evt-stat-num {
        font-size: 18px;
    }

    /* CTA Banner */
    .evt-cta-banner {
        padding: 20px 14px;
    }

    .evt-cta-text h3 {
        font-size: 16px;
    }

    /* Poster */
    .evt-poster-wrap {
        height: 200px;
    }

    .evt-poster-name {
        font-size: 15px;
    }

    .evt-meta-pill {
        font-size: 10.5px;
        padding: 4px 8px;
    }

    /* Speakers: 2 cols, tighter */
    .evt-speaker-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .evt-speaker-img-wrap {
        width: 60px;
        height: 60px;
    }

    .evt-speaker-name {
        font-size: 11px;
    }

    .evt-speaker-desig {
        font-size: 9.5px;
    }

    /* Sponsors: full-width single column */
    .evt-sponsors-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Section headers */
    .evt-section-header h3 {
        font-size: 12px;
    }

    .evt-section-body {
        padding: 14px 12px;
    }

    .evt-about-content {
        font-size: 13px;
    }

    /* Why bar: very compact */
    .why-attend-item {
        font-size: 11px;
        padding: 6px 10px;
    }

    .why-attend-item i {
        font-size: 10px;
    }

    /* Touch targets */
    .evt-register-btn,
    .btn-evt-register,
    .btn-evt-directions {
        min-height: 44px;
    }

    .evt-quick-link-row {
        min-height: 44px;
    }
}

/* ── TOUCH DEVICES — improve tap targets ── */
@media (hover: none) and (pointer: coarse) {

    .evt-register-btn,
    .btn-evt-register,
    .btn-evt-directions,
    .evt-cta-actions .btn-ygreen,
    .evt-cta-actions .btn-white-outline {
        min-height: 46px;
    }

    .evt-quick-link-row {
        min-height: 46px;
    }

    .evt-thumb {
        min-width: 64px;
    }

    .evt-faq-btn {
        min-height: 52px;
    }
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {

    .evt-poster-wrap .swiper-slide img,
    .evt-poster-card,
    .evt-section-card,
    .s4b-reveal {
        transition: none !important;
        animation: none !important;
    }
}


/* ════════════════════════════════════════
   DIRECTORY PAGE
════════════════════════════════════════ */

.dir-hero {
    position: relative;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 50%, var(--hunter) 100%);
    padding: 60px 0 50px;
    overflow: hidden;
}

.dir-hero-bg {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(159, 194, 82, .12) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(70, 103, 64, .2) 0%, transparent 40%);
    pointer-events: none;
}

.dir-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239FC252' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.dir-hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.dir-hero-text {
    max-width: 760px;
}

.dir-hero-title {
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -.02em;
    margin-bottom: 14px;
}

.dir-hero-title em {
    font-style: italic;
    color: var(--ygreen);
}

.dir-hero-desc {
    font-size: 15.5px;
    color: rgba(255, 255, 255, .72);
    line-height: 1.75;
    font-weight: 300;
    max-width: 680px;
}

.dir-why-card {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .12);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 28px 32px 24px;
}

.dir-why-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-align: center;
    letter-spacing: -.01em;
}

.dir-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 28px;
    margin-bottom: 4px;
}

.dir-why-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.dir-why-item i {
    color: var(--ygreen);
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.dir-why-item strong {
    display: block;
    font-size: 13.5px;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
}

.dir-why-item span {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, .6);
    line-height: 1.4;
    margin-top: 2px;
}

.dir-body {
    padding: 48px 0 60px;
    background: var(--offwhite);
}

.dir-filters-wrap {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    position: sticky;
    top: 140px;
    box-shadow: 0 4px 20px rgba(70, 103, 64, .07);
}

.dir-filters-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1.5px solid var(--border);
    background: var(--beige);
}

.dir-filters-header span {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
}

.dir-filter-clear {
    background: none;
    border: none;
    color: var(--hunter);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
    transition: color .2s;
}

.dir-filter-clear:hover {
    color: var(--ygreen);
}

.dir-filter-group {
    border-bottom: 1px solid var(--border);
}

.dir-filter-group:last-child {
    border-bottom: none;
}

.dir-filter-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: none;
    border: none;
    padding: 14px 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    transition: background .18s;
    text-align: left;
}

.dir-filter-toggle:hover {
    background: var(--beige);
}

.dir-filter-toggle i {
    color: var(--muted);
    font-size: 12px;
}

.dir-chevron {
    transition: transform .25s ease;
}

.dir-filter-toggle.collapsed .dir-chevron {
    transform: rotate(-90deg);
}

.dir-filter-body {
    padding: 0 20px 14px;
    display: none;
}

.dir-filter-body.open {
    display: block;
}

.dir-filter-body.opening {
    animation: filterSlideDown 0.22s ease forwards;
}

@keyframes filterSlideDown {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dir-filter-search {
    width: 100%;
    padding: 8px 12px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-size: 12.5px;
    color: var(--dark);
    background: var(--offwhite);
    margin-bottom: 10px;
    outline: none;
    transition: border-color .2s;
}

.dir-filter-search:focus {
    border-color: var(--hunter);
}

.dir-filter-options {
    display: flex;
    flex-direction: column;
    gap: 6px;
    max-height: 200px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--tea) transparent;
}

.dir-check-item {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13px;
    color: var(--dark);
    cursor: pointer;
    padding: 4px 6px;
    border-radius: 6px;
    transition: background .15s;
}

.dir-check-item:hover {
    background: var(--beige);
}

.dir-check-item input[type="checkbox"] {
    accent-color: var(--hunter);
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

.dir-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 6px;
    flex-wrap: wrap;
}

.dir-listing-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: -.02em;
    margin: 0;
}

.dir-search-wrap {
    position: relative;
    flex: 1;
    max-width: 320px;
}

.dir-search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted);
    font-size: 14px;
    pointer-events: none;
}

.dir-search-input {
    width: 100%;
    padding: 10px 14px 10px 38px;
    border: 1.5px solid var(--border);
    border-radius: 50px;
    font-size: 13.5px;
    color: var(--dark);
    background: #fff;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
    font-family: 'DM Sans', sans-serif;
}

.dir-search-input:focus {
    border-color: var(--hunter);
    box-shadow: 0 0 0 3px rgba(70, 103, 64, .1);
}

.dir-result-count {
    font-size: 13px;
    color: var(--ltxt);
    margin-bottom: 20px;
}

.dir-cards-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.dir-card {
    display: flex;
    align-items: stretch;
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: box-shadow .3s, transform .3s, border-color .3s;
    box-shadow: 0 2px 10px rgba(70, 103, 64, .06);
}

.dir-card:hover {
    box-shadow: 0 8px 32px rgba(70, 103, 64, .14);
    transform: translateY(-2px);
    border-color: rgba(70, 103, 64, .25);
}

.dir-card-logo {
    width: 110px;
    min-width: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--beige);
    border-right: 1.5px solid var(--border);
    padding: 16px 12px;
}

.dir-card-logo img {
    width: 76px;
    height: 76px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.dir-card-body {
    flex: 1;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
}

.dir-card-name {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 4px;
    line-height: 1.3;
}

.dir-card-location {
    font-size: 12.5px;
    color: var(--ltxt);
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 6px;
}

.dir-card-location i {
    color: var(--hunter);
    font-size: 11px;
}

.dir-card-desc {
    font-size: 13px;
    color: var(--ltxt);
    line-height: 1.55;
    margin: 0 0 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.dir-card-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 4px;
}

.dir-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .02em;
}

.dir-badge.premium {
    background: #EAF3DD;
    color: var(--hunter);
    border: 1px solid rgba(70, 103, 64, .2);
}

.dir-badge.discount {
    background: rgba(159, 194, 82, .15);
    color: #5c7a18;
    border: 1px solid rgba(159, 194, 82, .35);
}

.dir-card-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.dir-know-more {
    font-size: 13px;
    font-weight: 600;
    color: var(--hunter);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap .2s, color .2s;
}

.dir-know-more:hover {
    color: var(--ygreen);
    gap: 8px;
}

.dir-know-more i {
    font-size: 14px;
}

.dir-enquiry-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    background: linear-gradient(135deg, var(--ygreen), var(--hunter));
    color: #fff;
    font-size: 12.5px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 3px 12px rgba(70, 103, 64, .25);
    transition: all .25s;
}

.dir-enquiry-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(70, 103, 64, .38);
    color: #fff;
}

.dir-card-member {
    width: 160px;
    min-width: 160px;
    padding: 18px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border-left: 1.5px solid var(--border);
    background: var(--offwhite);
    text-align: center;
}

.dir-member-photo-wrap {
    position: relative;
    width: 72px;
    height: 72px;
    flex-shrink: 0;
}

.dir-member-photo {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--tea);
    display: block;
    transition: border-color .25s;
}

.dir-card-member:hover .dir-member-photo {
    border-color: var(--ygreen);
}

.dir-member-photo-overlay {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(70, 103, 64, .55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .25s;
    cursor: pointer;
}

.dir-member-photo-overlay i {
    color: #fff;
    font-size: 18px;
}

.dir-card-member:hover .dir-member-photo-overlay {
    opacity: 1;
}

.dir-member-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
    text-align: center;
}

.dir-member-chapter {
    font-size: 11px;
    color: var(--ltxt);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    text-align: center;
    line-height: 1.4;
}

.dir-member-verified {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 9px;
    background: rgba(159, 194, 82, .15);
    border: 1px solid rgba(159, 194, 82, .4);
    border-radius: 50px;
    font-size: 10.5px;
    font-weight: 700;
    color: #4a7015;
}

.dir-member-verified i {
    font-size: 10px;
    color: var(--ygreen);
}

.dir-pagination {
    margin-top: 32px;
    display: flex;
    justify-content: center;
}

.dir-page-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
}

.dir-page-btn {
    min-width: 38px;
    height: 38px;
    padding: 0 10px;
    border: 1.5px solid var(--border);
    background: #fff;
    color: var(--dark);
    font-size: 13.5px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all .2s;
    font-family: 'DM Sans', sans-serif;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.dir-page-btn:hover:not(:disabled) {
    background: var(--beige);
    border-color: var(--hunter);
    color: var(--hunter);
}

.dir-page-btn.active {
    background: linear-gradient(135deg, var(--ygreen), var(--hunter));
    border-color: transparent;
    color: #fff;
    box-shadow: 0 3px 12px rgba(70, 103, 64, .3);
}

.dir-page-btn:disabled {
    opacity: .4;
    cursor: not-allowed;
}

.dir-page-ellipsis {
    font-size: 14px;
    color: var(--ltxt);
    padding: 0 4px;
}

.dir-page-prev,
.dir-page-next {
    font-size: 12px;
}

/* Stagger delays */
.dir-card:nth-child(1) {
    transition-delay: 0ms;
}

.dir-card:nth-child(2) {
    transition-delay: 60ms;
}

.dir-card:nth-child(3) {
    transition-delay: 120ms;
}

.dir-card:nth-child(4) {
    transition-delay: 180ms;
}

.dir-card:nth-child(5) {
    transition-delay: 240ms;
}

.dir-card:nth-child(6) {
    transition-delay: 300ms;
}

.dir-card:nth-child(7) {
    transition-delay: 360ms;
}

.dir-card:nth-child(8) {
    transition-delay: 420ms;
}

.dir-card:nth-child(9) {
    transition-delay: 480ms;
}

.dir-card:nth-child(10) {
    transition-delay: 540ms;
}

.dir-filters-mobile-toggle {
    display: none;
    margin-bottom: 16px;
}

@media (max-width: 767px) {
    .dir-hero {
        padding: 40px 0 36px;
    }

    .dir-why-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .dir-filters-mobile-toggle {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 10px 20px;
        background: #fff;
        border: 1.5px solid var(--border);
        border-radius: 10px;
        font-size: 14px;
        font-weight: 600;
        color: var(--dark);
        width: 100%;
        cursor: pointer;
        box-shadow: 0 2px 8px rgba(70, 103, 64, .07);
    }



    .dir-filters-wrap.mobile-open {
        display: block;
    }

    .dir-card {
        flex-direction: column;
    }

    .dir-card-logo {
        width: 100%;
        min-width: unset;
        border-right: none;
        border-bottom: 1.5px solid var(--border);
        padding: 16px;
        flex-direction: row;
        justify-content: flex-start;
        gap: 14px;
    }

    .dir-card-member {
        width: 100%;
        min-width: unset;
        flex-direction: row;
        border-left: none;
        border-top: 1.5px solid var(--border);
        justify-content: flex-start;
        text-align: left;
        gap: 12px;
        flex-wrap: wrap;
        padding: 12px 16px;
    }

    .dir-topbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .dir-search-wrap {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 400px) {
    .dir-card-actions {
        flex-direction: column;
        align-items: flex-start;
    }
}


/*DIRECTORY Detail PAGE*/


/* ── HERO ── */
.dird-hero {
    position: relative;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 50%, #1a3318 100%);
    padding: 52px 0 48px;
    overflow: hidden;
}

.dird-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 80% 50%, rgba(159, 194, 82, .1) 0%, transparent 65%),
        radial-gradient(ellipse 40% 40% at 10% 80%, rgba(70, 103, 64, .22) 0%, transparent 60%);
    pointer-events: none;
}

.dird-hero-inner {
    position: relative;
    z-index: 2;
}

/* Breadcrumb */
.dird-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 12.5px;
}

.dird-breadcrumb a {
    color: rgba(255, 255, 255, .55);
    text-decoration: none;
    transition: color .2s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.dird-breadcrumb a:hover {
    color: var(--ygreen);
}

.dird-breadcrumb .sep {
    color: rgba(255, 255, 255, .2);
    font-size: 9px;
}

.dird-breadcrumb .current {
    color: rgba(255, 255, 255, .8);
    font-weight: 500;
}

/* Hero card */
.dird-hero-card {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 28px 32px;
}

/* Logo */
.dird-logo-wrap {
    flex-shrink: 0;
    width: 110px;
    height: 110px;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    border: 3px solid rgba(255, 255, 255, .15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.dird-logo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.dird-logo-placeholder {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--hunter);
}

/* Info */
.dird-hero-info {
    flex: 1;
    min-width: 0;
}

.dird-hero-meta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.dird-chapter-tag,
.dird-member-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .04em;
}

.dird-chapter-tag {
    background: rgba(159, 194, 82, .15);
    border: 1px solid rgba(159, 194, 82, .3);
    color: var(--ygreen);
}

.dird-member-tag {
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .15);
    color: rgba(255, 255, 255, .75);
}

.dird-member-tag.tag-verified {
    background: rgba(159, 194, 82, .2);
    border-color: rgba(159, 194, 82, .4);
    color: var(--ygreen);
}

.dird-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(22px, 3.5vw, 36px);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -.02em;
    margin-bottom: 6px;
}

.dird-hero-deals {
    font-size: 14px;
    color: rgba(255, 255, 255, .6);
    margin-bottom: 14px;
    font-weight: 300;
    line-height: 1.5;
}

.dird-rating-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.dird-rating-num {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--ygreen);
}

.dird-rating-count {
    font-size: 12px;
    color: rgba(255, 255, 255, .45);
}

.dird-hero-address {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, .55);
}

.dird-hero-address i {
    color: var(--ygreen);
    margin-top: 2px;
    flex-shrink: 0;
}


/* ── GALLERY ── */
.dird-gallery-section {
    background: #f0f0f0;
    padding: 0;
}

.dird-gallery-section .container-xl {
    padding: 0;
    max-width: 100%;
}

.dird-gallery-grid {
    display: flex;
    flex-direction: row;
    gap: 0px;
    height: 240px;
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
    padding: 12px 16px;
    background: #f5f5f5;
    box-sizing: border-box;
    scrollbar-width: thin;
    scrollbar-color: var(--tea) transparent;
}

/* Gallery fix: center images when fewer than 5 are uploaded */
.dird-gallery-grid {
    grid-template-columns: repeat(auto-fit, 340px) !important;
    justify-content: center !important;
    gap: 12px !important;
}

.dird-gallery-grid .dird-gal-side {
    display: contents !important;
}

.dird-gallery-grid .dird-gal-item img {
    object-fit: contain !important;
    padding: 8px !important;
}

.dird-gal-item {
    position: relative;
    overflow: hidden;
    display: block;
    background: #ffffff;
    border-radius: 10px;
    border: 1.5px solid var(--tea);
    flex: 0 0 auto;
    width: 200px;
    height: 100%;
    transition: border-color .2s, box-shadow .2s;
}

.dird-gal-item:hover {
    border-color: var(--hunter);
    box-shadow: 0 4px 16px rgba(70, 103, 64, .15);
}

.dird-gal-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: #ffffff;
    display: block;
    padding: 6px;
    box-sizing: border-box;
}

.dird-gal-overlay {
    display: none;
}

/* gal-side is not used in the new flat layout, kept for safety */
.dird-gal-side {
    display: contents;
}

.dird-gal-side .dird-gal-item {
    flex: 0 0 auto;
}

/* ── BODY LAYOUT ── */
.dird-body {
    padding: 48px 0 72px;
    background: var(--offwhite);
}

.dird-layout {
    display: flex;
    gap: 28px;
    align-items: flex-start;
}

/* ── CONTENT ── */
.dird-content {
    flex: 1;
    min-width: 0;
}

/* ── TABS NAV ── */
.dird-tabs-nav {
    display: flex;
    gap: 6px;
    background: #fff;
    border: 1.5px solid var(--tea);
    border-radius: 14px;
    padding: 6px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    position: sticky;
    top: 70px;
    z-index: 100;
    box-shadow: 0 4px 16px rgba(70, 103, 64, .08);
}

.dird-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--ltxt);
    text-decoration: none;
    transition: all .2s;
    white-space: nowrap;
    border: 1.5px solid transparent;
}

.dird-tab i {
    font-size: 12px;
}

.dird-tab:hover {
    background: var(--beige);
    color: var(--hunter);
}

.dird-tab.active {
    background: var(--hunter);
    color: #fff;
    border-color: var(--hunter);
    box-shadow: 0 3px 12px rgba(70, 103, 64, .25);
}

/* ── SECTION CARDS ── */
.dird-section-card {
    background: #fff;
    border: 1.5px solid var(--tea);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(70, 103, 64, .04);
}

.dird-section-header {
    padding: 16px 22px;
    background: var(--beige);
    border-bottom: 1px solid var(--tea);
}

.dird-section-header h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 9px;
}

.dird-section-header h3 i {
    color: var(--hunter);
}

.dird-section-body {
    padding: 22px;
}


/* ── BUSINESS DETAIL GRID ── */
.dird-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, 340px) !important;
    justify-content: center !important;
    gap: 12px !important;
}

.dird-detail-item {
    padding: 14px 18px;
    border-bottom: 1px solid var(--tea);
    border-right: 1px solid var(--tea);
}

.dird-detail-item:nth-child(2n) {
    border-right: none;
}

.dird-detail-item:last-child,
.dird-detail-item:nth-last-child(2):not(.full-width) {
    border-bottom: none;
}

.dird-detail-item.full-width {
    grid-column: 1 / -1;
    border-right: none;
}

.dird-detail-item.full-width:last-child {
    border-bottom: none;
}

.dird-detail-label {
    display: block;
    font-size: 10.5px;
    font-weight: 700;
    color: var(--ltxt);
    text-transform: uppercase;
    letter-spacing: .09em;
    margin-bottom: 5px;
}

.dird-detail-value {
    display: block;
    font-size: 14px;
    color: var(--dark);
    font-weight: 500;
    line-height: 1.55;
}

.dird-website-link {
    color: var(--hunter);
    text-decoration: none;
    font-size: 13.5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color .2s;
}

.dird-website-link:hover {
    color: var(--ygreen);
}

.dird-social-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.dird-social-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1.5px solid var(--tea);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: border-color .2s, transform .2s;
}

.dird-social-icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.dird-social-icon:hover {
    border-color: var(--hunter);
    transform: translateY(-2px);
}

/* ── PRODUCTS GRID ── */
.dird-products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.dird-product-card {
    border: 1.5px solid var(--tea);
    border-radius: 12px;
    overflow: hidden;
    background: var(--offwhite);
    transition: all .25s;
}

.dird-product-card:hover {
    border-color: rgba(70, 103, 64, .3);
    box-shadow: 0 6px 22px rgba(70, 103, 64, .1);
    transform: translateY(-2px);
}

.dird-product-img {
    width: 100%;
    height: 160px;
    overflow: hidden;
    background: var(--tea);
}

.dird-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s;
}

.dird-product-card:hover .dird-product-img img {
    transform: scale(1.04);
}

.dird-product-no-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 28px;
}

.dird-product-body {
    padding: 14px 16px 16px;
}

.dird-product-type {
    font-size: 10.5px;
    font-weight: 700;
    color: var(--hunter);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 5px;
    display: block;
}

.dird-product-name {
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
    line-height: 1.3;
}

.dird-product-desc {
    font-size: 12.5px;
    color: var(--ltxt);
    line-height: 1.6;
    margin-bottom: 12px;
}

.dird-product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    flex-wrap: wrap;
    padding-top: 10px;
    border-top: 1px solid var(--tea);
}

.dird-product-price {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--hunter);
}

.dird-product-actions {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

/* ── REVIEWS ── */
.dird-review-header-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.dird-review-summary {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}

.dird-review-big-num {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 800;
    color: var(--hunter);
    line-height: 1;
}

.dird-review-base {
    display: block;
    font-size: 12px;
    color: var(--ltxt);
    margin-top: 4px;
}

.dird-reviews-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.dird-review-card {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: var(--offwhite);
    border: 1.5px solid var(--tea);
    border-radius: 12px;
    transition: border-color .2s;
}

.dird-review-card:hover {
    border-color: rgba(70, 103, 64, .25);
}

.dird-reviewer-info {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    flex-shrink: 0;
    min-width: 130px;
    max-width: 150px;
    flex-direction: column;
}

.dird-reviewer-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--tea);
    flex-shrink: 0;
}

.dird-reviewer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dird-reviewer-name {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
}

.dird-reviewer-type {
    display: block;
    font-size: 11px;
    color: var(--hunter);
    font-weight: 600;
    margin-top: 2px;
}

.dird-review-time {
    display: block;
    font-size: 11px;
    color: var(--ltxt);
    margin-top: 2px;
}

.dird-review-body {
    flex: 1;
    min-width: 0;
}

.dird-review-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    margin: 6px 0 4px;
}

.dird-review-text {
    font-size: 13.5px;
    color: var(--ltxt);
    line-height: 1.7;
    margin: 0;
}

/* Comments */
.dird-comments-wrap {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--tea);
}

.dird-comments-heading {
    font-size: 12px;
    font-weight: 700;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: .07em;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.dird-comments-heading i {
    color: var(--hunter);
}

.dird-comment-card {
    display: flex;
    gap: 10px;
    background: #fff;
    border: 1px solid var(--tea);
    border-radius: 10px;
    padding: 10px 12px;
    margin-bottom: 8px;
}

.dird-comment-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid var(--tea);
    flex-shrink: 0;
}

.dird-comment-body {
    flex: 1;
}

.dird-comment-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
    flex-wrap: wrap;
}

.dird-comment-name {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--dark);
}

.dird-comment-date {
    font-size: 11px;
    color: var(--ltxt);
}

.dird-comment-text {
    font-size: 13px;
    color: var(--ltxt);
    margin: 0;
    line-height: 1.6;
}

/* Empty state */
.dird-empty-state {
    text-align: center;
    padding: 40px 20px;
    color: var(--muted);
}

.dird-empty-state i {
    font-size: 32px;
    margin-bottom: 10px;
    display: block;
}

.dird-empty-state p {
    font-size: 14px;
    color: var(--ltxt);
}

/* ── SIDEBAR ── */
.dird-sidebar {
    flex: 0 0 280px;
    width: 280px;
    position: sticky;
    top: 80px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.dird-sidebar-card {
    background: #fff;
    border: 1.5px solid var(--tea);
    border-radius: 16px;
    overflow: hidden;
    padding: 20px;
}

.dird-sidebar-heading {
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dird-sidebar-heading i {
    color: var(--hunter);
}

/* Contact card */
.dird-contact-profile {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
}

.dird-contact-avatar {
    position: relative;
    width: 56px;
    height: 56px;
    flex-shrink: 0;
}

.dird-contact-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: contain;
    object-position: center;
    border: 2.5px solid var(--tea);
    background: var(--beige);
}

.dird-avatar-initials {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--hunter);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.dird-verified-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 20px;
    height: 20px;
}

.dird-verified-badge img {
    width: 100%;
    height: 100%;
}

.dird-contact-name-wrap h5 {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 4px;
    line-height: 1.3;
}

.dird-contact-city {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--ltxt);
    margin-bottom: 6px;
}

.dird-contact-city i {
    color: var(--hunter);
    font-size: 11px;
}

.dird-contact-member {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    background: var(--beige);
    border: 1px solid var(--tea);
    color: var(--dark2);
}

.dird-contact-member.member-verified {
    background: rgba(70, 103, 64, .1);
    border-color: rgba(70, 103, 64, .25);
    color: var(--hunter);
}

.dird-contact-divider {
    height: 1px;
    background: var(--tea);
    margin: 0 0 16px;
}

/* Contact rows */
.dird-contact-rows {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dird-contact-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: var(--offwhite);
    border: 1px solid var(--tea);
    border-radius: 10px;
}

.dird-contact-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--beige);
    border: 1px solid var(--tea);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hunter);
    font-size: 13px;
    flex-shrink: 0;
}

.dird-contact-icon.dird-icon-wa {
    color: #25D366;
}

.dird-contact-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    flex: 1;
}

.dird-contact-value {
    font-size: 12.5px;
    color: var(--hunter);
    text-decoration: none;
    font-weight: 600;
}

.dird-contact-value:hover {
    color: var(--ygreen);
}

.dird-contact-na {
    font-size: 12px;
    color: var(--muted);
}

/* Address */
.dird-address-text {
    font-size: 13.5px;
    color: var(--ltxt);
    line-height: 1.65;
    margin-bottom: 12px;
}

.dird-directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 18px;
    border: 1.5px solid var(--hunter);
    border-radius: 50px;
    color: var(--hunter);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all .2s;
}

.dird-directions-btn:hover {
    background: var(--hunter);
    color: #fff;
}

/* Timing list */
.dird-timing-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.dird-timing-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 0;
    border-bottom: 1px solid var(--tea);
    font-size: 13px;
}

.dird-timing-list li:last-child {
    border-bottom: none;
}

.dird-timing-list li span:first-child {
    font-weight: 700;
    color: var(--dark);
    min-width: 36px;
}

.dird-timing-list li span:last-child {
    color: var(--ltxt);
}

/* ── BUTTONS ── */
.dird-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 9px 20px;
    background: linear-gradient(135deg, var(--ygreen), var(--hunter));
    border: none;
    border-radius: 50px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    font-family: 'DM Sans', sans-serif;
    text-decoration: none;
    cursor: pointer;
    transition: all .25s;
    box-shadow: 0 3px 12px rgba(70, 103, 64, .25);
}

.dird-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(70, 103, 64, .38);
    color: #fff;
}

.dird-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 7px 16px;
    border: 1.5px solid var(--hunter);
    border-radius: 50px;
    color: var(--hunter);
    font-size: 12.5px;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    text-decoration: none;
    cursor: pointer;
    transition: all .2s;
    background: transparent;
}

.dird-btn-outline:hover {
    background: var(--hunter);
    color: #fff;
}

.dird-btn-sm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 14px;
    background: linear-gradient(135deg, var(--ygreen), var(--hunter));
    border: none;
    border-radius: 50px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    font-family: 'DM Sans', sans-serif;
    text-decoration: none;
    cursor: pointer;
    transition: all .2s;
    white-space: nowrap;
}

.dird-btn-sm:hover {
    transform: translateY(-1px);
    color: #fff;
}

/* ── GALLERY SWIPER (mobile only) ── */
.dird-gallery-swiper {
    position: relative;
    background: #f0f0f0;
}

.dird-gallery-swiper .swiper {
    width: 100%;
    height: 260px;
}

.dird-gallery-swiper .swiper-slide {
    position: relative;
    overflow: hidden;
    background: #f0f0f0;
}

.dird-gallery-swiper .swiper-slide a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.dird-gallery-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: #f0f0f0;
    display: block;
}

.dird-gallery-swiper .dird-gal-overlay {
    display: none;
}

.dird-gallery-swiper .swiper-pagination {
    bottom: 10px;
}

.dird-gallery-swiper .swiper-pagination-bullet {
    background: rgba(255, 255, 255, .5);
    opacity: 1;
    width: 7px;
    height: 7px;
    transition: all .2s;
}

.dird-gallery-swiper .swiper-pagination-bullet-active {
    background: var(--ygreen);
    width: 20px;
    border-radius: 4px;
}

/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */

@media (max-width: 991.98px) {
    .dird-layout {
        flex-direction: column;
    }

    .dird-sidebar {
        flex: none;
        width: 100%;
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .dird-sidebar-card:first-child {
        grid-column: 1 / -1;
    }

    .dird-tabs-nav {
        position: static;
    }

    .dird-gallery-grid {
        height: 200px;
    }

    .dird-products-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767.98px) {
    .dird-hero {
        padding: 36px 0 32px;
    }

    .dird-hero-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
        gap: 16px;
    }

    .dird-hero-meta {
        justify-content: center;
    }

    .dird-rating-row {
        justify-content: center;
    }

    .dird-hero-address {
        justify-content: center;
    }

    .dird-gallery-grid {
        height: 160px;
        padding: 8px 12px;
        gap: 6px;
    }

    .dird-gal-item {
        width: 140px;
    }

    .dird-sidebar {
        grid-template-columns: 1fr;
    }

    .dird-tabs-nav {
        gap: 4px;
    }

    .dird-tab {
        font-size: 11.5px;
        padding: 8px 10px;
    }

    .dird-tab i {
        display: none;
    }

    .dird-products-grid {
        grid-template-columns: 1fr;
    }

    .dird-detail-grid {
        grid-template-columns: 1fr;
    }

    .dird-detail-item {
        border-right: none;
    }

    .dird-review-card {
        flex-direction: column;
        gap: 10px;
    }

    .dird-reviewer-info {
        flex-direction: row;
        max-width: unset;
        min-width: unset;
    }

    .dird-review-header-inner {
        flex-direction: column;
        gap: 12px;
    }

    .dird-review-summary {
        flex-wrap: wrap;
    }
}

@media (max-width: 479.98px) {
    .dird-tabs-nav {
        gap: 3px;
        padding: 4px;
    }

    .dird-tab {
        font-size: 11px;
        padding: 7px 8px;
    }

    .dird-hero-title {
        font-size: 22px;
    }

    .dird-product-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .dird-product-actions {
        width: 100%;
    }

    .dird-btn-outline,
    .dird-btn-primary {
        width: 100%;
    }
}

/* ── DISCOUNT CARD — uses dp- classes from discount-partner.css ── */
.dird-flip-scene {
    width: 100%;
    height: 200px;
    perspective: 1200px;
}

.dird-flip-scene .flip-card {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform .55s cubic-bezier(.4, 0, .2, 1);
    border-radius: 16px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 4px 20px rgba(70, 103, 64, .14);
}

.dird-flip-scene .flip-card.is-flipped {
    transform: rotateY(180deg);
}

.dird-flip-scene .card__face {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
}

.dird-flip-scene .card__face--front {
    background: linear-gradient(135deg, rgba(30, 43, 28, .85) 0%, rgba(70, 103, 64, .78) 100%);
    align-items: stretch;
    transform: rotateY(0deg);
}

.dird-flip-scene .card__face--back {
    background: #ffffff !important;
    transform: rotateY(180deg);
    flex-direction: column;
    padding: 0;
    border: 1.5px solid var(--tea);
    overflow: hidden;
}

/* 
   DISCOUNT PARTNER PAGE  */

/* ── HERO ── */
.dp-hero {
    position: relative;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 50%, #1a3318 100%);
    padding: 72px 0 64px;
    overflow: hidden;
}

.dp-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 80% 50%, rgba(159, 194, 82, .1) 0%, transparent 65%),
        radial-gradient(ellipse 40% 40% at 10% 80%, rgba(70, 103, 64, .22) 0%, transparent 60%);
    pointer-events: none;
}

.dp-hero-bg::after {
    content: '';
    position: absolute;
    top: -60px;
    right: -80px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(159, 194, 82, .05);
    border: 1px solid rgba(159, 194, 82, .08);
}

.dp-hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* Hero Text */
.dp-hero-text {
    flex: 1;
    min-width: 0;
}

.dp-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4.5vw, 54px);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -.025em;
    margin-bottom: 18px;
}

.dp-hero-title em {
    font-style: italic;
    color: var(--ygreen);
}

.dp-hero-desc {
    font-size: 15.5px;
    color: rgba(255, 255, 255, .65);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 28px;
    max-width: 560px;
}

/* Who Can Join Card */
.dp-who-card {
    flex: 0 0 380px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .12);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 26px 28px 22px;
}

.dp-who-title {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
    text-align: center;
    letter-spacing: -.01em;
}

.dp-who-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 20px;
}

.dp-who-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.dp-who-item i {
    color: var(--ygreen);
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
    width: 18px;
}

.dp-who-item strong {
    display: block;
    font-size: 12.5px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.dp-who-item span {
    display: block;
    font-size: 11px;
    color: rgba(255, 255, 255, .52);
    line-height: 1.4;
    margin-top: 2px;
}

/* ── MAIN SECTION ── */
.dp-main {
    padding: 52px 0 72px;
    background: var(--offwhite);
}

/* Toolbar */
.dp-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    gap: 16px;
    flex-wrap: wrap;
}

.dp-listing-title {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
    letter-spacing: -.02em;
}

.dp-search-wrap {
    position: relative;
    width: 300px;
}

.dp-search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted);
    font-size: 13px;
    pointer-events: none;
}

.dp-search-input {
    width: 100%;
    padding: 10px 14px 10px 38px;
    border: 1.5px solid var(--border);
    border-radius: 50px;
    font-size: 13.5px;
    color: var(--dark);
    background: #fff;
    outline: none;
    font-family: 'DM Sans', sans-serif;
    transition: border-color .2s, box-shadow .2s;
}

.dp-search-input:focus {
    border-color: var(--hunter);
    box-shadow: 0 0 0 3px rgba(70, 103, 64, .1);
}

/* ── CARDS GRID ── */
.dp-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

/* ── FLIP CARD WRAPPER ── */
.dp-card-wrap {
    width: 100%;
}

.dp-card-wrap .flip-scene {
    width: 100%;
    height: 240px;
    perspective: 1200px;
}

.dp-card-wrap .flip-card {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform .55s cubic-bezier(.4, 0, .2, 1);
    border-radius: 16px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 4px 20px rgba(70, 103, 64, .14);
    cursor: pointer;
}

.dp-card-wrap .flip-card.is-flipped {
    transform: rotateY(180deg);
}

.dp-card-wrap .card__face {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
}

/* ── FRONT FACE ── */
.dp-card-wrap .card__face--front {
    background: linear-gradient(135deg, rgba(30, 43, 28, .85) 0%, rgba(70, 103, 64, .78) 100%);
    padding: 0;
    align-items: stretch;
    transform: rotateY(0deg);
}

/* Discount badge area — left */
.dp-discount-badge {
    flex: 0 0 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 18px 14px;
    border-right: 1px solid rgba(255, 255, 255, .12);
    background: rgba(0, 0, 0, .25);
    text-align: center;
    gap: 4px;
}

.dp-offer-btn {
    font-size: 10px;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 50px;
    border: none;
    background: rgba(159, 194, 82, .25);
    color: var(--ygreen);
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    transition: all .2s;
    letter-spacing: .03em;
    margin-bottom: 10px;
}

.dp-offer-btn:hover {
    background: var(--ygreen);
    color: #fff;
}

.dp-discount-value {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 900;
    color: var(--ygreen);
    line-height: 1;
}

.dp-discount-value span {
    font-size: 22px;
    font-weight: 700;
}

.dp-rupee {
    font-size: 20px;
    vertical-align: super;
}

.dp-discount-label {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, .7);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-top: 4px;
}

/* Business info area — right */
.dp-front-info {
    flex: 1;
    padding: 18px 18px 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}

.dp-logo-wrap {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    border: 2px solid rgba(255, 255, 255, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dp-logo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.dp-biz-name {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.3;
}

.dp-biz-location {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    font-size: 12px;
    color: rgba(255, 255, 255, .6);
    line-height: 1.4;
}

.dp-biz-location i {
    color: var(--ygreen);
    font-size: 11px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* ── BACK FACE ── */
.dp-card-wrap .card__face--back {
    background: #ffffff !important;
    transform: rotateY(180deg);
    flex-direction: column;
    padding: 0;
    border: 1.5px solid var(--tea);
    overflow: hidden;
}

/* Top header bar */
.dp-back-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 12px;
    background: #EAF3DD;
    border-bottom: 1px solid #D0DFBE;
    flex-shrink: 0;
}

.dp-back-btn {
    font-size: 10.5px;
    font-weight: 700;
    padding: 4px 11px;
    border-radius: 50px;
    border: 1.5px solid #466740;
    background: transparent;
    color: #466740 !important;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    transition: all .2s;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    line-height: 1;
}

.dp-back-btn:hover {
    background: #466740;
    color: #fff !important;
}

.dp-back-offer-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 11px;
    background: rgba(159, 194, 82, .18);
    border: 1px solid rgba(159, 194, 82, .45);
    border-radius: 50px;
    font-size: 11.5px;
    font-weight: 700;
    color: #466740 !important;
}

/* Body row: image + details */
.dp-back-inner {
    display: flex;
    flex: 1;
    min-height: 0;
}

/* Left image strip */
.dp-back-img-wrap {
    flex: 0 0 78px;
    width: 78px;
    position: relative;
    background: #EAF3DD;
    border-right: 1px solid #D0DFBE;
    overflow: hidden;
}

.dp-back-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.dp-back-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(30, 43, 28, .82);
    color: #fff !important;
    font-size: 8.5px;
    font-weight: 600;
    padding: 4px 4px;
    text-align: center;
    line-height: 1.3;
}

/* Right details */
.dp-back-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 10px 12px;
    gap: 5px;
    overflow: hidden;
}

.dp-back-biz {
    font-family: 'Playfair Display', serif;
    font-size: 13.5px;
    font-weight: 700;
    color: #1E2B1C !important;
    margin: 0 0 6px;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dp-back-divider {
    height: 1px;
    background: #D0DFBE;
    margin-bottom: 8px;
    flex-shrink: 0;
}

.dp-back-offer-label {
    font-size: 10px;
    font-weight: 700;
    color: #466740 !important;
    text-transform: uppercase;
    letter-spacing: .09em;
    margin: 0 0 5px;
}

.dp-buy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    padding: 7px 12px;
    background: linear-gradient(135deg, #9FC252, #466740);
    border-radius: 50px;
    color: #fff !important;
    font-size: 11px;
    font-weight: 700;
    font-family: 'DM Sans', sans-serif;
    text-decoration: none;
    transition: all .2s;
    box-shadow: 0 3px 10px rgba(70, 103, 64, .25);
    white-space: nowrap;
    flex-shrink: 0;
}

.dp-buy-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 14px rgba(70, 103, 64, .38);
    color: #fff !important;
}

.dp-back-desc {
    font-size: 12px;
    color: #6B7C69 !important;
    line-height: 1.65;
    overflow-y: auto;
    flex: 1;
}

.dp-back-desc *,
.dp-back-desc p,
.dp-back-desc span,
.dp-back-desc li,
.dp-back-desc strong,
.dp-back-details h4,
.dp-back-details h5,
.dp-back-details p,
.dp-back-details span {
    color: #6B7C69 !important;
    font-size: 12px;
    margin: 0 0 3px;
    line-height: 1.6;
}

/* ── LOADING ── */
.dp-loading {
    text-align: center;
    padding: 60px 20px;
    font-size: 15px;
    color: var(--ltxt);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.dp-loading i {
    color: var(--hunter);
    font-size: 18px;
}

/* ── EMPTY STATE ── */
.dp-empty {
    text-align: center;
    padding: 80px 20px;
    color: var(--muted);
    grid-column: 1 / -1;
}

.dp-empty i {
    font-size: 44px;
    margin-bottom: 16px;
    display: block;
    color: var(--tea);
}

.dp-empty h4 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 8px;
}

.dp-empty p {
    font-size: 14px;
    color: var(--ltxt);
}

/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */

@media (max-width: 1199.98px) {
    .dp-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dp-who-card {
        flex: 0 0 340px;
    }
}

@media (max-width: 991.98px) {
    .dp-hero-inner {
        flex-direction: column;
        gap: 28px;
    }

    .dp-hero {
        padding: 52px 0 48px;
        overflow-x: hidden;
    }

    .dp-hero-bg::after {
        display: none;
    }

    .dp-who-card {
        flex: none;
        width: 100%;
    }

    .dp-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 767.98px) {
    .dp-hero {
        padding: 40px 0 36px;
    }

    .dp-hero-title {
        font-size: clamp(26px, 8vw, 38px);
    }

    .dp-hero-desc {
        font-size: 14px;
    }

    .dp-who-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .dp-cards-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .dp-toolbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .dp-search-wrap {
        width: 100%;
    }

    .dp-card-wrap .flip-scene {
        height: 220px;
    }

    .dp-discount-badge {
        flex: 0 0 95px;
    }

    .dp-discount-value {
        font-size: 32px;
    }
}

@media (max-width: 479.98px) {
    .dp-card-wrap .flip-scene {
        height: 200px;
    }

    .dp-discount-badge {
        flex: 0 0 85px;
        padding: 14px 10px;
    }

    .dp-discount-value {
        font-size: 28px;
    }

    .dp-biz-name {
        font-size: 14px;
    }
}

/* LOGIN PAGE */
/* ════════════════════════════════════════
   ACCESS + OTP PAGE
   ════════════════════════════════════════ */

/* ── SECTION ── */
.access-section {
    min-height: calc(100vh - 120px);
    background: var(--offwhite);
    display: flex;
    align-items: center;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.access-section::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(159, 194, 82, .08) 0%, transparent 70%);
    pointer-events: none;
}

.access-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(70, 103, 64, .07) 0%, transparent 70%);
    pointer-events: none;
}

/* ── LAYOUT ── */
.access-wrap {
    display: flex;
    gap: 60px;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

/* ── LEFT ── */
.access-left {
    display: none;
}

.access-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 900;
    color: var(--dark);
    line-height: 1.15;
    letter-spacing: -.025em;
    margin-bottom: 16px;
}

.access-headline em {
    font-style: italic;
    color: var(--hunter);
}

.access-sub {
    font-size: 15px;
    color: var(--ltxt);
    line-height: 1.75;
    margin-bottom: 36px;
    font-weight: 300;
}

.access-benefits {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.access-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 14px 18px;
    background: #fff;
    border: 1.5px solid var(--tea);
    border-radius: 12px;
    transition: border-color .2s, box-shadow .2s;
}

.access-benefit-item:hover {
    border-color: var(--muted);
    box-shadow: 0 4px 16px rgba(70, 103, 64, .08);
}

.access-benefit-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    background: var(--beige);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hunter);
    font-size: 15px;
}

.access-benefit-text strong {
    display: block;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2px;
}

.access-benefit-text span {
    font-size: 12.5px;
    color: var(--ltxt);
    line-height: 1.5;
}

/* ── RIGHT ── */
.access-right {
    flex: 0 0 420px;
    width: 420px;
}

/* ── CARD ── */
.access-card {
    background: #fff;
    border: 1.5px solid var(--tea);
    border-radius: 24px;
    padding: 40px 36px;
    box-shadow: 0 12px 48px rgba(70, 103, 64, .1);
    transition: opacity .2s;
}

.access-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--beige);
    border: 1px solid var(--tea);
    border-radius: 50px;
    padding: 5px 14px;
    font-size: 11px;
    font-weight: 700;
    color: var(--hunter);
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.access-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
    line-height: 1.2;
    letter-spacing: -.02em;
}

.access-card-desc {
    font-size: 13.5px;
    color: var(--ltxt);
    line-height: 1.65;
    margin-bottom: 28px;
}

/* ── PHONE INPUT ── */
.access-input-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.iti {
    width: 100%;
}

#phone {
    width: 100%;
    height: 52px;
    padding: 0 16px 0 90px;
    border: 1.5px solid var(--tea);
    border-radius: 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--dark);
    background: var(--offwhite);
    outline: none;
    transition: border-color .2s, box-shadow .2s, background .2s;
}

#phone:focus {
    border-color: var(--hunter);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(70, 103, 64, .1);
}

#phone::placeholder {
    color: var(--muted);
    font-weight: 400;
}

.iti--separate-dial-code .iti__selected-flag {
    background: transparent;
    border-radius: 10px 0 0 10px;
    padding: 0 10px 0 14px;
}

/* ── ERRORS ── */
.access-error {
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    color: #dc2626;
    font-weight: 500;
}

.access-error i {
    font-size: 12px;
}

/* ── SUBMIT BUTTON ── */
.btn-access-submit {
    width: 100%;
    height: 52px;
    margin-top: 20px;
    background: linear-gradient(135deg, var(--ygreen), var(--hunter));
    border: none;
    border-radius: 12px;
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all .25s;
    box-shadow: 0 4px 18px rgba(70, 103, 64, .3);
    letter-spacing: .02em;
}

.btn-access-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 26px rgba(70, 103, 64, .42);
}

.btn-access-submit:disabled {
    opacity: .55;
    cursor: not-allowed;
    transform: none;
}

/* ── TERMS ── */
.access-terms {
    font-size: 12px;
    color: var(--ltxt);
    line-height: 1.65;
    text-align: center;
    margin-top: 18px;
}

.access-terms a {
    color: var(--hunter);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px dotted var(--muted);
    transition: color .2s;
}

.access-terms a:hover {
    color: var(--ygreen);
    border-bottom-color: var(--ygreen);
}

/* ── TRUST STRIP ── */
.access-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px solid var(--tea);
    flex-wrap: wrap;
}

.access-trust-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11.5px;
    color: var(--ltxt);
    font-weight: 500;
}

.access-trust-item i {
    color: var(--hunter);
    font-size: 12px;
}


/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */

/* ── Tablet (≤991px) ── */
@media (max-width: 991.98px) {
    .access-section {
        padding: 48px 0 56px;
        align-items: flex-start;
    }

    .access-wrap {
        flex-direction: column;
        gap: 32px;
    }

    .access-left {
        display: none;
    }

    .access-benefits {
        max-width: 560px;
        margin: 0 auto;
    }

    .access-benefit-item {
        text-align: left;
    }

    .access-right {
        flex: none;
        width: 100%;
        max-width: 520px;
        margin: 0 auto;
    }
}

/* ── Mobile (≤575px) ── */
@media (max-width: 575.98px) {
    .access-section {
        padding: 32px 0 48px;
        min-height: unset;
    }

    .access-headline {
        font-size: 28px;
    }

    .access-sub {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .access-benefits {
        gap: 10px;
    }

    .access-benefit-item {
        padding: 12px 14px;
        gap: 10px;
    }

    .access-benefit-icon {
        width: 34px;
        height: 34px;
        font-size: 13px;
        flex-shrink: 0;
    }

    .access-benefit-text strong {
        font-size: 13px;
    }

    .access-benefit-text span {
        font-size: 12px;
    }

    .access-right {
        max-width: 100%;
    }

    .access-card {
        padding: 24px 18px 28px;
        border-radius: 18px;
        box-shadow: 0 6px 24px rgba(70, 103, 64, .08);
    }

    .access-card-badge {
        font-size: 10px;
        padding: 4px 12px;
        margin-bottom: 14px;
    }

    .access-card-title {
        font-size: 20px;
        margin-bottom: 4px;
    }

    .access-card-desc {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .access-input-label {
        font-size: 11px;
    }

    #phone {
        height: 48px;
        font-size: 14px;
        padding-left: 82px;
    }

    .btn-access-submit {
        height: 48px;
        font-size: 14px;
        margin-top: 16px;
    }

    .access-terms {
        font-size: 11.5px;
        margin-top: 14px;
    }

    .access-trust {
        gap: 12px;
        margin-top: 16px;
        padding-top: 16px;
        flex-wrap: nowrap;
        justify-content: center;
    }

    .access-trust-item {
        font-size: 10.5px;
        white-space: nowrap;
    }
}

/* ── Small phones (≤380px) ── */
@media (max-width: 380px) {
    .access-headline {
        font-size: 24px;
    }

    .access-card {
        padding: 20px 14px 24px;
    }

    .access-trust {
        flex-wrap: nowrap;
        gap: 10px;
    }
}

/* OTP SCREEN */


/* ── SECTION ── */
.otp-section {
    min-height: calc(100vh - 120px);
    background: var(--offwhite);
    display: flex;
    align-items: center;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.otp-section::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(159, 194, 82, .08) 0%, transparent 70%);
    pointer-events: none;
}

.otp-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(70, 103, 64, .07) 0%, transparent 70%);
    pointer-events: none;
}

/* ── LAYOUT ── */
.otp-wrap {
    display: flex;
    gap: 60px;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

/* ── LEFT ── */
.otp-left {
    display: none;
}

.otp-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 900;
    color: var(--dark);
    line-height: 1.15;
    letter-spacing: -.025em;
    margin-bottom: 16px;
}

.otp-headline em {
    font-style: italic;
    color: var(--hunter);
}

.otp-sub {
    font-size: 15px;
    color: var(--ltxt);
    line-height: 1.75;
    margin-bottom: 36px;
    font-weight: 300;
}

/* ── STEP TRACKER ── */
.otp-steps {
    display: flex;
    flex-direction: column;
}

.otp-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    position: relative;
    padding-bottom: 24px;
}

.otp-step:last-child {
    padding-bottom: 0;
}

.otp-step-line {
    position: absolute;
    left: 19px;
    top: 40px;
    bottom: 0;
    width: 2px;
    background: var(--tea);
}

.otp-step:last-child .otp-step-line {
    display: none;
}

.otp-step.done .otp-step-line {
    background: var(--ygreen);
}

.otp-step-num {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--tea);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--hunter);
    position: relative;
    z-index: 1;
}

.otp-step.active .otp-step-num {
    background: var(--hunter);
    border-color: var(--hunter);
    color: #fff;
    box-shadow: 0 4px 14px rgba(70, 103, 64, .3);
}

.otp-step.done .otp-step-num {
    background: var(--ygreen);
    border-color: var(--ygreen);
    color: #fff;
}

.otp-step-content {
    padding-top: 8px;
}

.otp-step-content strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 3px;
}

.otp-step-content span {
    font-size: 13px;
    color: var(--ltxt);
    line-height: 1.5;
}

/* ── RIGHT ── */
.otp-right {
    flex: 0 0 420px;
    width: 420px;
}

/* ── CARD ── */
.otp-card {
    background: #fff;
    border: 1.5px solid var(--tea);
    border-radius: 24px;
    padding: 40px 36px;
    box-shadow: 0 12px 48px rgba(70, 103, 64, .1);
}

/* ── CARD ICON ── */
.otp-card-icon {
    width: 64px;
    height: 64px;
    background: var(--beige);
    border: 2px solid var(--tea);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #25D366;
    margin-bottom: 20px;
}

/* ── CARD TITLE ── */
.otp-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
    line-height: 1.2;
    letter-spacing: -.02em;
}

.otp-card-desc {
    font-size: 13.5px;
    color: var(--ltxt);
    line-height: 1.65;
    margin-bottom: 24px;
}

.otp-card-desc strong {
    color: var(--dark);
    font-weight: 700;
}

.otp-change-link {
    margin-left: 8px;
    color: var(--hunter);
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px dotted var(--muted);
    transition: color .2s;
}

.otp-change-link:hover {
    color: var(--ygreen);
}

/* ── INPUT LABEL ── */
.otp-input-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

/* ── OTP DIGIT BOXES ── */
.otp-inputs-row {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 4px;
}

.otp-digit {
    width: 52px;
    height: 56px;
    flex: 0 0 52px;
    border: 1.5px solid var(--tea);
    border-radius: 12px;
    background: var(--offwhite);
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    text-align: center;
    outline: none;
    transition: border-color .2s, box-shadow .2s, background .2s, transform .1s;
    caret-color: var(--hunter);
    -moz-appearance: textfield;
}

.otp-digit::-webkit-outer-spin-button,
.otp-digit::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.otp-digit:focus {
    border-color: var(--hunter);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(70, 103, 64, .1);
    transform: translateY(-1px);
}

.otp-digit.filled {
    border-color: var(--ygreen);
    background: #fff;
}

.otp-digit.error,
.rounded.error {
    border-color: #dc2626 !important;
    background: #fef2f2;
    animation: otpShake .3s ease;
}

@keyframes otpShake {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-4px);
    }

    75% {
        transform: translateX(4px);
    }
}

/* ── ERROR MSG ── */
.otp-error-msg {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    color: #dc2626;
    font-weight: 500;
    margin-top: 10px;
}

.otp-error-msg i {
    font-size: 12px;
    flex-shrink: 0;
}

/* ── RESEND / TIMER ── */
.otp-resend-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 14px;
    margin-bottom: 4px;
    flex-wrap: wrap;
    gap: 8px;
}

.otp-timer {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--ltxt);
    font-weight: 500;
}

.otp-timer i {
    color: var(--muted);
    font-size: 12px;
}

#otp-countdown {
    font-weight: 700;
    color: var(--hunter);
    font-variant-numeric: tabular-nums;
    min-width: 36px;
}

.otp-resend-link {
    display: none;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--hunter);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color .2s;
}

.otp-resend-link:hover {
    color: var(--ygreen);
}

/* ── SUBMIT BUTTON ── */
.btn-otp-submit {
    width: 100%;
    height: 52px;
    margin-top: 20px;
    background: linear-gradient(135deg, var(--ygreen), var(--hunter));
    border: none;
    border-radius: 12px;
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all .25s;
    box-shadow: 0 4px 18px rgba(70, 103, 64, .3);
    letter-spacing: .02em;
}

.btn-otp-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 26px rgba(70, 103, 64, .42);
}

/* ── TRUST STRIP ── */
.otp-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px solid var(--tea);
    flex-wrap: wrap;
}

.otp-trust-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11.5px;
    color: var(--ltxt);
    font-weight: 500;
}

.otp-trust-item i {
    color: var(--hunter);
    font-size: 12px;
}

/* ── RESPONSIVE ── */
@media (max-width: 991.98px) {
    .otp-wrap {
        flex-direction: column;
        gap: 40px;
    }

    .otp-left {
        display: none;
    }

    .otp-right {
        flex: none;
        width: 100%;
        max-width: 480px;
        margin: 0 auto;
    }
}

@media (max-width: 575.98px) {
    .otp-section {
        padding: 40px 0 52px;
    }

    .otp-card {
        padding: 28px 20px;
        border-radius: 18px;
    }

    .otp-digit {
        width: 44px;
        height: 48px;
        flex: 0 0 44px;
        font-size: 20px;
        border-radius: 10px;
    }

    .otp-inputs-row {
        gap: 6px;
    }
}

/* REGISTER PAGE */

/* ── SECTION ── */
.register-section {
    background: var(--offwhite);
    padding: 56px 0 80px;
    position: relative;
    overflow: hidden;
}

.register-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(159, 194, 82, .07) 0%, transparent 70%);
    pointer-events: none;
}

.register-section::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(70, 103, 64, .06) 0%, transparent 70%);
    pointer-events: none;
}

/* ── HEADER ── */
.register-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 2;
}

.register-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--beige);
    border: 1px solid var(--tea);
    border-radius: 50px;
    padding: 5px 16px;
    font-size: 11px;
    font-weight: 700;
    color: var(--hunter);
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.register-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 900;
    color: var(--dark);
    line-height: 1.15;
    letter-spacing: -.025em;
    margin-bottom: 12px;
}

.register-title em {
    font-style: italic;
    color: var(--hunter);
}

.register-desc {
    font-size: 15px;
    color: var(--ltxt);
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 16px;
}

.register-phone-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1.5px solid var(--tea);
    border-radius: 50px;
    padding: 7px 18px;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
}

.register-phone-tag i {
    color: var(--hunter);
    font-size: 12px;
}

.register-phone-tag a {
    color: var(--hunter);
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px dotted var(--muted);
    margin-left: 4px;
    transition: color .2s;
}

.register-phone-tag a:hover {
    color: var(--ygreen);
}

/* ── FORM CARD ── */
.register-card {
    background: #fff;
    border: 1.5px solid var(--tea);
    border-radius: 24px;
    padding: 40px 44px;
    box-shadow: 0 12px 48px rgba(70, 103, 64, .08);
    max-width: 780px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* ── SECTION DIVIDERS ── */
.reg-section {
    margin-bottom: 36px;
    padding-bottom: 36px;
    border-bottom: 1px solid var(--tea);
}

.reg-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.reg-section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 22px;
    letter-spacing: -.01em;
}

.reg-section-icon {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    background: var(--beige);
    border: 1px solid var(--tea);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hunter);
    font-size: 14px;
}

/* ── GRID ── */
.reg-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.reg-field-full {
    grid-column: 1 / -1;
}

/* ── FIELD ── */
.reg-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.reg-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: .05em;
    text-transform: uppercase;
}

.req {
    color: #dc2626;
    margin-left: 2px;
}

/* ── INPUT ── */
.reg-input {
    width: 100%;
    height: 48px;
    padding: 0 14px;
    border: 1.5px solid var(--tea);
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: var(--dark);
    background: var(--offwhite);
    outline: none;
    transition: border-color .2s, box-shadow .2s, background .2s;
    appearance: auto;
}

.reg-input:focus {
    border-color: var(--hunter);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(70, 103, 64, .08);
}

.reg-input::placeholder {
    color: var(--muted);
}

.reg-input:disabled {
    opacity: .55;
    cursor: not-allowed;
}

.reg-select {
    cursor: pointer;
}

.reg-select-wrap {
    width: 100%;
}

/* ── SELECT2 OVERRIDES ── */
.select2-container--default .select2-selection--single {
    height: 48px !important;
    border: 1.5px solid var(--tea) !important;
    border-radius: 10px !important;
    background: var(--offwhite) !important;
    display: flex !important;
    align-items: center !important;
    padding: 0 14px !important;
    font-family: 'DM Sans', sans-serif !important;
    font-size: 14px !important;
    color: var(--dark) !important;
    transition: border-color .2s, box-shadow .2s !important;
}

.select2-container--default.select2-container--focus .select2-selection--single,
.select2-container--default.select2-container--open .select2-selection--single {
    border-color: var(--hunter) !important;
    box-shadow: 0 0 0 4px rgba(70, 103, 64, .08) !important;
    background: #fff !important;
    outline: none !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 48px !important;
    padding: 0 !important;
    color: var(--dark) !important;
    font-size: 14px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 46px !important;
    right: 10px !important;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: var(--muted) !important;
}

.select2-dropdown {
    border: 1.5px solid var(--tea) !important;
    border-radius: 10px !important;
    box-shadow: 0 8px 24px rgba(70, 103, 64, .12) !important;
    font-family: 'DM Sans', sans-serif !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background: var(--hunter) !important;
    color: #fff !important;
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background: var(--beige) !important;
    color: var(--hunter) !important;
}

.select2-search--dropdown .select2-search__field {
    border: 1.5px solid var(--tea) !important;
    border-radius: 8px !important;
    padding: 6px 10px !important;
    font-family: 'DM Sans', sans-serif !important;
    outline: none !important;
}

.select2-search--dropdown .select2-search__field:focus {
    border-color: var(--hunter) !important;
}

/* ── VALIDATION ERROR ── */
.reg-field-error {
    font-size: 12px;
    color: #dc2626;
    font-weight: 500;
    margin-top: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.reg-input.error {
    border-color: #dc2626 !important;
    background: #fef2f2 !important;
}

/* ── TERMS ── */
.reg-terms {
    margin: 28px 0 24px;
    padding: 18px 20px;
    background: var(--beige);
    border: 1px solid var(--tea);
    border-radius: 12px;
}

.reg-checkbox-wrap {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.reg-checkbox-wrap input[type="checkbox"] {
    display: none;
}

.reg-checkbox-box {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    border: 2px solid var(--tea);
    border-radius: 5px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
    transition: all .2s;
}

.reg-checkbox-box i {
    font-size: 11px;
    color: #fff;
    display: none;
}

.reg-checkbox-wrap input[type="checkbox"]:checked~.reg-checkbox-box {
    background: var(--hunter);
    border-color: var(--hunter);
}

.reg-checkbox-wrap input[type="checkbox"]:checked~.reg-checkbox-box i {
    display: block;
}

.reg-checkbox-text {
    font-size: 13px;
    color: var(--ltxt);
    line-height: 1.65;
}

.reg-checkbox-text a {
    color: var(--hunter);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px dotted var(--muted);
    transition: color .2s;
}

.reg-checkbox-text a:hover {
    color: var(--ygreen);
}

/* ── SUBMIT BUTTON ── */
.btn-register-submit {
    width: 100%;
    height: 52px;
    background: linear-gradient(135deg, var(--ygreen), var(--hunter));
    border: none;
    border-radius: 12px;
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all .25s;
    box-shadow: 0 4px 18px rgba(70, 103, 64, .3);
    letter-spacing: .02em;
}

.btn-register-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 26px rgba(70, 103, 64, .42);
}

/* ── RESPONSIVE ── */
@media (max-width: 767.98px) {
    .register-section {
        padding: 40px 0 60px;
    }

    .register-card {
        padding: 28px 20px;
        border-radius: 18px;
    }

    .reg-grid {
        grid-template-columns: 1fr;
    }

    .reg-field-full {
        grid-column: 1;
    }
}

@media (max-width: 575.98px) {
    .register-section {
        padding: 28px 0 48px;
    }

    .register-title {
        font-size: 26px;
    }

    .register-card {
        padding: 22px 16px;
        border-radius: 16px;
    }

    .reg-section {
        margin-bottom: 24px;
        padding-bottom: 24px;
    }

    .reg-section-title {
        font-size: 14px;
    }

    .reg-input {
        height: 46px;
        font-size: 13.5px;
    }

    .btn-register-submit {
        height: 48px;
        font-size: 14px;
    }
}

/* ══════════════════════════════════════════════════════════
   PLANS PAGE — shared CSS for page 1 and page 2
   ══════════════════════════════════════════════════════════ */

/* ── CSS VARIABLES ── */
:root {
    --silver-grad: linear-gradient(135deg, #8e9eab 0%, #c0c8cf 50%, #a0aab2 100%);
    --gold-grad: linear-gradient(135deg, #b8860b 0%, #ffd700 50%, #daa520 100%);
    --plat-grad: linear-gradient(135deg, #2c3e50 0%, #4a5568 50%, #1a202c 100%);
}

/* ══════════════════════════════════════
   HERO
   ══════════════════════════════════════ */
.plans-hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 55%, #1a3318 100%);
    padding: 72px 0 64px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.plans-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 70% at 80% 50%, rgba(159, 194, 82, .1) 0%, transparent 65%),
        radial-gradient(ellipse 40% 40% at 10% 80%, rgba(70, 103, 64, .2) 0%, transparent 60%);
    pointer-events: none;
}

.plans-hero::after {
    content: '';
    position: absolute;
    top: -60px;
    right: -80px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: rgba(159, 194, 82, .05);
    border: 1px solid rgba(159, 194, 82, .08);
    pointer-events: none;
}

.plans-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.plans-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(159, 194, 82, .12);
    border: 1px solid rgba(159, 194, 82, .25);
    border-radius: 50px;
    padding: 6px 18px;
    font-size: 11px;
    font-weight: 700;
    color: var(--ygreen);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.plans-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5.5vw, 60px);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -.025em;
    margin-bottom: 18px;
}

.plans-hero-title em {
    font-style: italic;
    color: var(--ygreen);
}

.plans-hero-desc {
    font-size: 15.5px;
    color: rgba(255, 255, 255, .62);
    line-height: 1.75;
    font-weight: 300;
}

/* ══════════════════════════════════════
   PAGE WRAPPER
   ══════════════════════════════════════ */
.plans-page {
    background: var(--offwhite);
    padding: 12px 0 80px;
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: flex-start;
}

.plans-page .container-xl {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.plans-page-head {
    text-align: center;
    margin-bottom: 32px;
}

.plans-page-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 900;
    color: var(--dark);
    letter-spacing: -.025em;
}

/* ══════════════════════════════════════
   MAIN CARD SHELL
   ══════════════════════════════════════ */
.plans-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 48px rgba(70, 103, 64, .12);
    width: 100%;
    max-width: 680px;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--tea);
    overflow: hidden;
}

/* ══════════════════════════════════════
   SHARED: DIVIDER
   ══════════════════════════════════════ */
.plan-divider {
    padding: 12px 20px;
    background: #fff;
    border-bottom: 1px solid rgba(208, 223, 190, .5);
}

.plan-divider span {
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: .12em;
    color: var(--ltxt);
    text-transform: uppercase;
}

/* ══════════════════════════════════════
   SHARED: FEATURE ROWS (base — mobile first)
   ══════════════════════════════════════ */
.plan-feature-list {
    background: #fff;
}

/* page 1 feature row */
.plan-feat-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(208, 223, 190, .5);
    gap: 10px;
}

.plan-feat-row:last-child {
    border-bottom: none;
}

.plan-feat-row:hover {
    background: #f9fbf7;
}

/* page 2 feature row */
.p2-feat-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(208, 223, 190, .5);
    gap: 10px;
}

.p2-feat-row:last-child {
    border-bottom: none;
}

.p2-feat-row:hover {
    background: #f9fbf7;
}

.plan-feat-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
    min-width: 0;
}

.plan-feat-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
}

.plan-feat-sub {
    font-size: 11px;
    color: var(--ltxt);
    font-weight: 400;
    line-height: 1.3;
}

/* ── ICON BUBBLES ── */
.plan-feat-columns {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.p2-feat-icons {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.pfi {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

.pfi.yes {
    background: rgba(70, 103, 64, .1);
    color: var(--hunter);
}

.pfi.no {
    background: rgba(239, 68, 68, .1);
    color: #ef4444;
}

/* ══════════════════════════════════════
   SHARED: SELECT BUTTONS
   ══════════════════════════════════════ */
.btn-select-plan {
    display: block;
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all .22s;
    letter-spacing: .01em;
    box-sizing: border-box;
}

.btn-select-plan:hover {
    transform: translateY(-1px);
    filter: brightness(1.07);
    color: #fff;
}

.btn-select-plan:active {
    transform: scale(.98);
}

.btn-select-plan.disabled {
    pointer-events: none;
    opacity: .55;
}

.btn-select-silver {
    background: var(--silver-grad);
    box-shadow: 0 4px 18px rgba(144, 164, 174, .4);
}

.btn-select-gold {
    background: var(--gold-grad);
    box-shadow: 0 4px 18px rgba(218, 165, 32, .4);
}

.btn-select-platinum {
    background: var(--plat-grad);
    box-shadow: 0 4px 18px rgba(44, 62, 80, .4);
}

/* ══════════════════════════════════════
   SHARED: COLUMN HEAD GRADIENTS
   ══════════════════════════════════════ */
.plan-col-head {
    border-radius: 10px;
    text-align: center;
    padding: 14px 10px;
}

.silver-head {
    background: linear-gradient(135deg, #a4b1bc 0%, #cbd4db 50%, #9ca9b5 100%);
    color: #fff;
}

.gold-head {
    background: linear-gradient(180deg, #eeb617 0%, #f7d54d 50%, #e9a606 100%);
    color: #fff;
}

.plat-head {
    background: linear-gradient(135deg, #2c3544 0%, #3e4b5f 50%, #1e2531 100%);
    color: #fff;
}

.plan-head-name {
    font-size: 16px;
    font-weight: 800;
}

.plan-head-cycle {
    font-size: 12px;
    opacity: .85;
}

/* ══════════════════════════════════════
   SIMPLE CHAPTER CARDS (page 1 chapter branch)
   ══════════════════════════════════════ */
.plans-simple-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
}

.plan-simple-card {
    background: #fff;
    border: 1.5px solid var(--tea);
    border-radius: 18px;
    padding: 20px 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    box-shadow: 0 2px 16px rgba(70, 103, 64, .07);
    transition: all .3s;
}

.plan-simple-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(70, 103, 64, .12);
}

.plan-simple-name {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
}

.plan-simple-price {
    font-size: 14px;
    color: var(--ltxt);
    line-height: 1.5;
}

/* ══════════════════════════════════════
   PAGE 1 — MOBILE TABS  (hidden ≥992px)
   ══════════════════════════════════════ */
.p1-mobile-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 12px 10px;
    background: #fff;
    border-bottom: 1px solid var(--tea);
}

.p1-tab {
    border: 1.5px solid var(--tea);
    border-radius: 10px;
    padding: 10px 6px;
    cursor: pointer;
    text-align: center;
    position: relative;
    background: #fff;
    user-select: none;
    transition: all .25s cubic-bezier(.34, 1.56, .64, 1);
    /* CRITICAL: ensure clicks always work */
    pointer-events: auto;
    -webkit-tap-highlight-color: rgba(0, 0, 0, .05);
}

.p1-tab-name {
    font-family: 'Playfair Display', serif;
    font-size: 13px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 2px;
}

.p1-tab-cycle {
    font-size: 10px;
    color: var(--ltxt);
    margin-bottom: 4px;
}

.p1-tab-price {
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    font-weight: 900;
    color: var(--dark);
}

.p1-tab-check {
    position: absolute;
    bottom: 6px;
    right: 6px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .3);
    border: 2px solid rgba(255, 255, 255, .6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
    color: #fff;
    opacity: 0;
    transition: opacity .2s;
}

/* active states */
.p1-tab--silver.p1-tab--active {
    background: var(--silver-grad);
    border-color: transparent;
    box-shadow: 0 6px 20px rgba(144, 164, 174, .45);
    transform: translateY(-2px) scale(1.02);
}

.p1-tab--gold.p1-tab--active {
    background: var(--gold-grad);
    border-color: transparent;
    box-shadow: 0 6px 20px rgba(218, 165, 32, .45);
    transform: translateY(-2px) scale(1.02);
}

.p1-tab--plat.p1-tab--active {
    background: var(--plat-grad);
    border-color: transparent;
    box-shadow: 0 6px 20px rgba(44, 62, 80, .45);
    transform: translateY(-2px) scale(1.02);
}

.p1-tab--active .p1-tab-name,
.p1-tab--active .p1-tab-cycle,
.p1-tab--active .p1-tab-price {
    color: #fff;
}

.p1-tab--active .p1-tab-check {
    opacity: 1;
}

/* PAGE 1 — MOBILE ICON SWITCHING via body data attribute */
/* Default: show silver icon only */
.plans-card--compare3 .pfi-g,
.plans-card--compare3 .pfi-p {
    display: none;
}

.plans-card--compare3 .pfi-s {
    display: flex;
}

body[data-active-plan="gold"] .plans-card--compare3 .pfi-s,
body[data-active-plan="gold"] .plans-card--compare3 .pfi-p {
    display: none;
}

body[data-active-plan="gold"] .plans-card--compare3 .pfi-g {
    display: flex;
}

body[data-active-plan="platinum"] .plans-card--compare3 .pfi-s,
body[data-active-plan="platinum"] .plans-card--compare3 .pfi-g {
    display: none;
}

body[data-active-plan="platinum"] .plans-card--compare3 .pfi-p {
    display: flex;
}

/* PAGE 1 — MOBILE SELECT BAR (hidden ≥992px) */
.p1-mobile-select-bar {
    padding: 12px 16px;
    background: #fff;
    border-top: 1px solid var(--tea);
}

/* ══════════════════════════════════════
   PAGE 2 — MOBILE HEADER (hidden ≥992px)
   ══════════════════════════════════════ */
.p2-mobile-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 12px 16px;
    background: #fff;
    border-bottom: 1px solid var(--tea);
}

.p2-mobile-plan-pill {
    border-radius: 10px;
    padding: 12px 8px;
    text-align: center;
}

.p2-pill--silver {
    background: linear-gradient(135deg, #a4b1bc 0%, #cbd4db 50%, #9ca9b5 100%);
}

.p2-pill--gold {
    background: linear-gradient(180deg, #eeb617 0%, #f7d54d 50%, #e9a606 100%);
}

.p2-pill-name {
    font-size: 15px;
    font-weight: 800;
    color: #fff;
}

.p2-pill-cycle {
    font-size: 11px;
    color: rgba(255, 255, 255, .85);
}

/* PAGE 2 — MOBILE FOOTER BUTTONS (hidden ≥992px) */
.p2-mobile-btns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 14px 16px;
    background: #fff;
    border-top: 1px solid var(--tea);
}

/* ══════════════════════════════════════
   MODAL
   ══════════════════════════════════════ */
.plans-modal {
    border-radius: 14px !important;
    border: 1.5px solid var(--tea) !important;
    overflow: hidden;
}

.plans-modal .modal-header {
    background: var(--beige);
    border-bottom: 1px solid var(--tea);
}

.plans-modal .modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
}

.plans-modal .modal-body p {
    font-size: 14px;
    color: var(--ltxt);
    margin: 0;
    line-height: 1.6;
}

.plans-modal .modal-footer {
    border-top: 1px solid var(--tea);
}

/* ══════════════════════════════════════
   DESKTOP (≥992px)
   ══════════════════════════════════════ */
@media (min-width: 992px) {

    /* hide all mobile-only blocks */
    .p1-mobile-tabs,
    .p1-mobile-select-bar,
    .p2-mobile-header,
    .p2-mobile-btns {
        display: none !important;
    }

    /* hero */
    .plans-hero {
        padding: 72px 0 64px;
    }

    .plans-hero-title {
        font-size: clamp(36px, 5.5vw, 60px);
    }

    .plans-hero-desc {
        font-size: 15.5px;
    }

    /* page */
    .plans-page {
        padding: 12px 0 80px;
    }

    /* card */
    .plans-card {
        max-width: 1100px;
        border-radius: 14px;
    }

    /* simple chapter cards: 3 columns */
    .plans-simple-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 960px;
        gap: 20px;
    }

    .plan-simple-card {
        padding: 28px 20px;
    }

    .plan-simple-name {
        font-size: 20px;
    }

    /* ── SHARED DESKTOP TABLE LAYOUT ── */

    /* hide mobile icon toggling — show all 3 icons always */
    .plans-card--compare3 .pfi-s,
    .plans-card--compare3 .pfi-g,
    .plans-card--compare3 .pfi-p {
        display: flex !important;
    }

    body[data-active-plan="gold"] .plans-card--compare3 .pfi-s,
    body[data-active-plan="gold"] .plans-card--compare3 .pfi-g,
    body[data-active-plan="gold"] .plans-card--compare3 .pfi-p {
        display: flex !important;
    }

    body[data-active-plan="platinum"] .plans-card--compare3 .pfi-s,
    body[data-active-plan="platinum"] .plans-card--compare3 .pfi-g,
    body[data-active-plan="platinum"] .plans-card--compare3 .pfi-p {
        display: flex !important;
    }

    /* desktop header row */
    .desktop-header-row {
        display: grid !important;
        grid-template-columns: 1.2fr 500px;
        align-items: center;
        padding: 0 50px;
        border-bottom: 2px solid #eee;
        background: #fff;
    }

    .header-compare-label {
        font-size: 22px;
        font-weight: 900;
        color: #1a2b3c;
        letter-spacing: -.5px;
        padding: 30px 0 10px;
    }

    .plan-header-cols {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        padding: 20px 0;
    }

    .p2-desktop-header-cols {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 20px 0;
    }

    .plan-col-head {
        padding: 18px 10px;
        border-radius: 12px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, .08);
    }

    .plan-head-name {
        font-size: 20px;
    }

    .plan-head-cycle {
        font-size: 13px;
    }

    /* page 1 feat row — desktop grid */
    .plan-feat-row {
        display: grid !important;
        grid-template-columns: 1.2fr 500px;
        align-items: center;
        padding: 20px 50px !important;
        gap: 20px;
        border-bottom: 1px solid rgba(0, 0, 0, .05);
    }

    .plan-feat-columns {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        text-align: center;
    }

    .plan-feat-columns .pfi {
        margin: 0 auto;
    }

    /* page 2 feat row — desktop grid */
    .p2-feat-row {
        display: grid !important;
        grid-template-columns: 1.2fr 500px;
        align-items: center;
        padding: 20px 50px !important;
        gap: 20px;
        border-bottom: 1px solid rgba(0, 0, 0, .05);
    }

    .p2-feat-icons {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        text-align: center;
    }

    .p2-feat-icons .pfi {
        margin: 0 auto;
    }

    /* feature text desktop */
    .plan-feat-text {
        max-width: 100%;
    }

    .plan-feat-name {
        font-size: 15px !important;
    }

    .plan-feat-sub {
        font-size: 12.5px !important;
    }

    /* divider desktop */
    .plan-divider {
        padding: 14px 50px;
    }

    /* desktop footer row */
    .desktop-footer-row {
        display: grid !important;
        grid-template-columns: 1.2fr 500px;
        align-items: center;
        padding: 30px 50px 44px;
        background: #fdfdfd;
        border-top: 1px solid #eee;
    }

    .plan-footer-cols {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .p2-desktop-footer-cols {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .btn-select-plan {
        font-size: 15px;
        padding: 13px;
    }
}

/* ══════════════════════════════════════
   TABLET (768–991px)
   ══════════════════════════════════════ */
@media (min-width: 768px) and (max-width: 991.98px) {
    .plans-card {
        max-width: 95%;
    }

    .plan-feat-row,
    .p2-feat-row {
        padding: 14px 20px !important;
    }

    .plan-divider {
        padding: 12px 20px !important;
    }

    .plan-feat-name {
        font-size: 14px !important;
    }

    .plan-feat-sub {
        font-size: 12px !important;
    }

    .p1-tab-name {
        font-size: 14px;
    }

    .p1-tab-price {
        font-size: 16px;
    }

    .p2-mobile-header {
        padding: 12px 20px;
    }

    .p2-mobile-btns {
        padding: 14px 20px;
    }
}

/* ══════════════════════════════════════
   SMALL MOBILE (≤480px)
   ══════════════════════════════════════ */
@media (max-width: 480px) {
    .plans-hero {
        padding: 48px 0 40px;
    }

    .plans-hero-title {
        font-size: 28px;
    }

    .plans-hero-desc {
        font-size: 13px;
    }

    .p1-tab {
        padding: 8px 4px;
    }

    .p1-tab-name {
        font-size: 11px;
    }

    .p1-tab-cycle {
        font-size: 9px;
    }

    .p1-tab-price {
        font-size: 13px;
    }

    .plan-feat-name {
        font-size: 12px !important;
    }

    .plan-feat-sub {
        font-size: 10.5px !important;
    }

    .p2-pill-name {
        font-size: 13px;
    }

    .p2-pill-cycle {
        font-size: 10px;
    }

    .p2-mobile-btns {
        grid-template-columns: 1fr;
    }

    .plans-simple-grid {
        max-width: 100%;
    }
}

/* ══════════════════════════════════════
   DESKTOP: hide mobile-only elements
   always via higher specificity
   ══════════════════════════════════════ */
@media (min-width: 992px) {

    .desktop-header-row,
    .desktop-footer-row {
        display: grid;
    }
}

@media (max-width: 991.98px) {

    .desktop-header-row,
    .desktop-footer-row {
        display: none !important;
    }

    .plans-page {
        padding: 24px 0 60px;
    }

    /* ── P2 mobile: 2-column tabs ── */
    .p2-tabs-override {
        grid-template-columns: repeat(2, 1fr) !important;
        max-width: 100% !important;
    }

    /* make each tab look like before */
    .p2-tabs-override .p1-tab {
        padding: 10px 6px !important;
        min-height: unset !important;
    }

    /* ── P2 mobile icon switching ── */
    @media (max-width: 991.98px) {

        /* default (silver active): show silver, hide gold */
        .p2-icon-s {
            display: flex !important;
        }

        .p2-icon-g {
            display: none !important;
        }

        /* gold active */
        body[data-p2-plan="gold"] .p2-icon-s {
            display: none !important;
        }

        body[data-p2-plan="gold"] .p2-icon-g {
            display: flex !important;
        }
    }
}

/* ══════════════════════════════════════════
   HEADER DROPDOWNS
   ══════════════════════════════════════════ */


/* ── NOTIFICATION BELL BUTTON ── */
.hdr-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #FAFCF8;
    border: 1.5px solid #D0DFBE;
    color: #1E2B1C;
    font-size: 15px;
    cursor: pointer;
    text-decoration: none;
    transition: all .2s;
    position: relative;
}

.hdr-icon-btn:hover {
    border-color: #466740;
    color: #466740;
    background: #EAF3DD;
}

.hdr-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    min-width: 18px;
    height: 18px;
    background: #dc2626;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    line-height: 1;
    border: 2px solid #fff;
    z-index: 1;
}

/* ══════════════════════════════════════
   SHARED DROPDOWN SHELL
   ══════════════════════════════════════ */
.udm-menu {
    min-width: 280px !important;
    padding: 0 !important;
    border: 1.5px solid #D0DFBE !important;
    border-radius: 18px !important;
    box-shadow: 0 16px 48px rgba(70, 103, 64, .18) !important;
    overflow: hidden !important;
    margin-top: 10px !important;
    background: #fff !important;
    z-index: 9999 !important;
}

/* ══════════════════════════════════════
   NOTIFICATIONS DROPDOWN
   ══════════════════════════════════════ */
.udm-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px 14px;
    background: #EAF3DD;
    border-bottom: 1.5px solid #D0DFBE;
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    font-weight: 700;
    color: #1E2B1C;
}

.udm-count-pill {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    background: #466740;
    color: #fff;
    padding: 2px 10px;
    border-radius: 50px;
    letter-spacing: .03em;
}

.udm-notif-list {
    max-height: 260px;
    overflow-y: auto;
}

.udm-notif-list::-webkit-scrollbar {
    width: 4px;
}

.udm-notif-list::-webkit-scrollbar-thumb {
    background: #D0DFBE;
    border-radius: 4px;
}

.udm-notif-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 13px 18px;
    border-bottom: 1px solid rgba(208, 223, 190, .5);
    text-decoration: none;
    cursor: pointer;
    transition: background .15s;
}

.udm-notif-item:last-child {
    border-bottom: none;
}

.udm-notif-item:hover {
    background: #EAF3DD;
}

.udm-notif-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #466740;
    flex-shrink: 0;
    margin-top: 5px;
}

.udm-notif-body {
    flex: 1;
    min-width: 0;
}

.udm-notif-title {
    font-size: 13px;
    font-weight: 600;
    color: #1E2B1C;
    line-height: 1.35;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.udm-notif-msg {
    font-size: 11.5px;
    color: #6B7C69;
    font-weight: 400;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.udm-notif-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 32px 20px;
    color: #6B7C69;
    font-size: 13px;
    font-family: 'DM Sans', sans-serif;
}

.udm-notif-empty i {
    font-size: 24px;
    color: #8CA98A;
}

.udm-footer {
    padding: 12px 18px;
    border-top: 1px solid #D0DFBE;
    background: #FAFCF8;
}

.udm-footer-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #466740;
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    transition: gap .2s, color .2s;
}

.udm-footer-link:hover {
    gap: 10px;
    color: #1E2B1C;
}

.udm-footer-link i {
    font-size: 11px;
}

/* ══════════════════════════════════════
   USER DROPDOWN
   ══════════════════════════════════════ */

/* Profile Header */
.udm-profile {
    display: flex !important;
    align-items: center;
    gap: 14px;
    padding: 18px 18px 16px;
    background: #EAF3DD;
    list-style: none;
    border-bottom: 1.5px solid #D0DFBE;
}

.udm-profile-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2.5px solid #466740;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(70, 103, 64, .2);
}

.udm-profile-info {
    flex: 1;
    min-width: 0;
}

.udm-profile-name {
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    font-weight: 700;
    color: #1E2B1C;
    line-height: 1.3;
    margin-bottom: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.udm-profile-email {
    font-size: 12px;
    color: #6B7C69;
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Separator */
.udm-sep {
    margin: 0 !important;
    border-color: #D0DFBE !important;
    opacity: 1 !important;
}

/* Nav Items */
.udm-nav-item {
    display: flex !important;
    align-items: center;
    gap: 13px;
    padding: 13px 18px;
    text-decoration: none;
    transition: background .15s, padding-left .15s;
    color: #1E2B1C;
}

.udm-nav-item:hover {
    background: #EAF3DD;
    padding-left: 22px;
    color: #466740;
}

.udm-nav-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(70, 103, 64, .08);
    border: 1px solid #D0DFBE;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #466740;
    flex-shrink: 0;
    transition: background .15s, color .15s, border-color .15s;
}

.udm-nav-item:hover .udm-nav-icon {
    background: #466740;
    color: #fff;
    border-color: #466740;
}

.udm-nav-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.udm-nav-label {
    font-size: 13.5px;
    font-weight: 600;
    color: #1E2B1C;
    line-height: 1.3;
    transition: color .15s;
    font-family: 'DM Sans', sans-serif;
}

.udm-nav-item:hover .udm-nav-label {
    color: #466740;
}

.udm-nav-sub {
    font-size: 11.5px;
    color: #6B7C69;
    font-weight: 400;
    font-family: 'DM Sans', sans-serif;
}

.udm-nav-arrow {
    font-size: 10px;
    color: #8CA98A;
    flex-shrink: 0;
    transition: transform .18s, color .18s;
}

.udm-nav-item:hover .udm-nav-arrow {
    transform: translateX(3px);
    color: #466740;
}

/* Logout */
.udm-logout-wrap {
    padding: 12px 18px 16px;
    list-style: none;
}

.udm-logout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 11px 18px;
    background: transparent;
    border: 1.5px solid #fca5a5;
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    color: #dc2626;
    cursor: pointer;
    transition: all .2s;
}

.udm-logout-btn:hover {
    background: #fef2f2;
    border-color: #dc2626;
    color: #dc2626;
}

.udm-logout-btn i {
    font-size: 13px;
}

/* ── RESPONSIVE ── */
@media (max-width: 575.98px) {
    .udm-menu {
        min-width: 260px !important;
    }

    .udm-profile {
        padding: 14px 16px;
    }

    .udm-profile-avatar {
        width: 42px;
        height: 42px;
    }

    .udm-nav-item {
        padding: 11px 16px;
    }

    .udm-logout-wrap {
        padding: 10px 16px 14px;
    }
}

/* ══════════════════════════════════════
   BLOGS PAGE
   ══════════════════════════════════════ */

/* ── HERO ── */
.blogs-hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 55%, #1a3318 100%);
    padding: 72px 0 64px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.blogs-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 70% at 80% 50%, rgba(159, 194, 82, .1) 0%, transparent 65%),
        radial-gradient(ellipse 40% 40% at 10% 80%, rgba(70, 103, 64, .2) 0%, transparent 60%);
    pointer-events: none;
}

.blogs-hero::after {
    content: '';
    position: absolute;
    top: -60px;
    right: -80px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: rgba(159, 194, 82, .05);
    border: 1px solid rgba(159, 194, 82, .08);
    pointer-events: none;
}

.blogs-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 680px;
    margin: 0 auto;
}

.blogs-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(159, 194, 82, .12);
    border: 1px solid rgba(159, 194, 82, .25);
    border-radius: 50px;
    padding: 6px 18px;
    font-size: 11px;
    font-weight: 700;
    color: var(--ygreen);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.blogs-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5.5vw, 60px);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -.025em;
    margin-bottom: 16px;
}

.blogs-hero-title em {
    font-style: italic;
    color: var(--ygreen);
}

.blogs-hero-desc {
    font-size: 15.5px;
    color: rgba(255, 255, 255, .62);
    line-height: 1.75;
    font-weight: 300;
}

/* ── MAIN SECTION ── */
.blogs-main {
    background: var(--offwhite);
    padding: 60px 0 80px;
}

/* ── GRID ── */
.blogs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ── BLOG CARD ── */
.blog-card {
    background: var(--white);
    border: 1.5px solid var(--tea);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: all .3s cubic-bezier(.4, 0, .2, 1);
    box-shadow: 0 2px 12px rgba(70, 103, 64, .06);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 40px rgba(70, 103, 64, .14);
    border-color: rgba(70, 103, 64, .25);
    color: inherit;
}

/* Image */
.blog-card-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--dark2);
    flex-shrink: 0;
}

.blog-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .45s ease;
}

.blog-card:hover .blog-card-img {
    transform: scale(1.05);
}

.blog-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(30, 43, 28, .35) 100%);
    pointer-events: none;
}

/* Body */
.blog-card-body {
    padding: 22px 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.blog-card-cat {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    color: var(--hunter);
    letter-spacing: .08em;
    text-transform: uppercase;
}

.blog-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.35;
    letter-spacing: -.01em;
    margin: 0;
    transition: color .2s;
}

.blog-card:hover .blog-card-title {
    color: var(--hunter);
}

.blog-card-excerpt {
    font-size: 13.5px;
    color: var(--ltxt);
    line-height: 1.65;
    font-weight: 400;
    flex: 1;
}

/* Footer */
.blog-card-footer {
    padding-top: 12px;
    border-top: 1px solid var(--tea);
    margin-top: auto;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--hunter);
    transition: gap .2s, color .2s;
}

.blog-card:hover .blog-read-more {
    gap: 10px;
    color: var(--dark);
}

.blog-read-more i {
    font-size: 12px;
    transition: transform .2s;
}

.blog-card:hover .blog-read-more i {
    transform: translateX(3px);
}

/* ── EMPTY STATE ── */
.blogs-empty {
    text-align: center;
    padding: 80px 20px;
    color: var(--muted);
}

.blogs-empty i {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
    color: var(--tea);
}

.blogs-empty h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 8px;
}

.blogs-empty p {
    font-size: 14px;
    color: var(--ltxt);
}

/* ── RESPONSIVE ── */
@media (max-width: 991.98px) {
    .blogs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blogs-hero {
        padding: 56px 0 48px;
    }
}

@media (max-width: 575.98px) {
    .blogs-hero {
        padding: 44px 0 36px;
    }

    .blogs-hero-title {
        font-size: 32px;
    }

    .blogs-hero-desc {
        font-size: 14px;
    }

    .blogs-main {
        padding: 36px 0 56px;
    }

    .blogs-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .blog-card-body {
        padding: 18px 18px 16px;
    }

    .blog-card-title {
        font-size: 16px;
    }
}

/* blog detail page */
/* ── HERO ── */
.blogdt-hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 55%, #1a3318 100%);
    padding: 52px 0 48px;
    position: relative;
    overflow: hidden;
}

.blogdt-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 70% at 80% 50%, rgba(159, 194, 82, .08) 0%, transparent 65%),
        radial-gradient(ellipse 40% 40% at 10% 80%, rgba(70, 103, 64, .18) 0%, transparent 60%);
    pointer-events: none;
}

.blogdt-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 820px;
}

/* Breadcrumb */
.blogdt-breadcrumb {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 20px;
    font-size: 12.5px;
    flex-wrap: wrap;
}

.blogdt-breadcrumb a {
    color: rgba(255, 255, 255, .5);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color .2s;
}

.blogdt-breadcrumb a:hover {
    color: var(--ygreen);
}

.blogdt-breadcrumb .sep {
    color: rgba(255, 255, 255, .2);
    font-size: 9px;
}

.blogdt-breadcrumb .current {
    color: rgba(255, 255, 255, .75);
    font-weight: 500;
}

/* Meta pills */
.blogdt-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.blogdt-cat-pill,
.blogdt-date-pill,
.blogdt-author-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.blogdt-cat-pill {
    background: rgba(159, 194, 82, .15);
    border: 1px solid rgba(159, 194, 82, .3);
    color: var(--ygreen);
}

.blogdt-date-pill,
.blogdt-author-pill {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .7);
}

/* Title */
.blogdt-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 4vw, 46px);
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    letter-spacing: -.025em;
    margin: 0;
}

/* ── MAIN ── */
.blogdt-main {
    background: var(--offwhite);
    padding: 52px 0 80px;
}

.blogdt-layout {
    display: flex;
    gap: 28px;
    align-items: flex-start;
}

/* ── ARTICLE ── */
.blogdt-article {
    flex: 1;
    min-width: 0;
    background: #fff;
    border: 1.5px solid var(--tea);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(70, 103, 64, .07);
}

.blogdt-feat-img-wrap {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--dark2);
    flex-shrink: 0;
}

.blogdt-feat-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ══════════════════════════════════════
   BLOG CONTENT — rich typography
   ══════════════════════════════════════ */
.blogdt-content {
    padding: 40px 44px 36px;
    font-size: 15.5px;
    color: #4a5568;
    line-height: 1.9;
    font-weight: 400;
    font-family: 'DM Sans', sans-serif;
}

/* ── First paragraph — lead style ── */
.blogdt-content>p:first-of-type {
    font-size: 16.5px;
    color: #2d3748;
    line-height: 1.85;
    font-weight: 400;
    border-left: 4px solid #466740;
    padding-left: 18px;
    margin-bottom: 24px;
}

/* ── All paragraphs ── */
.blogdt-content p {
    margin-bottom: 18px;
    color: #4a5568;
}

/* ── H2: Section headings like "Chief Guest", "VIP Guests" ── */
.blogdt-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 800;
    color: #1E2B1C;
    margin: 44px 0 16px;
    padding: 14px 20px;
    background: linear-gradient(135deg, #EAF3DD 0%, #f4f9ee 100%);
    border-left: 5px solid #466740;
    border-radius: 0 10px 10px 0;
    letter-spacing: -.01em;
    line-height: 1.3;
}

/* ── H3: Sub-sections ── */
.blogdt-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(15px, 2vw, 18px);
    font-weight: 700;
    color: #466740;
    margin: 32px 0 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -.01em;
}

.blogdt-content h3::before {
    content: '';
    display: block;
    width: 22px;
    height: 3px;
    background: #9FC252;
    border-radius: 2px;
    flex-shrink: 0;
}

/* ── H4: Labels like "Awardees:" ── */
.blogdt-content h4 {
    font-size: 13px;
    font-weight: 700;
    color: #466740;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin: 24px 0 10px;
}

/* ── Strong / Bold — names in content ── */
.blogdt-content strong,
.blogdt-content b {
    color: #1E2B1C;
    font-weight: 700;
}

/* ── Links ── */
.blogdt-content a {
    color: #466740;
    text-decoration: underline;
    text-decoration-color: rgba(70, 103, 64, .3);
    text-underline-offset: 3px;
    font-weight: 500;
    transition: color .2s;
}

.blogdt-content a:hover {
    color: #9FC252;
}

/* ── HR: visual section break ── */
.blogdt-content hr {
    border: none;
    height: 1px;
    background: linear-gradient(to right, #D0DFBE, transparent);
    margin: 36px 0;
}

/* ── Blockquote: shabad/quotes ── */
.blogdt-content blockquote {
    position: relative;
    background: #EAF3DD;
    border-left: 5px solid #466740;
    border-radius: 0 14px 14px 0;
    padding: 24px 28px 20px 52px;
    margin: 28px 0;
    font-style: italic;
    color: #2A3828;
    font-size: 16px;
    line-height: 1.75;
}

.blogdt-content blockquote::before {
    content: '\201C';
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    color: #8CA98A;
    position: absolute;
    top: 8px;
    left: 14px;
    line-height: 1;
}

/* ── Images ── */
.blogdt-content img {
    width: 100%;
    border-radius: 12px;
    margin: 24px 0;
    border: 1.5px solid #D0DFBE;
    box-shadow: 0 4px 20px rgba(70, 103, 64, .08);
    display: block;
}

/* ══════════════════════════════════════
   LISTS — name/company rows
   Each <li> is a "Name — Company" pair
   ══════════════════════════════════════ */
.blogdt-content ul,
.blogdt-content ol {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.blogdt-content ul li,
.blogdt-content ol li {
    position: relative;
    display: flex;
    align-items: baseline;
    gap: 0;
    padding: 11px 18px 11px 48px;
    background: #fff;
    border: 1.5px solid #EAF3DD;
    border-radius: 10px;
    font-size: 14.5px;
    color: #2d3748;
    line-height: 1.5;
    transition: border-color .18s, background .18s;
}

.blogdt-content ul li:hover,
.blogdt-content ol li:hover {
    border-color: #D0DFBE;
    background: #FAFCF8;
}

/* Green number/dot on left */
.blogdt-content ul li::before {
    content: '';
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #466740;
    flex-shrink: 0;
}

.blogdt-content ol {
    counter-reset: s4b-counter;
}

.blogdt-content ol li {
    counter-increment: s4b-counter;
}

.blogdt-content ol li::before {
    content: counter(s4b-counter);
    position: absolute;
    left: 13px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #466740;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-style: normal;
}

/* Name bold, company muted — when content has "Name    Company" */
.blogdt-content ul li strong,
.blogdt-content ol li strong {
    color: #1E2B1C;
    font-weight: 700;
    margin-right: 6px;
    white-space: nowrap;
}

/* ── Tables (fallback) ── */
.blogdt-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 14px;
    border-radius: 10px;
    overflow: hidden;
    border: 1.5px solid #D0DFBE;
}

.blogdt-content table th {
    background: #EAF3DD;
    color: #1E2B1C;
    font-weight: 700;
    padding: 12px 16px;
    text-align: left;
    border-bottom: 2px solid #D0DFBE;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.blogdt-content table td {
    padding: 11px 16px;
    color: #4a5568;
    border-bottom: 1px solid #EAF3DD;
    vertical-align: top;
}

.blogdt-content table tr:last-child td {
    border-bottom: none;
}

.blogdt-content table tr:hover td {
    background: #FAFCF8;
}

/* ══════════════════════════════════════
   CARD SECTION LAYOUT
   Generated by JS splitter
   ══════════════════════════════════════ */

/* ── INTRO BLOCK ── */
.bc-intro {
    padding: 28px 32px 20px;
    border-bottom: 1px solid #EAF3DD;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .5s ease, transform .5s ease;
}

.bc-intro.s4b-visible {
    opacity: 1;
    transform: none;
}

.bc-intro>p:first-of-type {
    font-size: 16px;
    color: #2d3748;
    line-height: 1.85;
    padding-left: 16px;
    border-left: 4px solid #466740;
    margin-bottom: 16px;
}

.bc-intro p {
    margin-bottom: 14px;
    color: #4a5568;
    font-size: 15px;
    line-height: 1.85;
}

.bc-intro strong,
.bc-intro b {
    color: #1E2B1C;
    font-weight: 700;
}

.bc-intro blockquote {
    background: #EAF3DD;
    border-left: 5px solid #466740;
    border-radius: 0 12px 12px 0;
    padding: 18px 22px 16px 48px;
    margin: 20px 0;
    font-style: italic;
    color: #2A3828;
    font-size: 15px;
    line-height: 1.7;
    position: relative;
}

.bc-intro blockquote::before {
    content: '\201C';
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    color: #8CA98A;
    position: absolute;
    top: 6px;
    left: 12px;
    line-height: 1;
}

/* ── SECTION CARD ── */
.bc-card {
    border: 1.5px solid #EAF3DD;
    border-radius: 14px;
    overflow: hidden;
    margin: 20px 0;
    background: #fff;
    box-shadow: 0 2px 12px rgba(70, 103, 64, .05);
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .5s ease, transform .5s ease;
}

.bc-card.s4b-visible {
    opacity: 1;
    transform: none;
}

.bc-card:hover {
    box-shadow: 0 6px 24px rgba(70, 103, 64, .1);
}

/* Card header */
.bc-card-hdr {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    background: linear-gradient(135deg, #EAF3DD 0%, #f4f9ee 100%);
    border-bottom: 1.5px solid #D0DFBE;
}

.bc-card-num {
    font-family: 'Playfair Display', serif;
    font-size: 11px;
    font-weight: 900;
    color: #8CA98A;
    letter-spacing: .1em;
    flex-shrink: 0;
    background: #fff;
    border: 1.5px solid #D0DFBE;
    border-radius: 6px;
    padding: 3px 8px;
    line-height: 1;
}

.bc-card-hdr h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(16px, 2vw, 20px) !important;
    font-weight: 800 !important;
    color: #1E2B1C !important;
    margin: 0 !important;
    padding: 0 !important;
    background: none !important;
    border: none !important;
    border-radius: 0 !important;
    letter-spacing: -.01em;
    line-height: 1.3;
}

/* Card body */
.bc-card-body {
    padding: 22px 24px;
}

.bc-card-body p {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 14px;
}

.bc-card-body p:last-child {
    margin-bottom: 0;
}

.bc-card-body strong,
.bc-card-body b {
    color: #1E2B1C;
    font-weight: 700;
}

.bc-card-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    font-weight: 700;
    color: #466740;
    margin: 18px 0 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bc-card-body h3::before {
    content: '';
    display: block;
    width: 18px;
    height: 3px;
    background: #9FC252;
    border-radius: 2px;
    flex-shrink: 0;
}

.bc-card-body h4 {
    font-size: 11px;
    font-weight: 700;
    color: #466740;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin: 18px 0 8px;
}

.bc-card-body blockquote {
    background: #EAF3DD;
    border-left: 4px solid #466740;
    border-radius: 0 10px 10px 0;
    padding: 16px 20px 14px 44px;
    margin: 16px 0;
    font-style: italic;
    color: #2A3828;
    font-size: 15px;
    line-height: 1.7;
    position: relative;
}

.bc-card-body blockquote::before {
    content: '\201C';
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    color: #8CA98A;
    position: absolute;
    top: 6px;
    left: 10px;
    line-height: 1;
}

/* ── PERSONS GRID ── */
.bc-persons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin: 12px 0 4px;
}

.bc-person-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    background: #FAFCF8;
    border: 1.5px solid #EAF3DD;
    border-radius: 10px;
    font-size: 13.5px;
    color: #2d3748;
    line-height: 1.4;
    transition: border-color .2s, background .2s;
    position: relative;
    padding-left: 36px;
}

.bc-person-card::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #466740;
    flex-shrink: 0;
}

.bc-person-card:hover {
    border-color: #D0DFBE;
    background: #EAF3DD;
}

.bc-person-card strong,
.bc-person-card b {
    color: #1E2B1C;
    font-weight: 700;
    margin-right: 4px;
}

/* single column on narrow cards */
@media (max-width: 600px) {
    .bc-persons-grid {
        grid-template-columns: 1fr;
    }
}

/* ── RESPONSIVE ── */
@media (max-width: 575.98px) {
    .bc-intro {
        padding: 20px 18px 16px;
    }

    .bc-card-hdr {
        padding: 14px 16px;
        gap: 12px;
    }

    .bc-card-body {
        padding: 16px 18px;
    }

    .bc-card-hdr h2 {
        font-size: 15px !important;
    }
}

/* Article footer */
.blogdt-article-footer {
    padding: 20px 40px 28px;
    border-top: 1px solid var(--tea);
    background: var(--offwhite);
}

.btn-back-blogs {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--hunter);
    text-decoration: none;
    padding: 9px 20px;
    border: 1.5px solid var(--tea);
    border-radius: 50px;
    background: #fff;
    transition: all .22s;
}

.btn-back-blogs:hover {
    border-color: var(--hunter);
    background: var(--beige);
    color: var(--dark);
    gap: 12px;
}

.btn-back-blogs i {
    font-size: 12px;
}

/* ── SIDEBAR ── */
.blogdt-sidebar {
    flex: 0 0 280px;
    width: 280px;
    position: sticky;
    top: 90px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* Ad card */
.blogdt-ad-card {
    background: #fff;
    border: 1.5px solid var(--tea);
    border-radius: 14px;
    overflow: hidden;
}

.blogdt-ad-label {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 12px 16px;
    background: var(--beige);
    border-bottom: 1px solid var(--tea);
    font-size: 11px;
    font-weight: 700;
    color: var(--ltxt);
    text-transform: uppercase;
    letter-spacing: .08em;
}

.blogdt-ad-label i {
    color: var(--hunter);
    font-size: 12px;
}

.blogdt-ad-body {
    padding: 14px;
}

.blogdt-ad-body img {
    width: 100%;
    border-radius: 8px;
    display: block;
}

/* CTA card */
.blogdt-cta-card {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 60%, #1a3318 100%);
    border-radius: 14px;
    padding: 26px 22px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.blogdt-cta-card::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(159, 194, 82, .08);
    border: 1px solid rgba(159, 194, 82, .1);
    pointer-events: none;
}

.blogdt-cta-icon {
    width: 52px;
    height: 52px;
    background: rgba(159, 194, 82, .15);
    border: 1px solid rgba(159, 194, 82, .3);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ygreen);
    font-size: 20px;
    margin: 0 auto 14px;
}

.blogdt-cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.3;
}

.blogdt-cta-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, .6);
    line-height: 1.65;
    margin-bottom: 18px;
}

.blogdt-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 22px;
    background: linear-gradient(135deg, var(--ygreen), #72A020);
    color: #fff;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(159, 194, 82, .35);
    transition: all .25s;
}

.blogdt-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(159, 194, 82, .5);
    color: #fff;
}

/* ── RESPONSIVE ── */
@media (max-width: 991.98px) {
    .blogdt-layout {
        flex-direction: column;
    }

    .blogdt-sidebar {
        flex: none;
        width: 100%;
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .blogdt-ad-card,
    .blogdt-cta-card {
        flex: 1;
        min-width: 240px;
    }

    .blogdt-content {
        padding: 26px 28px;
    }

    .blogdt-article-footer {
        padding: 16px 28px 22px;
    }
}

@media (max-width: 575.98px) {
    .blogdt-hero {
        padding: 36px 0 32px;
    }

    .blogdt-title {
        font-size: 24px;
    }

    .blogdt-main {
        padding: 32px 0 56px;
    }

    .blogdt-content {
        padding: 20px 18px;
        font-size: 14.5px;
    }

    .blogdt-content>p:first-of-type {
        font-size: 15px;
    }

    .blogdt-content h2 {
        padding: 12px 16px;
        font-size: 17px;
    }

    .blogdt-article-footer {
        padding: 14px 18px 20px;
    }

    .blogdt-sidebar {
        flex-direction: column;
    }

    .blogdt-ad-card,
    .blogdt-cta-card {
        min-width: unset;
    }
}

/* NEWSLETTER PAGE */

/* ── HERO (photo background) ── */
.nl-hero {
    position: relative;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    padding: 100px 0 88px;
    overflow: hidden;
    min-height: 480px;
    display: flex;
    align-items: center;
}

/* Dark gradient overlay — keeps text readable, lets photo shine */
.nl-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(30,43,28,.82) 0%,
        rgba(42,56,40,.65) 40%,
        rgba(10,15,10,.55) 100%
    );
    z-index: 1;
}

.nl-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 680px;
}

.nl-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(159,194,82,.15);
    border: 1px solid rgba(159,194,82,.3);
    border-radius: 50px;
    padding: 6px 18px;
    font-size: 11px;
    font-weight: 700;
    color: var(--ygreen);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 18px;
    backdrop-filter: blur(6px);
}

.nl-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(40px, 6vw, 68px);
    font-weight: 900;
    color: #fff;
    line-height: 1.05;
    letter-spacing: -.025em;
    margin-bottom: 16px;
    text-shadow: 0 2px 20px rgba(0,0,0,.3);
}

.nl-hero-desc {
    font-size: 15.5px;
    color: rgba(255,255,255,.75);
    line-height: 1.75;
    font-weight: 300;
    max-width: 520px;
    text-shadow: 0 1px 8px rgba(0,0,0,.2);
}

/* ── MAIN ── */
.nl-main {
    background: var(--offwhite);
    padding: 52px 0 80px;
}

/* ── TOOLBAR ── */
.nl-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    gap: 12px;
    flex-wrap: wrap;
}

.nl-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
    letter-spacing: -.01em;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nl-section-title i {
    color: var(--hunter);
    font-size: 18px;
}

/* ── GRID ── */
.nl-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ── NEWSLETTER CARD ── */
.nl-card {
    background: var(--white);
    border: 1.5px solid var(--tea);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: all .3s cubic-bezier(.4,0,.2,1);
    box-shadow: 0 2px 12px rgba(70,103,64,.06);
}

.nl-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 40px rgba(70,103,64,.14);
    border-color: rgba(70,103,64,.25);
    color: inherit;
}

/* Image */
.nl-card-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--dark2);
    flex-shrink: 0;
}

.nl-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform .45s ease;
}

.nl-card:hover .nl-card-img {
    transform: scale(1.04);
}

/* Read overlay */
.nl-card-read-overlay {
    position: absolute;
    inset: 0;
    background: rgba(30,43,28,.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s;
}

.nl-card:hover .nl-card-read-overlay {
    opacity: 1;
}

.nl-card-read-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: rgba(255,255,255,.15);
    border: 1.5px solid rgba(255,255,255,.6);
    border-radius: 50px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    backdrop-filter: blur(10px);
    transform: translateY(8px);
    transition: transform .3s;
}

.nl-card:hover .nl-card-read-btn {
    transform: translateY(0);
}

/* Body */
.nl-card-body {
    padding: 18px 20px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border-top: 1px solid var(--tea);
}

.nl-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.35;
    margin: 0;
    flex: 1;
    transition: color .2s;
}

.nl-card:hover .nl-card-title {
    color: var(--hunter);
}

.nl-card-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--beige);
    border: 1px solid var(--tea);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hunter);
    font-size: 12px;
    flex-shrink: 0;
    transition: all .2s;
}

.nl-card:hover .nl-card-icon {
    background: var(--hunter);
    color: #fff;
    border-color: var(--hunter);
    transform: translateX(3px);
}

/* ── EMPTY STATE ── */
.nl-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
}

.nl-empty i {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
    color: var(--tea);
}

.nl-empty h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 8px;
}

.nl-empty p { font-size: 14px; color: var(--ltxt); }

/* ── LOADING ── */
.nl-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 32px 20px;
    font-size: 14px;
    color: var(--ltxt);
}

.nl-loading i { color: var(--hunter); font-size: 18px; }

/* ── PAGINATION ── */
.nl-pagination {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    margin-top: 12px;
}

.nl-pagination .pagination {
    gap: 5px;
    flex-wrap: wrap;
    justify-content: center;
}

.nl-pagination .pagination .page-item .page-link {
    min-width: 38px;
    height: 38px;
    border: 1.5px solid var(--tea);
    border-radius: 10px !important;
    color: var(--dark);
    font-size: 13.5px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
    font-family: 'DM Sans', sans-serif;
    background: #fff;
    padding: 0 10px;
}

.nl-pagination .pagination .page-item .page-link:hover {
    background: var(--beige);
    border-color: var(--hunter);
    color: var(--hunter);
}

.nl-pagination .pagination .page-item.active .page-link {
    background: linear-gradient(135deg, var(--ygreen), var(--hunter));
    border-color: transparent;
    color: #fff;
    box-shadow: 0 3px 12px rgba(70,103,64,.3);
}

.nl-pagination .pagination .page-item.disabled .page-link {
    opacity: .4;
    cursor: not-allowed;
}

/* ── RESPONSIVE ── */
@media (max-width: 991.98px) {
    .nl-grid { grid-template-columns: repeat(2, 1fr); }
    .nl-hero { padding: 72px 0 64px; min-height: 360px; }
    .nl-hero-title { font-size: clamp(34px, 8vw, 52px); }
}

@media (max-width: 575.98px) {
    .nl-hero { padding: 56px 0 52px; min-height: 300px; }
    .nl-hero-title { font-size: 34px; }
    .nl-hero-desc { font-size: 14px; }
    .nl-main { padding: 36px 0 56px; }
    .nl-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}

@media (max-width: 380px) {
    .nl-grid { grid-template-columns: 1fr; }
}
/* GALLERY PAGE */

/* ── HERO ── */
.gallery-hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 55%, #1a3318 100%);
    padding: 72px 0 64px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.gallery-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 70% at 80% 50%, rgba(159,194,82,.1) 0%, transparent 65%),
        radial-gradient(ellipse 40% 40% at 10% 80%, rgba(70,103,64,.2) 0%, transparent 60%);
    pointer-events: none;
}

.gallery-hero::after {
    content: '';
    position: absolute;
    top: -60px; right: -80px;
    width: 380px; height: 380px;
    border-radius: 50%;
    background: rgba(159,194,82,.05);
    border: 1px solid rgba(159,194,82,.08);
    pointer-events: none;
}

.gallery-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.gallery-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(159,194,82,.12);
    border: 1px solid rgba(159,194,82,.25);
    border-radius: 50px;
    padding: 6px 18px;
    font-size: 11px;
    font-weight: 700;
    color: var(--ygreen);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.gallery-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -.025em;
    margin-bottom: 16px;
}

.gallery-hero-title em {
    font-style: italic;
    color: var(--ygreen);
}

.gallery-hero-desc {
    font-size: 15.5px;
    color: rgba(255,255,255,.62);
    line-height: 1.75;
    font-weight: 300;
}

/* ── MAIN ── */
.gallery-main {
    background: var(--offwhite);
    padding: 52px 0 80px;
}

/* ── TOOLBAR ── */
.gallery-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    gap: 12px;
    flex-wrap: wrap;
}

.gallery-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
    letter-spacing: -.01em;
    display: flex;
    align-items: center;
    gap: 10px;
}

.gallery-section-title i {
    color: var(--hunter);
    font-size: 18px;
}

/* ── GRID ── */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

/* ── GALLERY CARD (used in list.blade) ── */
.gallery-card {
    background: var(--white);
    border: 1.5px solid var(--tea);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: all .3s cubic-bezier(.4,0,.2,1);
    box-shadow: 0 2px 12px rgba(70,103,64,.06);
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 40px rgba(70,103,64,.14);
    border-color: rgba(70,103,64,.25);
    color: inherit;
}

/* Image */
.gallery-card-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--dark2);
    flex-shrink: 0;
}

.gallery-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .45s ease;
}

.gallery-card:hover .gallery-card-img {
    transform: scale(1.06);
}

.gallery-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(30,43,28,.5) 100%);
    opacity: 0;
    transition: opacity .3s;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-card:hover .gallery-card-overlay {
    opacity: 1;
}

.gallery-card-overlay-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    border: 2px solid rgba(255,255,255,.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    backdrop-filter: blur(8px);
    transform: scale(.8);
    transition: transform .3s;
}

.gallery-card:hover .gallery-card-overlay-icon {
    transform: scale(1);
}

/* Body */
.gallery-card-body {
    padding: 16px 18px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.gallery-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
    margin: 0;
    transition: color .2s;
    flex: 1;
}

.gallery-card:hover .gallery-card-title {
    color: var(--hunter);
}

.gallery-card-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--beige);
    border: 1px solid var(--tea);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hunter);
    font-size: 12px;
    flex-shrink: 0;
    transition: all .2s;
}

.gallery-card:hover .gallery-card-arrow {
    background: var(--hunter);
    color: #fff;
    border-color: var(--hunter);
    transform: translateX(3px);
}

/* ── EMPTY STATE ── */
.gallery-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
    color: var(--muted);
}

.gallery-empty i {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
    color: var(--tea);
}

.gallery-empty h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 8px;
}

.gallery-empty p {
    font-size: 14px;
    color: var(--ltxt);
}

/* ── LOADING ── */
.gallery-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 32px 20px;
    font-size: 14px;
    color: var(--ltxt);
}

.gallery-loading i {
    color: var(--hunter);
    font-size: 18px;
}

/* ── PAGINATION ── */
.gallery-pagination {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    margin-top: 12px;
}

.gallery-pagination .pagination {
    gap: 5px;
    flex-wrap: wrap;
    justify-content: center;
}

.gallery-pagination .pagination .page-item .page-link {
    min-width: 38px;
    height: 38px;
    border: 1.5px solid var(--tea);
    border-radius: 10px !important;
    color: var(--dark);
    font-size: 13.5px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
    font-family: 'DM Sans', sans-serif;
    background: #fff;
    padding: 0 10px;
}

.gallery-pagination .pagination .page-item .page-link:hover {
    background: var(--beige);
    border-color: var(--hunter);
    color: var(--hunter);
}

.gallery-pagination .pagination .page-item.active .page-link {
    background: linear-gradient(135deg, var(--ygreen), var(--hunter));
    border-color: transparent;
    color: #fff;
    box-shadow: 0 3px 12px rgba(70,103,64,.3);
}

.gallery-pagination .pagination .page-item.disabled .page-link {
    opacity: .4;
    cursor: not-allowed;
}

/* ── RESPONSIVE ── */
@media (max-width: 991.98px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-hero { padding: 56px 0 48px; }
}

@media (max-width: 575.98px) {
    .gallery-hero { padding: 44px 0 36px; }
    .gallery-hero-title { font-size: 28px; }
    .gallery-main { padding: 36px 0 56px; }
    .gallery-grid { grid-template-columns: 1fr; gap: 16px; }
}
