/* ── 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;
}

.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;
}


.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;
}




.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;
}

/* ── 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;
}





/* 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);
}

/* Mobile sponsor copy — hidden on desktop, shown only on mobile ≤991px */
.evt-sponsor-mobile {
    display: none;
}


/* ════════════════════════════════════════
   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-badge i,
.dird-verified-badge i {
    display: none !important;
}

/* ══════════════════════════════════════
   VERIFIED BADGE — profile photo overlay
   ══════════════════════════════════════ */

/* Directory card member photo wrap needs relative positioning */
.dir-member-photo-wrap {
    position: relative;
    width: 72px;
    height: 72px;
    flex-shrink: 0;
}

/* ══════════════════════════════════════
   VERIFIED BADGE — smooth scalloped seal
   ══════════════════════════════════════ */

/* Hide the Font Awesome icon — SVG background handles the full badge */
.dir-member-verified-badge i,
.dird-verified-badge i {
    display: none !important;
}

/* Hide icon ONLY inside photo wrap (not in the text pill below) */
.dir-member-photo-wrap .dir-member-verified i {
    display: none !important;
}

/* ── VERIFIED MEMBER TEXT PILL (below name) ── */
.dir-member-verified {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    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: 11px;
    color: #9FC252;
}

.dir-member-guest {
    background: rgba(140, 169, 138, .12);
    border-color: rgba(140, 169, 138, .3);
    color: var(--ltxt);
}

.dir-member-guest i {
    color: var(--muted);
}

/* The photo div uses class dir-member-verified — style it as the scalloped badge */
.dir-member-photo-wrap .dir-member-verified {
    position: absolute;
    bottom: -3px;
    right: -3px;
    width: 20px;
    height: 20px;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
    font-size: 0 !important;
    z-index: 2;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0%25' y1='0%25' x2='100%25' y2='100%25'%3E%3Cstop offset='0%25' stop-color='%239FC252'/%3E%3Cstop offset='100%25' stop-color='%239FC252'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath fill='url(%23g)' d='M50 4 C54 4 56 8 59 10 C62 12 67 10 71 12 C75 14 75 19 78 22 C81 25 86 25 88 29 C90 33 88 38 89 42 C90 46 94 49 94 53 C94 57 90 60 89 64 C88 68 90 73 88 77 C86 81 81 81 78 84 C75 87 75 92 71 94 C67 96 62 94 59 96 C56 98 54 102 50 102 C46 102 44 98 41 96 C38 94 33 96 29 94 C25 92 25 87 22 84 C19 81 14 81 12 77 C10 73 12 68 11 64 C10 60 6 57 6 53 C6 49 10 46 11 42 C12 38 10 33 12 29 C14 25 19 25 22 22 C25 19 25 14 29 12 C33 10 38 12 41 10 C44 8 46 4 50 4Z'/%3E%3Cpath fill='none' stroke='%23ffffff' stroke-width='11' stroke-linecap='round' stroke-linejoin='round' d='M30 52 L44 66 L70 38'/%3E%3C/svg%3E") !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    display: block !important;
    filter: drop-shadow(0 2px 4px rgba(22, 163, 74, .5));
}

/* Directory card (list page) — photo badge */
.dir-member-verified-badge {
    position: absolute;
    bottom: 1px;
    right: 0px;
    width: 20px;
    height: 20px;
    background: none;
    border: none;
    box-shadow: none;
    z-index: 2;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0%25' y1='0%25' x2='100%25' y2='100%25'%3E%3Cstop offset='0%25' stop-color='%239FC252'/%3E%3Cstop offset='100%25' stop-color='%239FC252'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath fill='url(%23g)' d='M50 4 C54 4 56 8 59 10 C62 12 67 10 71 12 C75 14 75 19 78 22 C81 25 86 25 88 29 C90 33 88 38 89 42 C90 46 94 49 94 53 C94 57 90 60 89 64 C88 68 90 73 88 77 C86 81 81 81 78 84 C75 87 75 92 71 94 C67 96 62 94 59 96 C56 98 54 102 50 102 C46 102 44 98 41 96 C38 94 33 96 29 94 C25 92 25 87 22 84 C19 81 14 81 12 77 C10 73 12 68 11 64 C10 60 6 57 6 53 C6 49 10 46 11 42 C12 38 10 33 12 29 C14 25 19 25 22 22 C25 19 25 14 29 12 C33 10 38 12 41 10 C44 8 46 4 50 4Z'/%3E%3Cpath fill='none' stroke='%23ffffff' stroke-width='11' stroke-linecap='round' stroke-linejoin='round' d='M30 52 L44 66 L70 38'/%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(22, 163, 74, .5));
}

/* Directory detail page sidebar */
.dird-verified-badge {
    position: absolute;
    bottom: -3px;
    right: -3px;
    width: 20px;
    height: 20px;
    background: none;
    border: none;
    box-shadow: none;
    z-index: 2;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0%25' y1='0%25' x2='100%25' y2='100%25'%3E%3Cstop offset='0%25' stop-color='%239FC252'/%3E%3Cstop offset='100%25' stop-color='%239FC252'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath fill='url(%23g)' d='M50 4 C54 4 56 8 59 10 C62 12 67 10 71 12 C75 14 75 19 78 22 C81 25 86 25 88 29 C90 33 88 38 89 42 C90 46 94 49 94 53 C94 57 90 60 89 64 C88 68 90 73 88 77 C86 81 81 81 78 84 C75 87 75 92 71 94 C67 96 62 94 59 96 C56 98 54 102 50 102 C46 102 44 98 41 96 C38 94 33 96 29 94 C25 92 25 87 22 84 C19 81 14 81 12 77 C10 73 12 68 11 64 C10 60 6 57 6 53 C6 49 10 46 11 42 C12 38 10 33 12 29 C14 25 19 25 22 22 C25 19 25 14 29 12 C33 10 38 12 41 10 C44 8 46 4 50 4Z'/%3E%3Cpath fill='none' stroke='%23ffffff' stroke-width='11' stroke-linecap='round' stroke-linejoin='round' d='M30 52 L44 66 L70 38'/%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
    display: block;
    filter: drop-shadow(0 2px 5px rgba(22, 163, 74, .5));
}


/* Sidebar contact avatar in detail page */
.dird-contact-avatar {
    position: relative;
    width: 56px;
    height: 56px;
    flex-shrink: 0;
}


.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;
}

/*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;
}

.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;
}

.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;
}


/* ══════════════════════════════════════════════
   REVIEW MODAL
   ══════════════════════════════════════════════ */

#reviewModal .modal-dialog {
    max-width: 560px;
}

.rv-modal-content {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(30, 43, 28, .18);
}

/* Header */
.rv-modal-hdr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    background: linear-gradient(135deg, var(--hunter), var(--ygreen));
}

.rv-modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
}

.rv-modal-close {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .15);
    border: none;
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s;
}

.rv-modal-close:hover {
    background: rgba(255, 255, 255, .25);
}

/* Body */
.rv-modal-body {
    padding: 24px 24px 20px;
    background: #fff;
}

/* Business row */
.rv-biz-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.rv-biz-logo {
    width: 68px;
    height: 68px;
    border-radius: 10px;
    overflow: hidden;
    border: 1.5px solid var(--tea);
    background: var(--offwhite);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rv-biz-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.rv-biz-name {
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 8px;
    line-height: 1.3;
}

.rv-stars {
    display: flex;
}

/* Divider */
.rv-divider {
    height: 1px;
    background: var(--tea);
    margin: 0 0 18px;
}

/* Fields */
.rv-field {
    margin-bottom: 14px;
}

.rv-input {
    width: 100%;
    height: 50px;
    padding: 0 16px;
    border: 1.5px solid #e2e8e2;
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: var(--dark);
    background: #fff;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
}

.rv-input:focus {
    border-color: var(--hunter);
    box-shadow: 0 0 0 3px rgba(70, 103, 64, .08);
}

.rv-input::placeholder {
    color: #aab5aa;
}

.rv-textarea {
    height: 110px;
    padding-top: 14px;
    resize: vertical;
}

/* Upload */
.rv-upload-area {
    border: 2px dashed #d0dfd0;
    border-radius: 10px;
    padding: 28px 20px;
    text-align: center;
    background: #fafcf8;
    cursor: pointer;
    position: relative;
    transition: border-color .2s, background .2s;
}

.rv-upload-area:hover {
    border-color: var(--hunter);
    background: var(--beige);
}

.rv-upload-area i {
    font-size: 32px;
    color: #7a8f7a;
    display: block;
    margin-bottom: 10px;
}

.rv-upload-area p {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    margin: 0 0 4px;
}

.rv-upload-area small {
    font-size: 12.5px;
    color: #7a8f7a;
}

.rv-file-input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
}

.rv-preview-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.rv-preview-wrap img {
    width: 68px;
    height: 68px;
    object-fit: cover;
    border-radius: 8px;
    border: 1.5px solid var(--tea);
}

/* Section label */
.rv-section-label {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--dark);
    margin: 4px 0 12px;
}

/* Submit */
.rv-submit-btn {
    width: 100%;
    height: 52px;
    background: linear-gradient(135deg, var(--ygreen), var(--hunter));
    border: none;
    border-radius: 10px;
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: .03em;
    box-shadow: 0 4px 16px rgba(70, 103, 64, .25);
    transition: all .25s;
    margin-top: 6px;
}

.rv-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(70, 103, 64, .38);
}

/* ══════════════════════════════════════════════
   DISCOUNT CARD
   ══════════════════════════════════════════════ */

.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;
}


/* ══════════════════════════════════════════════
   PRODUCT DETAIL MODAL (Read More)
   ══════════════════════════════════════════════ */

.prod-modal-dialog {
    max-width: 520px;
}

.prod-modal-content {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(30, 43, 28, .18);
}

/* ── Header ── */
.prod-modal-hdr {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    padding: 22px 24px 18px;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
    position: relative;
    overflow: hidden;
}

.prod-modal-hdr::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(159, 194, 82, .07);
    pointer-events: none;
}

.prod-modal-hdr-left {
    position: relative;
    z-index: 1;
}

.prod-modal-type-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 11px;
    background: rgba(159, 194, 82, .15);
    border: 1px solid rgba(159, 194, 82, .3);
    border-radius: 50px;
    font-size: 10.5px;
    font-weight: 700;
    color: var(--ygreen);
    text-transform: uppercase;
    letter-spacing: .07em;
    margin-bottom: 10px;
}

.prod-modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.25;
}

.prod-modal-close {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: rgba(255, 255, 255, .1);
    border: none;
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.prod-modal-close:hover {
    background: rgba(255, 255, 255, .2);
}

/* ── Body ── */
.prod-modal-body {
    padding: 24px;
    background: var(--offwhite);
}

.prod-modal-img-wrap {
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
    border: 1.5px solid var(--tea);
    background: #fff;
    margin-bottom: 20px;
    max-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prod-modal-img-wrap img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

/* ── Price Row ── */
.prod-modal-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: #fff;
    border: 1.5px solid var(--tea);
    border-radius: 12px;
    margin-bottom: 16px;
}

.prod-modal-price-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .08em;
}

.prod-modal-price {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--hunter);
}

/* ── Description ── */
.prod-modal-desc-wrap {
    background: #fff;
    border: 1.5px solid var(--tea);
    border-radius: 12px;
    padding: 16px 18px;
}

.prod-modal-desc-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--hunter);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.prod-modal-desc {
    font-size: 14px;
    color: var(--ltxt);
    line-height: 1.75;
    margin: 0;
}

/* ── Footer ── */
.prod-modal-footer {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 24px 20px;
    background: #fff;
    border-top: 1px solid var(--tea);
}

.prod-modal-cancel {
    height: 48px;
    padding: 0 20px;
    border: 1.5px solid var(--tea);
    border-radius: 10px;
    background: var(--offwhite);
    color: var(--ltxt);
    font-family: 'DM Sans', sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: all .2s;
}

.prod-modal-cancel:hover {
    border-color: var(--hunter);
    color: var(--hunter);
    background: var(--beige);
}

.prod-modal-cta {
    flex: 1;
    height: 48px;
    background: linear-gradient(135deg, var(--ygreen), var(--hunter));
    border: none;
    border-radius: 10px;
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(70, 103, 64, .25);
    transition: all .25s;
}

.prod-modal-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(70, 103, 64, .38);
    color: #fff;
}

/* 
   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);
}



/* 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;
}



/* 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;
}


/* 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);
}

/* ══════════════════════════════════════════════════════════
   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);
}




/* ══════════════════════════════════════════
   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: 3px;
    white-space: normal;
    overflow: visible;
    word-break: break-word;
}

.udm-notif-msg {
    font-size: 11.5px;
    color: #6B7C69;
    font-weight: 400;
    line-height: 1.5;
    white-space: normal;
    overflow: visible;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.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;
}


/* ══════════════════════════════════════
   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);
}


/* 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;
}


/* 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;
}


/* 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;
}

/* 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;
}

/* ══════════════════════════════════════════════
     DASHBOARD PAGE
     ══════════════════════════════════════════════ */

.sc-dashboard {
    background: var(--offwhite);
    min-height: calc(100vh - 96px);
}

.dashboard-wrap {
    display: flex;
    min-height: calc(100vh - 96px);
}

/* ── MAIN CONTENT AREA ── */
.dash-main {
    flex: 1;
    min-width: 0;
    padding: 32px 36px 60px;
    overflow-x: hidden;
}

/* ── TOP BAR ── */
.dash-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    gap: 16px;
    flex-wrap: wrap;
}

.dash-greeting-sub {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 4px;
}

.dash-greeting-name {
    font-family: 'Playfair Display', serif;
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -.02em;
    margin: 0;
    line-height: 1.2;
}

.dash-wave {
    font-style: normal;
}

.dash-profile-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px 8px 8px;
    background: #fff;
    border: 1.5px solid var(--tea);
    border-radius: 50px;
    text-decoration: none;
    color: var(--dark);
    font-size: 13px;
    font-weight: 600;
    transition: all .2s;
}

.dash-profile-btn:hover {
    border-color: var(--hunter);
    color: var(--hunter);
    background: var(--beige);
}

.dash-profile-thumb {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--tea);
}

.dash-profile-btn i {
    font-size: 12px;
    color: var(--muted);
}

/* ── AD BANNER ── */
.dash-ad-wrap {
    margin-bottom: 24px;
    border-radius: 14px;
    overflow: hidden;
    border: 1.5px solid var(--tea);
}

.dash-ad-wrap img {
    width: 100%;
    display: block;
}

/* ── NO PLAN BANNER ── */
.dash-no-plan {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 60%, #1a3318 100%);
    border-radius: 16px;
    padding: 24px 28px;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
    flex-wrap: wrap;
}

.dash-no-plan::before {
    content: '';
    position: absolute;
    right: -30px;
    top: -30px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(159, 194, 82, .08);
    border: 1px solid rgba(159, 194, 82, .12);
    pointer-events: none;
}

.dash-no-plan-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    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;
}

.dash-no-plan-text {
    flex: 1;
    min-width: 180px;
}

.dash-no-plan-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 4px;
}

.dash-no-plan-text p {
    font-size: 13.5px;
    color: rgba(255, 255, 255, .6);
    margin: 0;
}

.dash-no-plan-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 24px;
    background: linear-gradient(135deg, var(--ygreen), #72A020);
    color: #fff;
    border-radius: 50px;
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(159, 194, 82, .35);
    transition: all .25s;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.dash-no-plan-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(159, 194, 82, .5);
    color: #fff;
}

/* ── MAIN GRID ── */
.dash-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 22px;
    align-items: flex-start;
}

/* ── SHARED CARD SHELL ── */
.dash-card {
    background: #fff;
    border: 1.5px solid var(--tea);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(70, 103, 64, .06);
}

.dash-card-hdr {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px 24px 18px;
    border-bottom: 1.5px solid var(--tea);
    background: var(--offwhite);
    flex-wrap: wrap;
}

.dash-card-hdr-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background: var(--hunter);
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ygreen);
    font-size: 16px;
    margin-top: 2px;
}

.dash-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 3px;
    letter-spacing: -.01em;
}

.dash-card-sub {
    font-size: 12.5px;
    color: var(--muted);
    margin: 0;
}

/* ── PROGRESS PILL ── */
.dash-progress-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    flex-shrink: 0;
    background: var(--beige);
    border: 1px solid var(--tea);
    border-radius: 50px;
    padding: 6px 14px;
}

.dash-progress-num {
    font-size: 12px;
    font-weight: 700;
    color: var(--hunter);
    white-space: nowrap;
}

.dash-progress-bar-wrap {
    width: 60px;
    height: 5px;
    background: var(--tea);
    border-radius: 4px;
    overflow: hidden;
}

.dash-progress-bar {
    height: 100%;
    background: linear-gradient(to right, var(--ygreen), var(--hunter));
    border-radius: 4px;
    transition: width .6s ease;
}

.dash-progress-pct {
    font-size: 11px;
    font-weight: 700;
    color: var(--hunter);
}

/* ── CHECKLIST ── */
.dash-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dash-check-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 24px;
    border-bottom: 1px solid var(--tea);
    transition: background .15s;
}

.dash-check-item:last-child {
    border-bottom: none;
}

.dash-check-item:hover {
    background: var(--offwhite);
}

.dash-check-item.done {
    background: #fafff8;
}

.dash-check-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    background: rgba(239, 68, 68, .1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, .15);
    transition: all .2s;
}

.dash-check-item.done .dash-check-icon {
    background: rgba(70, 103, 64, .1);
    color: var(--hunter);
    border-color: rgba(70, 103, 64, .2);
}

.dash-check-text {
    flex: 1;
    min-width: 0;
}

.dash-check-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.3;
    margin-bottom: 2px;
}

.dash-check-hint {
    display: block;
    font-size: 12px;
    color: var(--muted);
    line-height: 1.4;
}

.dash-check-action {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--hunter);
    text-decoration: none;
    padding: 6px 14px;
    border: 1.5px solid var(--tea);
    border-radius: 50px;
    background: #fff;
    white-space: nowrap;
    flex-shrink: 0;
    transition: all .2s;
}

.dash-check-action:hover {
    background: var(--hunter);
    color: #fff;
    border-color: var(--hunter);
    gap: 8px;
}

.dash-check-action i {
    font-size: 10px;
}

.dash-check-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11.5px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    white-space: nowrap;
    flex-shrink: 0;
}

.done-badge {
    background: rgba(70, 103, 64, .1);
    color: var(--hunter);
    border: 1px solid rgba(70, 103, 64, .2);
}

/* ── QUICK LINKS ── */
.dash-links-list {
    display: flex;
    flex-direction: column;
}

.dash-link-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    text-decoration: none;
    color: var(--dark);
    border-bottom: 1px solid var(--tea);
    transition: background .15s, padding-left .15s;
}

.dash-link-item:last-child {
    border-bottom: none;
}

.dash-link-item:hover {
    background: var(--offwhite);
    padding-left: 24px;
    color: var(--dark);
}

.dash-link-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}

.dash-link-text {
    flex: 1;
    min-width: 0;
}

.dash-link-label {
    display: block;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.3;
    margin-bottom: 2px;
}

.dash-link-hint {
    display: block;
    font-size: 11.5px;
    color: var(--muted);
}

.dash-link-arrow {
    font-size: 10px;
    color: var(--muted);
    flex-shrink: 0;
    transition: transform .18s, color .18s;
}

.dash-link-item:hover .dash-link-arrow {
    transform: translateX(3px);
    color: var(--hunter);
}


/* EDIT PROFILE PAGE  */
/* ── REVIEW FORM PAGE ── */
.frev-section {
    background: var(--offwhite);
    min-height: 100vh;
    padding: 48px 0 72px;
    position: relative;
}

.frev-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(70, 103, 64, .06) 0%, transparent 40%);
    pointer-events: none;
}

.frev-card {
    position: relative;
    z-index: 2;
    background: #fff;
    border: 1.5px solid var(--tea);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(70, 103, 64, .12);
    max-width: 620px;
    margin: 0 auto;
}

/* Header */
.frev-card-hdr {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 24px;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
    border-bottom: 1.5px solid rgba(255, 255, 255, .08);
}

.frev-logo {
    height: 40px;
    width: auto;
    background: #fff;
    padding: 6px 12px;
    border-radius: 8px;
}

/* Business strip */
.frev-business-strip {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 24px;
    background: var(--beige);
    border-bottom: 1.5px solid var(--tea);
}

.frev-business-logo {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    border: 2px solid var(--tea);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.frev-business-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.frev-business-name {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 3px;
}

.frev-business-sub {
    font-size: 12.5px;
    color: var(--muted);
    margin: 0;
}

/* Form */
.frev-form {
    padding: 24px;
}

.frev-fields-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.frev-field-full {
    grid-column: 1 / -1;
}

.frev-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.frev-field:last-of-type {
    margin-bottom: 0;
}

.frev-label {
    font-size: 11.5px;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: .05em;
    text-transform: uppercase;
}

.req {
    color: #dc2626;
    margin-left: 2px;
}

.frev-input-wrap {
    position: relative;
}

.frev-input-icon {
    position: absolute;
    left: 13px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted);
    font-size: 13px;
    pointer-events: none;
    z-index: 1;
}

.frev-input-icon--top {
    top: 14px;
    transform: none;
}

.frev-input {
    width: 100%;
    height: 48px;
    padding: 0 14px 0 40px;
    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;
}

.frev-input:focus {
    border-color: var(--hunter);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(70, 103, 64, .08);
}

.frev-input::placeholder {
    color: var(--muted);
}

.frev-textarea {
    height: 110px;
    padding-top: 13px;
    resize: vertical;
}

/* Stars */
.frev-stars-field {
    padding: 14px 16px;
    background: var(--offwhite);
    border: 1.5px solid var(--tea);
    border-radius: 10px;
    display: flex;
    align-items: center;
}

/* Upload */
.frev-upload-area {
    border: 2px dashed var(--tea);
    border-radius: 12px;
    padding: 28px 20px;
    text-align: center;
    background: var(--offwhite);
    cursor: pointer;
    position: relative;
    transition: border-color .2s, background .2s;
    min-height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.frev-upload-area:hover {
    border-color: var(--hunter);
    background: var(--beige);
}

.frev-file-input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.frev-upload-state {
    pointer-events: none;
}

.frev-upload-state i {
    font-size: 28px;
    color: var(--muted);
    display: block;
    margin-bottom: 8px;
}

.frev-upload-state p {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    margin: 0 0 4px;
}

.frev-upload-state span {
    font-size: 12px;
    color: var(--muted);
}

.frev-preview-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.frev-preview-container img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid var(--tea);
}

/* Divider */
.frev-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0 18px;
}

.frev-divider::before,
.frev-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--tea);
}

.frev-divider span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11.5px;
    font-weight: 700;
    color: var(--hunter);
    text-transform: uppercase;
    letter-spacing: .08em;
    white-space: nowrap;
}

/* Submit */
.frev-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 100%;
    padding: 14px;
    margin-top: 24px;
    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;
    box-shadow: 0 4px 18px rgba(70, 103, 64, .3);
    transition: all .25s;
    letter-spacing: .02em;
}

.frev-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 26px rgba(70, 103, 64, .42);
}


/* ── BACK BTN ── */
.biz-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 600;
    color: var(--hunter);
    text-decoration: none;
    padding: 7px 16px;
    border: 1.5px solid var(--tea);
    border-radius: 50px;
    background: #fff;
    margin-bottom: 0;
    transition: all .2s;
}

.biz-back-btn:hover {
    border-color: var(--hunter);
    background: var(--beige);
    color: var(--dark);
}

/* ── HERO ── */
.rev-hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 55%, #1a3318 100%);
    padding: 56px 0 48px;
    position: relative;
    overflow: hidden;
}

.rev-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 70% at 80% 50%, rgba(159, 194, 82, .1) 0%, transparent 65%);
    pointer-events: none;
}

.rev-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.rev-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: 5px 16px;
    font-size: 11px;
    font-weight: 700;
    color: var(--ygreen);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.rev-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -.025em;
    margin-bottom: 10px;
}

.rev-hero-title em {
    font-style: italic;
    color: var(--ygreen);
}

.rev-hero-desc {
    font-size: 14.5px;
    color: rgba(255, 255, 255, .6);
    font-weight: 300;
    margin: 0;
}

/* ── MAIN ── */
.rev-main {
    padding: 28px 36px 60px !important;
    flex: 1 !important;
    min-width: 0 !important;
    width: 100% !important;
}

/* ── TOOLBAR ── */
.rev-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.rev-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 20px;
    background: linear-gradient(135deg, var(--ygreen), var(--hunter));
    color: #fff;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 3px 12px rgba(70, 103, 64, .25);
    transition: all .25s;
}

.rev-share-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(70, 103, 64, .38);
    color: #fff;
}

/* ── FILTER BAR ── */
.rev-filter-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 20px;
    background: #fff;
    border: 1.5px solid var(--tea);
    border-radius: 14px;
    margin-bottom: 22px;
    flex-wrap: wrap;
}

.rev-filter-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rev-count-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 16px;
    background: var(--beige);
    border: 1px solid var(--tea);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    color: var(--hunter);
}

.rev-filter-right {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.rev-filter-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rev-filter-group label {
    font-size: 12px;
    font-weight: 700;
    color: var(--ltxt);
    white-space: nowrap;
}

.rev-select {
    height: 38px;
    padding: 0 12px;
    border: 1.5px solid var(--tea);
    border-radius: 9px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    color: var(--dark);
    background: var(--offwhite);
    outline: none;
    cursor: pointer;
    transition: border-color .2s;
}

.rev-select:focus {
    border-color: var(--hunter);
    background: #fff;
}

/* ── LOADING ── */
.rev-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 32px;
    font-size: 14px;
    color: var(--ltxt);
}

.rev-loading i {
    color: var(--hunter);
    font-size: 18px;
}


/* ── REVIEW CARD ── */
.rev-card {
    background: #fff;
    border: 1.5px solid var(--tea);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(70, 103, 64, .06);
    display: flex;
    gap: 0;
    transition: box-shadow .25s;
}

.rev-card:hover {
    box-shadow: 0 8px 28px rgba(70, 103, 64, .12);
}

/* Left panel */
.rev-card-left {
    flex: 0 0 190px;
    width: 190px;
    padding: 20px 16px;
    background: linear-gradient(180deg, #EAF3DD 0%, #f4f9ee 100%);
    border-right: 1.5px solid var(--tea);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.rev-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--hunter);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border: 3px solid rgba(70, 103, 64, .2);
}

.rev-reviewer-name {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
}

.rev-reviewer-type {
    display: block;
    font-size: 11.5px;
    color: var(--muted);
    font-weight: 500;
}

.rev-status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
}

.rev-status--published {
    background: rgba(34, 197, 94, .1);
    color: #16a34a;
    border: 1px solid rgba(34, 197, 94, .2);
}

.rev-status--rejected {
    background: rgba(239, 68, 68, .1);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, .2);
}

.rev-status--pending {
    background: rgba(234, 179, 8, .1);
    color: #ca8a04;
    border: 1px solid rgba(234, 179, 8, .2);
}

/* Right panel */
.rev-card-right {
    flex: 1;
    padding: 20px 24px;
    min-width: 0;
}

/* Stars */
.rev-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.rev-stars-wrap {
    display: flex;
    align-items: center;
    gap: 3px;
}

.rev-star {
    font-size: 14px;
}

.rev-star--full {
    color: #f59e0b;
}

.rev-star--half {
    color: #f59e0b;
}

.rev-star--empty {
    color: #d1d5db;
}

.rev-rating-num {
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
    margin-left: 6px;
}

.rev-date {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--muted);
}

.rev-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
    line-height: 1.35;
}

.rev-card-text {
    font-size: 14px;
    color: var(--ltxt);
    line-height: 1.7;
    margin-bottom: 14px;
}

/* Actions */
.rev-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    padding-top: 12px;
    border-top: 1px solid var(--tea);
    margin-bottom: 14px;
}

.rev-action-group {
    display: flex;
    gap: 8px;
}

.rev-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    border-radius: 8px;
    font-size: 12.5px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    transition: all .2s;
    border: 1.5px solid;
    background: transparent;
}

.rev-btn--publish {
    border-color: rgba(34, 197, 94, .4);
    color: #16a34a;
}

.rev-btn--publish:hover {
    background: rgba(34, 197, 94, .1);
}

.rev-btn--reject {
    border-color: #fca5a5;
    color: #dc2626;
}

.rev-btn--reject:hover {
    background: #fef2f2;
    border-color: #dc2626;
}

.rev-btn--comment {
    border-color: rgba(99, 179, 237, .4);
    color: #3182ce;
}

.rev-btn--comment:hover {
    background: rgba(99, 179, 237, .1);
}

.rev-btn--cancel {
    border-color: var(--tea);
    color: var(--ltxt);
}

.rev-btn--cancel:hover {
    border-color: var(--muted);
    color: var(--dark);
}

.rev-btn--submit {
    background: linear-gradient(135deg, var(--ygreen), var(--hunter));
    border-color: transparent;
    color: #fff;
}

.rev-btn--submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(70, 103, 64, .3);
}

/* Comment form */
.rev-comment-form {
    background: var(--offwhite);
    border: 1.5px solid var(--tea);
    border-radius: 12px;
    padding: 16px;
    margin-top: 4px;
}

.rev-textarea {
    min-height: 80px !important;
    height: 80px !important;
}

.rev-comment-btns {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 10px;
}

/* Comments section */
.rev-comments-section {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--tea);
}

.rev-comments-label {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 11.5px;
    font-weight: 700;
    color: var(--hunter);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 10px;
}

.rev-comment-card {
    display: flex;
    gap: 12px;
    background: var(--offwhite);
    border: 1.5px solid var(--tea);
    border-radius: 12px;
    padding: 14px;
}

.rev-comment-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--tea);
    flex-shrink: 0;
}

.rev-comment-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.rev-comment-body {
    flex: 1;
    min-width: 0;
}

.rev-comment-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
    flex-wrap: wrap;
}

.rev-comment-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
}

.rev-comment-date {
    font-size: 11.5px;
    color: var(--muted);
}

.rev-comment-text {
    font-size: 13.5px;
    color: var(--ltxt);
    margin: 0 0 8px;
    line-height: 1.6;
}

.rev-comment-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

/* Empty state */
.rev-empty {
    text-align: center;
    padding: 60px 20px;
    background: #fff;
    border: 1.5px solid var(--tea);
    border-radius: 16px;
}

.rev-empty i {
    font-size: 44px;
    display: block;
    margin-bottom: 14px;
    color: var(--tea);
}

.rev-empty h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 8px;
}

.rev-empty p {
    font-size: 13.5px;
    color: var(--ltxt);
}


/* MY BUSINESS PAGES */
/* ── HERO ── */
.mb-hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 55%, #1a3318 100%);
    padding: 60px 0 52px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.mb-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 80% at 50% 50%, rgba(159, 194, 82, .10) 0%, transparent 65%),
        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.03'%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");
    pointer-events: none;
}

.mb-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 560px;
    margin: 0 auto;
}

.mb-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(159, 194, 82, .12);
    border: 1px solid rgba(159, 194, 82, .28);
    border-radius: 50px;
    padding: 5px 16px;
    font-size: 11px;
    font-weight: 700;
    color: var(--ygreen);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 16px;
    font-family: 'DM Sans', sans-serif;
}

.mb-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -.02em;
    margin-bottom: 12px;
}

.mb-hero-title em {
    font-style: italic;
    color: var(--ygreen);
}

.mb-hero-desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 14.5px;
    color: rgba(255, 255, 255, .58);
    font-weight: 300;
    line-height: 1.75;
    margin: 0;
}

/* ── MAIN ── */
.mb-main {
    padding: 36px 40px 64px !important;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* ══════════════════════════
     STAT STRIP
  ══════════════════════════ */
.mb-stat-strip {
    background: #fff;
    border: 1.5px solid var(--tea);
    border-radius: 16px;
    padding: 20px 32px;
    display: flex;
    align-items: center;
    gap: 0;
    box-shadow: 0 2px 14px rgba(70, 103, 64, .06);
}

.mb-stat {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    padding: 0 20px;
}

.mb-stat:first-child {
    padding-left: 0;
}

.mb-stat:last-child {
    padding-right: 0;
}

.mb-stat-sep {
    width: 1px;
    height: 40px;
    background: var(--tea);
    flex-shrink: 0;
}

.mb-stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.mb-stat-icon--green {
    background: rgba(70, 103, 64, .1);
    color: var(--hunter);
}

.mb-stat-icon--gold {
    background: rgba(212, 175, 55, .12);
    color: #b8962e;
}

.mb-stat-icon--blue {
    background: rgba(59, 130, 246, .1);
    color: #3b82f6;
}

.mb-stat-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .07em;
    margin: 0 0 2px;
}

.mb-stat-val {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 160px;
}

.mb-stat-val span {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: var(--muted);
}

/* ══════════════════════════
     THREE CARDS
  ══════════════════════════ */
.mb-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    align-items: stretch;
}

.mb-card {
    background: #fff;
    border: 1.5px solid var(--tea);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(70, 103, 64, .06);
    display: flex;
    flex-direction: column;
    transition: box-shadow .25s, transform .25s, border-color .25s;
}

.mb-card:hover {
    box-shadow: 0 10px 36px rgba(70, 103, 64, .13);
    transform: translateY(-3px);
    border-color: rgba(70, 103, 64, .25);
}

/* featured card slight highlight */
.mb-card--featured {
    border-color: rgba(212, 175, 55, .3);
}

.mb-card--featured:hover {
    border-color: rgba(212, 175, 55, .5);
    box-shadow: 0 10px 36px rgba(212, 175, 55, .12);
}

/* card top strip */
.mb-card-top {
    padding: 16px 20px 0;
}

.mb-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 20px;
    padding: 4px 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.mb-card-badge--green {
    background: rgba(70, 103, 64, .09);
    color: var(--hunter);
    border: 1px solid rgba(70, 103, 64, .2);
}

.mb-card-badge--gold {
    background: rgba(212, 175, 55, .1);
    color: #9a7a1a;
    border: 1px solid rgba(212, 175, 55, .28);
}

.mb-card-badge--blue {
    background: rgba(59, 130, 246, .09);
    color: #2563eb;
    border: 1px solid rgba(59, 130, 246, .2);
}

/* card body */
.mb-card-body {
    flex: 1;
    padding: 22px 22px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}

/* logo */
.mb-logo-wrap {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 6px;
}

.mb-logo-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 16px;
    border: 2px solid var(--tea);
    background: var(--offwhite);
    padding: 6px;
    display: block;
}

.mb-logo-initials {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    border: 2px solid var(--tea);
    background: linear-gradient(135deg, var(--hunter), #2e4c2c);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--ygreen);
}

.mb-logo-ring {
    position: absolute;
    inset: -5px;
    border-radius: 21px;
    border: 2px dashed rgba(70, 103, 64, .2);
    pointer-events: none;
}

.mb-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
    line-height: 1.3;
}

.mb-card-title span {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--muted);
}

.mb-card-sub {
    font-family: 'DM Sans', sans-serif;
    font-size: 12.5px;
    color: var(--muted);
    margin: 0;
    line-height: 1.5;
}

/* meta pills */
.mb-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    margin-top: 2px;
}

.mb-meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--offwhite);
    border: 1px solid var(--tea);
    border-radius: 20px;
    padding: 3px 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: var(--ltxt);
}

.mb-meta-pill--green {
    background: rgba(70, 103, 64, .08);
    border-color: rgba(70, 103, 64, .22);
    color: var(--hunter);
}

.mb-meta-pill i {
    font-size: 9px;
}

/* ── RATING CARD elements ── */
.mb-rating-score {
    display: flex;
    align-items: baseline;
    gap: 4px;
    justify-content: center;
    margin-bottom: 2px;
}

.mb-rating-num {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--dark);
    line-height: 1;
}

.mb-rating-denom {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    color: var(--muted);
    font-weight: 500;
}

.mb-stars-wrap {
    display: flex;
    gap: 3px;
    justify-content: center;
}

.mb-star {
    font-size: 16px;
}

.mb-star--full {
    color: #f59e0b;
}

.mb-star--half {
    color: #f59e0b;
}

.mb-star--empty {
    color: #d1d5db;
}

/* rating bars */
.mb-rating-bars {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin: 6px 0 2px;
}

.mb-rbar-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mb-rbar-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: var(--muted);
    width: 10px;
    flex-shrink: 0;
}

.mb-rbar-track {
    flex: 1;
    height: 5px;
    background: var(--tea);
    border-radius: 10px;
    overflow: hidden;
}

.mb-rbar-fill {
    height: 100%;
    background: linear-gradient(90deg, #f59e0b, #d97706);
    border-radius: 10px;
    transition: width .6s ease;
}

/* ── ENQUIRY CARD elements ── */
.mb-enquiry-icon-wrap {
    position: relative;
    width: 72px;
    height: 72px;
    margin-bottom: 4px;
}

.mb-enquiry-icon {
    font-size: 2.6rem;
    color: #3b82f6;
    line-height: 72px;
}

.mb-enquiry-dot {
    position: absolute;
    top: 6px;
    right: 4px;
    width: 14px;
    height: 14px;
    background: #ef4444;
    border-radius: 50%;
    border: 2.5px solid #fff;
    animation: mb-pulse 1.8s ease infinite;
}

@keyframes mb-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.3);
        opacity: .7;
    }
}

.mb-enquiry-alert {
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(239, 68, 68, .07);
    border: 1px solid rgba(239, 68, 68, .2);
    border-radius: 10px;
    padding: 8px 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    color: #dc2626;
    font-weight: 600;
    width: 100%;
    justify-content: center;
}

.mb-enquiry-alert i {
    font-size: 12px;
}

.mb-enquiry-empty {
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(70, 103, 64, .07);
    border: 1px solid rgba(70, 103, 64, .18);
    border-radius: 10px;
    padding: 8px 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    color: var(--hunter);
    font-weight: 600;
    width: 100%;
    justify-content: center;
}

/* card footer */
.mb-card-footer {
    padding: 0 20px 20px;
}

/* ── BUTTONS ── */
.mb-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 20px;
    border-radius: 11px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none;
    transition: all .25s;
    letter-spacing: .02em;
}

.mb-btn--primary {
    background: linear-gradient(135deg, var(--ygreen) 0%, var(--hunter) 100%);
    color: #fff;
    box-shadow: 0 4px 14px rgba(70, 103, 64, .28);
}

.mb-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(70, 103, 64, .4);
    color: #fff;
}

.mb-btn--gold {
    background: linear-gradient(135deg, #f0c040, #c8941a);
    color: #fff;
    box-shadow: 0 4px 14px rgba(212, 175, 55, .3);
}

.mb-btn--gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, .45);
    color: #fff;
}

/* ══════════════════════════
     QUICK ACTIONS STRIP
  ══════════════════════════ */
.mb-quick-strip {
    background: #fff;
    border: 1.5px solid var(--tea);
    border-radius: 16px;
    padding: 18px 28px;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    box-shadow: 0 2px 14px rgba(70, 103, 64, .06);
}

.mb-quick-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: var(--hunter);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin: 0;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.mb-quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.mb-quick-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--offwhite);
    border: 1.5px solid var(--tea);
    border-radius: 22px;
    padding: 7px 16px;
    font-family: 'DM Sans', sans-serif;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--dark);
    text-decoration: none;
    transition: all .2s;
}

.mb-quick-link i {
    color: var(--hunter);
    font-size: 11px;
}

.mb-quick-link:hover {
    background: rgba(70, 103, 64, .08);
    border-color: rgba(70, 103, 64, .3);
    color: var(--hunter);
    transform: translateY(-1px);
}


/* ══════════════════════════════════════
       BUSINESS STEPS — SHARED CSS
       ══════════════════════════════════════ */
/* ══════════════════════════════════════
   BUSINESS STEPS — SHARED CSS
   ══════════════════════════════════════ */

/* ── HERO ── */
.biz-hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 55%, #1a3318 100%);
    padding: 56px 0 48px;
    position: relative;
    overflow: hidden;
}

.biz-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 70% at 80% 50%, rgba(159, 194, 82, .1) 0%, transparent 65%);
    pointer-events: none;
}

.biz-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.biz-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: 5px 16px;
    font-size: 11px;
    font-weight: 700;
    color: var(--ygreen);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.biz-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -.025em;
    margin-bottom: 10px;
}

.biz-hero-title em {
    font-style: italic;
    color: var(--ygreen);
}

.biz-hero-desc {
    font-size: 14.5px;
    color: rgba(255, 255, 255, .6);
    font-weight: 300;
    margin: 0;
}

/* ── MAIN ── */
.biz-main {
    padding: 28px 36px 60px !important;
    flex: 1 !important;
    min-width: 0 !important;
    width: 100% !important;
}

/* ── BACK BTN ── */
.biz-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 600;
    color: var(--hunter);
    text-decoration: none;
    padding: 7px 16px;
    border: 1.5px solid var(--tea);
    border-radius: 50px;
    background: #fff;
    margin-bottom: 22px;
    transition: all .2s;
}

.biz-back-btn:hover {
    border-color: var(--hunter);
    background: var(--beige);
    color: var(--dark);
}

/* ── STEPPER ── */
.biz-stepper {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 28px;
    padding: 20px 24px;
    background: #fff;
    border: 1.5px solid var(--tea);
    border-radius: 14px;
}

.biz-step-track {
    position: absolute;
    top: 32px;
    left: 60px;
    right: 60px;
    height: 3px;
    background: var(--tea);
    border-radius: 4px;
    z-index: 0;
}

.biz-step-progress {
    height: 100%;
    background: linear-gradient(to right, var(--ygreen), var(--hunter));
    border-radius: 4px;
    transition: width .4s ease;
}

.biz-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    position: relative;
    z-index: 1;
    flex: 1;
}

.biz-step span {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    border: 2.5px solid var(--tea);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--muted);
    transition: all .25s;
}

.biz-step small {
    font-size: 11px;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .06em;
    white-space: nowrap;
}

.biz-step.active span {
    background: var(--hunter);
    border-color: var(--hunter);
    color: #fff;
    box-shadow: 0 3px 12px rgba(70, 103, 64, .3);
}

.biz-step.active small {
    color: var(--hunter);
}

.biz-step.done span {
    background: var(--ygreen);
    border-color: var(--ygreen);
    color: #fff;
}

.biz-step.done small {
    color: var(--hunter);
}

/* ── FORM CARD ── */
.biz-form-card {
    background: #fff;
    border: 1.5px solid var(--tea);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(70, 103, 64, .06);
}

.biz-form-card-hdr {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 24px;
    background: var(--offwhite);
    border-bottom: 1.5px solid var(--tea);
    flex-wrap: wrap;
}

.biz-form-card-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    background: var(--hunter);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ygreen);
    font-size: 17px;
}

.biz-form-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 3px;
}

.biz-form-card-sub {
    font-size: 12px;
    color: var(--muted);
    margin: 0;
}

.biz-form-body {
    padding: 24px;
}

/* ── SECTION TITLE ── */
.biz-section-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    color: var(--hunter);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 16px;
    margin-top: 24px;
    padding-bottom: 8px;
    border-bottom: 1.5px solid var(--tea);
}

.biz-section-title:first-child {
    margin-top: 0;
}

/* ── FIELDS GRID ── */
.biz-fields-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 8px;
}

.biz-field-full {
    grid-column: 1 / -1;
}

.biz-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.biz-label {
    font-size: 11.5px;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: .05em;
    text-transform: uppercase;
}

.req {
    color: #dc2626;
    margin-left: 2px;
}

/* ── INPUT ── */
.biz-input-wrap {
    position: relative;
}

.biz-input-icon {
    position: absolute;
    left: 13px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted);
    font-size: 13px;
    pointer-events: none;
    z-index: 1;
}

.biz-input-icon--top {
    top: 16px;
    transform: none;
}

.biz-input {
    width: 100%;
    height: 48px;
    padding: 0 14px 0 40px;
    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;
}

.biz-input:focus {
    border-color: var(--hunter);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(70, 103, 64, .08);
}

.biz-input::placeholder {
    color: var(--muted);
}

.biz-textarea {
    height: 100px;
    padding-top: 12px;
    resize: vertical;
}

.biz-select {
    cursor: pointer;
}

/* ── UPLOAD ── */
.biz-upload-row {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 16px;
}

.biz-upload-area {
    flex: 1;
    border: 2px dashed var(--tea);
    border-radius: 12px;
    padding: 24px 16px;
    text-align: center;
    background: var(--offwhite);
    cursor: pointer;
    position: relative;
    transition: border-color .2s, background .2s;
}

.biz-upload-area:hover {
    border-color: var(--hunter);
    background: var(--beige);
}

.biz-upload-area i {
    font-size: 28px;
    color: var(--muted);
    display: block;
    margin-bottom: 8px;
}

.biz-upload-area p {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    margin: 0 0 4px;
}

.biz-upload-area span {
    font-size: 11.5px;
    color: var(--muted);
}

.biz-file-input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
}

.biz-upload-preview {
    width: 140px;
    height: 140px;
    flex-shrink: 0;
    border-radius: 12px;
    border: 1.5px solid var(--tea);
    overflow: hidden;
    background: var(--offwhite);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.biz-upload-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.biz-preview-placeholder {
    text-align: center;
    color: var(--muted);
}

.biz-preview-placeholder i {
    font-size: 24px;
    display: block;
    margin-bottom: 6px;
}

.biz-preview-placeholder span {
    font-size: 11px;
}

/* ── PHOTO GRID ── */
.biz-photos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.biz-photo-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--hunter);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.biz-photo-delete {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(220, 38, 38, .85);
    border: none;
    color: #fff;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s;
}

.biz-photo-delete:hover {
    background: #dc2626;
}

/* ── SOCIAL ROW ── */
.biz-social-row {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
}

.biz-social-btn {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    border-radius: 9px;
    border: 1.5px solid var(--tea);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    cursor: pointer;
    transition: all .2s;
    background: #fff;
}

.biz-social-add {
    color: var(--hunter);
}

.biz-social-add:hover {
    background: var(--hunter);
    color: #fff;
    border-color: var(--hunter);
}

.biz-social-remove {
    color: #dc2626;
    border-color: #fca5a5;
}

.biz-social-remove:hover {
    background: #fef2f2;
    border-color: #dc2626;
}

/* ── CHECKBOX ── */
.biz-checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--ltxt);
    cursor: pointer;
}

.biz-checkbox-label input {
    accent-color: var(--hunter);
    width: 15px;
    height: 15px;
}

/* ── HOURS GRID ── */
.biz-hours-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 8px;
}

.biz-hours-row {
    display: grid;
    grid-template-columns: 100px 1fr 1fr auto;
    gap: 12px;
    align-items: end;
    padding: 14px 16px;
    background: var(--offwhite);
    border: 1px solid var(--tea);
    border-radius: 10px;
}

.biz-day-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
    padding-bottom: 6px;
}

.biz-time-select label {
    display: block;
    font-size: 10.5px;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .07em;
    margin-bottom: 5px;
}

.biz-closed-btn {
    height: 48px;
    padding: 0 14px;
    border: 1.5px solid var(--tea);
    border-radius: 9px;
    background: #fff;
    color: var(--ltxt);
    font-size: 12px;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all .2s;
    white-space: nowrap;
}

.biz-closed-btn:hover {
    background: #fef2f2;
    border-color: #dc2626;
    color: #dc2626;
}

/* ── PRODUCT CARDS ── */
.biz-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 24px;
}

.biz-product-card {
    background: var(--offwhite);
    border: 1.5px solid var(--tea);
    border-radius: 14px;
    overflow: hidden;
    transition: all .25s;
    position: relative;
}

.biz-product-card:hover {
    border-color: rgba(70, 103, 64, .25);
    box-shadow: 0 6px 22px rgba(70, 103, 64, .1);
}

.biz-product-img {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--tea);
}

.biz-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.biz-product-body {
    padding: 14px 16px;
}

.biz-product-type-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    background: var(--beige);
    border: 1px solid var(--tea);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    color: var(--hunter);
    margin-bottom: 8px;
}

.biz-product-name {
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
    line-height: 1.3;
}

.biz-product-name a {
    color: var(--hunter);
    text-decoration: none;
}

.biz-product-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--hunter);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.biz-product-desc {
    font-size: 12.5px;
    color: var(--ltxt);
    line-height: 1.5;
    margin: 0;
}

.biz-product-actions {
    display: flex;
    gap: 8px;
    padding: 10px 16px;
    border-top: 1px solid var(--tea);
    background: #fff;
}

.biz-product-edit,
.biz-product-delete {
    flex: 1;
    height: 34px;
    border-radius: 8px;
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
    border: 1.5px solid;
}

.biz-product-edit {
    background: #fff;
    border-color: var(--hunter);
    color: var(--hunter);
}

.biz-product-edit:hover {
    background: var(--hunter);
    color: #fff;
}

.biz-product-delete {
    background: #fff;
    border-color: #fca5a5;
    color: #dc2626;
}

.biz-product-delete:hover {
    background: #fef2f2;
    border-color: #dc2626;
}

.biz-no-products {
    text-align: center;
    padding: 56px 20px;
    color: var(--muted);
    margin-bottom: 24px;
}

.biz-no-products i {
    font-size: 44px;
    display: block;
    margin-bottom: 14px;
    color: var(--tea);
}

.biz-no-products h4 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 6px;
}

.biz-no-products p {
    font-size: 13.5px;
}

/* ── ADD PRODUCT BTN ── */
.biz-add-product-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 20px;
    background: linear-gradient(135deg, var(--ygreen), var(--hunter));
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    box-shadow: 0 3px 12px rgba(70, 103, 64, .25);
    transition: all .25s;
}

.biz-add-product-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(70, 103, 64, .38);
    color: #fff;
}

/* ── FORM FOOTER ── */
.biz-form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid var(--tea);
    margin-top: 8px;
}

.biz-btn-next {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--ygreen), var(--hunter));
    border: none;
    border-radius: 10px;
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(70, 103, 64, .3);
    transition: all .25s;
}

.biz-btn-next:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(70, 103, 64, .42);
    color: #fff;
}

.biz-btn-back {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 11px 24px;
    border: 1.5px solid var(--tea);
    border-radius: 10px;
    color: var(--dark);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    background: #fff;
    transition: all .2s;
}

.biz-btn-back:hover {
    border-color: var(--hunter);
    color: var(--hunter);
    background: var(--beige);
}

/* ── MODAL ── */
.biz-modal {
    border-radius: 16px !important;
    overflow: hidden;
}

.biz-modal-hdr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    background: linear-gradient(135deg, var(--dark), var(--dark2));
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.biz-modal-hdr h5 {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.biz-modal-close {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .1);
    border: none;
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s;
}

.biz-modal-close:hover {
    background: rgba(255, 255, 255, .2);
}

.biz-modal-body {
    padding: 24px;
}

.biz-modal-footer {
    padding: 16px 24px;
    border-top: 1px solid var(--tea);
    background: var(--offwhite);
    display: flex;
    justify-content: flex-end;
}

/* MY RSVP EVENTS*/
/* ── HERO ── */
.rsvp-hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 55%, #1a3318 100%);
    padding: 56px 0 48px;
    position: relative;
    overflow: hidden;
}

.rsvp-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 70% at 80% 50%, rgba(159, 194, 82, .1) 0%, transparent 65%);
    pointer-events: none;
}

.rsvp-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.rsvp-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: 5px 16px;
    font-size: 11px;
    font-weight: 700;
    color: var(--ygreen);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.rsvp-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -.025em;
    margin-bottom: 10px;
}

.rsvp-hero-title em {
    font-style: italic;
    color: var(--ygreen);
}

.rsvp-hero-desc {
    font-size: 14.5px;
    color: rgba(255, 255, 255, .6);
    font-weight: 300;
    line-height: 1.7;
}

/* ── MAIN ── */
.rsvp-main {
    padding: 32px 36px 60px !important;
}

/* ── TABS ── */
.rsvp-tabs-wrap {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    background: #fff;
    border: 1.5px solid var(--tea);
    border-radius: 14px;
    padding: 6px;
    width: fit-content;
}

.rsvp-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 10px;
    border: none;
    background: transparent;
    font-family: 'DM Sans', sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--ltxt);
    cursor: pointer;
    transition: all .2s;
    white-space: nowrap;
}

.rsvp-tab i {
    font-size: 13px;
}

.rsvp-tab:hover {
    background: var(--beige);
    color: var(--hunter);
}

.rsvp-tab.active {
    background: var(--hunter);
    color: #fff;
    box-shadow: 0 3px 12px rgba(70, 103, 64, .25);
}

.rsvp-tab.active i {
    color: var(--ygreen);
}

/* ── LOADING ── */
.rsvp-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 40px 20px;
    font-size: 14px;
    color: var(--ltxt);
}

.rsvp-loading i {
    color: var(--hunter);
    font-size: 20px;
}

/* ── EVENT CARDS GRID ── */
.rsvp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

/* ── EVENT CARD ── */
.rsvp-card {
    background: #fff;
    border: 1.5px solid var(--tea);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(70, 103, 64, .06);
    transition: all .25s;
}

.rsvp-card:hover {
    border-color: rgba(70, 103, 64, .25);
    box-shadow: 0 8px 28px rgba(70, 103, 64, .12);
    transform: translateY(-2px);
}

/* Card header strip */
.rsvp-card-hdr {
    padding: 14px 18px 12px;
    background: linear-gradient(135deg, #EAF3DD 0%, #f4f9ee 100%);
    border-bottom: 1.5px solid var(--tea);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

.rsvp-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.35;
    margin: 0;
    flex: 1;
}

.rsvp-card-type-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    background: var(--hunter);
    color: #fff;
    border-radius: 50px;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .04em;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Card body rows */
.rsvp-card-body {
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rsvp-info-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.rsvp-info-icon {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    border-radius: 8px;
    background: var(--beige);
    border: 1px solid var(--tea);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hunter);
    font-size: 12px;
}

.rsvp-info-text {
    flex: 1;
    min-width: 0;
}

.rsvp-info-label {
    display: block;
    font-size: 10.5px;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 2px;
}

.rsvp-info-value {
    display: block;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--dark);
    line-height: 1.4;
}

/* ── ATTENDED BADGE ── */
.rsvp-attended-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    background: rgba(70, 103, 64, .1);
    border: 1px solid rgba(70, 103, 64, .2);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    color: var(--hunter);
    margin-top: 4px;
    align-self: flex-start;
}

/* ── EMPTY STATE ── */
.rsvp-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background: #fff;
    border: 1.5px solid var(--tea);
    border-radius: 16px;
}

.rsvp-empty i {
    font-size: 44px;
    display: block;
    margin-bottom: 14px;
    color: var(--tea);
}

.rsvp-empty h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 8px;
}

.rsvp-empty p {
    font-size: 13.5px;
    color: var(--ltxt);
    margin: 0;
}


/* ══════════════════════════════════════
   TRANSACTIONS PAGE
   ══════════════════════════════════════ */

/* ── HERO ── */
.txn-hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 55%, #1a3318 100%);
    padding: 56px 0 48px;
    position: relative;
    overflow: hidden;
}

.txn-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 70% at 80% 50%, rgba(159, 194, 82, .1) 0%, transparent 65%);
    pointer-events: none;
}

.txn-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.txn-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: 5px 16px;
    font-size: 11px;
    font-weight: 700;
    color: var(--ygreen);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.txn-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -.025em;
    margin-bottom: 10px;
}

.txn-hero-title em {
    font-style: italic;
    color: var(--ygreen);
}

.txn-hero-desc {
    font-size: 14.5px;
    color: rgba(255, 255, 255, .6);
    font-weight: 300;
    line-height: 1.7;
    margin: 0;
}

/* ── MAIN ── */
.txn-main {
    padding: 32px 36px 60px !important;
    flex: 1 !important;
    width: 100% !important;
    min-width: 0 !important;
}

/* ── PAGE HEAD ── */
.ep-page-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.ep-page-head-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: var(--hunter);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ygreen);
    font-size: 18px;
}

.ep-page-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--dark);
    margin: 0 0 3px;
    letter-spacing: -.01em;
}

.ep-page-sub {
    font-size: 13px;
    color: var(--muted);
    margin: 0;
}

/* ── TABLE CARD ── */
.txn-card {
    background: #fff;
    border: 1.5px solid var(--tea);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(70, 103, 64, .06);
    width: 100%;
}

/* ── DATATABLE OVERRIDES ── */
.txn-table-wrap {
    padding: 0;
    overflow-x: auto;
}

/* DataTables search/length controls */
.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_filter {
    padding: 16px 24px 8px;
    font-size: 13px;
    color: var(--dark);
    font-family: 'DM Sans', sans-serif;
}

.dataTables_wrapper .dataTables_filter input {
    border: 1.5px solid var(--tea) !important;
    border-radius: 8px !important;
    padding: 6px 12px !important;
    font-size: 13px !important;
    font-family: 'DM Sans', sans-serif !important;
    color: var(--dark) !important;
    background: var(--offwhite) !important;
    outline: none !important;
    margin-left: 8px;
    transition: border-color .2s;
}

.dataTables_wrapper .dataTables_filter input:focus {
    border-color: var(--hunter) !important;
    background: #fff !important;
    box-shadow: 0 0 0 3px rgba(70, 103, 64, .08) !important;
}

.dataTables_wrapper .dataTables_length select {
    border: 1.5px solid var(--tea) !important;
    border-radius: 8px !important;
    padding: 5px 10px !important;
    font-size: 13px !important;
    font-family: 'DM Sans', sans-serif !important;
    color: var(--dark) !important;
    background: var(--offwhite) !important;
    margin: 0 6px;
}

/* Table */
#financeTable {
    width: 100% !important;
    border-collapse: collapse;
    font-family: 'DM Sans', sans-serif;
    font-size: 13.5px;
}

#financeTable thead th {
    background: var(--beige) !important;
    color: var(--dark) !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: .08em !important;
    padding: 13px 18px !important;
    border-bottom: 2px solid var(--tea) !important;
    white-space: nowrap;
}

#financeTable tbody tr {
    border-bottom: 1px solid var(--tea);
    transition: background .15s;
}

#financeTable tbody tr:last-child {
    border-bottom: none;
}

#financeTable tbody tr:hover {
    background: var(--offwhite) !important;
}

#financeTable tbody td {
    padding: 13px 18px !important;
    color: var(--dark) !important;
    vertical-align: middle;
    font-size: 13.5px;
}

/* Order ID monospace */
#financeTable tbody td:first-child {
    font-family: 'Courier New', monospace;
    font-size: 12px;
    color: var(--ltxt) !important;
    font-weight: 600;
}

/* Amount bold green */
/*#financeTable tbody td:nth-child(3) {
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--hunter) !important;
}

#financeTable tbody td:nth-child(3)::before {
    content: '₹ ';
    font-size: 11px;
    font-family: 'DM Sans', sans-serif;
    color: var(--muted);
}*/

/* Payment mode pill */
.txn-mode-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 11.5px;
    font-weight: 600;
    background: rgba(70, 103, 64, .08);
    color: var(--hunter);
    border: 1px solid rgba(70, 103, 64, .15);
    white-space: nowrap;
}

/* DataTables pagination */
.dataTables_wrapper .dataTables_paginate {
    padding: 14px 24px !important;
    font-family: 'DM Sans', sans-serif;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    border-radius: 8px !important;
    font-size: 13px !important;
    padding: 5px 11px !important;
    margin: 0 2px !important;
    color: var(--dark) !important;
    border: 1.5px solid transparent !important;
    transition: all .2s !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background: var(--beige) !important;
    border-color: var(--hunter) !important;
    color: var(--hunter) !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
    background: linear-gradient(135deg, var(--ygreen), var(--hunter)) !important;
    border-color: transparent !important;
    color: #fff !important;
    box-shadow: 0 3px 12px rgba(70, 103, 64, .3) !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.disabled,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover {
    color: var(--muted) !important;
    cursor: not-allowed !important;
    background: transparent !important;
    border-color: transparent !important;
}

.dataTables_wrapper .dataTables_info {
    padding: 14px 24px !important;
    font-size: 12.5px !important;
    color: var(--ltxt) !important;
    font-family: 'DM Sans', sans-serif !important;
}

/* ── EMPTY STATE ── */
.txn-empty {
    text-align: center;
    padding: 60px 20px;
}

.txn-empty i {
    font-size: 44px;
    display: block;
    margin-bottom: 14px;
    color: var(--tea);
}

.txn-empty h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 8px;
}

.txn-empty p {
    font-size: 13.5px;
    color: var(--ltxt);
}

/* ══════════════════════════════════════
       MY PLAN PAGE
       ══════════════════════════════════════ */

/* ── HERO ── */
.myplan-hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 55%, #1a3318 100%);
    padding: 56px 0 48px;
    position: relative;
    overflow: hidden;
}

.myplan-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 70% at 80% 50%, rgba(159, 194, 82, .1) 0%, transparent 65%);
    pointer-events: none;
}

.myplan-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.myplan-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: 5px 16px;
    font-size: 11px;
    font-weight: 700;
    color: var(--ygreen);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.myplan-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -.025em;
    margin-bottom: 10px;
}

.myplan-hero-title em {
    font-style: italic;
    color: var(--ygreen);
}

.myplan-hero-desc {
    font-size: 14.5px;
    color: rgba(255, 255, 255, .6);
    font-weight: 300;
    line-height: 1.7;
    margin: 0;
}

/* ── MAIN ── */
.myplan-main {
    padding: 32px 36px 60px !important;
}

/* ── EMPTY STATE ── */
.myplan-empty {
    background: #fff;
    border: 1.5px solid var(--tea);
    border-radius: 20px;
    padding: 56px 40px;
    text-align: center;
    box-shadow: 0 2px 16px rgba(70, 103, 64, .06);
    max-width: 520px;
    margin: 0 auto;
}

.myplan-empty-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #EAF3DD, #d9ecc3);
    border: 2px solid var(--tea);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hunter);
    font-size: 28px;
    margin: 0 auto 20px;
}

.myplan-empty-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 10px;
    letter-spacing: -.01em;
}

.myplan-empty-desc {
    font-size: 14px;
    color: var(--ltxt);
    line-height: 1.75;
    margin-bottom: 28px;
}

/* ── CTA BUTTON ── */
.myplan-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--ygreen), var(--hunter));
    color: #fff;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(70, 103, 64, .3);
    transition: all .25s;
}

.myplan-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(70, 103, 64, .45);
    color: #fff;
}

/* ── CARDS GRID ── */
.myplan-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 24px;
}

/* ── PLAN CARD ── */
.myplan-card {
    background: #fff;
    border: 1.5px solid var(--tea);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(70, 103, 64, .07);
    transition: all .25s;
    display: flex;
    flex-direction: column;
}

.myplan-card:hover {
    box-shadow: 0 8px 28px rgba(70, 103, 64, .13);
    transform: translateY(-2px);
}

.myplan-card--upcoming {
    border-color: rgba(159, 194, 82, .35);
}

/* Card header */
.myplan-card-hdr {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    background: linear-gradient(135deg, #EAF3DD 0%, #f4f9ee 100%);
    border-bottom: 1.5px solid var(--tea);
    flex-wrap: nowrap;
}

.myplan-card-hdr-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 12px;
    background: var(--hunter);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ygreen);
    font-size: 17px;
}

.myplan-card-hdr-text {
    flex: 1;
    min-width: 0;
}

.myplan-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 3px;
    line-height: 1.3;
}

.myplan-card-sub {
    font-size: 12px;
    color: var(--muted);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Status badge */
.myplan-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 11.5px;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
}

.myplan-status--active {
    background: rgba(34, 197, 94, .1);
    color: #16a34a;
    border: 1px solid rgba(34, 197, 94, .25);
}

.myplan-status--upcoming {
    background: rgba(159, 194, 82, .12);
    color: var(--hunter);
    border: 1px solid rgba(159, 194, 82, .3);
}

/* Card body */
.myplan-card-body {
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
}

/* Info rows */
.myplan-info-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.myplan-info-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    border-radius: 8px;
    background: var(--beige);
    border: 1px solid var(--tea);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hunter);
    font-size: 12px;
}

.myplan-info-text {
    flex: 1;
    min-width: 0;
}

.myplan-info-label {
    display: block;
    font-size: 10.5px;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 2px;
}

.myplan-info-value {
    display: block;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.3;
}

/* ── VALIDITY BAR ── */
.myplan-validity-bar-wrap {
    margin-top: 4px;
    padding-top: 14px;
    border-top: 1px solid var(--tea);
}

.myplan-validity-bar-labels {
    display: flex;
    justify-content: space-between;
    font-size: 11.5px;
    color: var(--ltxt);
    font-weight: 500;
    margin-bottom: 6px;
}

.myplan-validity-bar {
    height: 6px;
    background: var(--tea);
    border-radius: 4px;
    overflow: hidden;
}

.myplan-validity-fill {
    height: 100%;
    background: linear-gradient(to right, var(--ygreen), var(--hunter));
    border-radius: 4px;
    transition: width .6s ease;
}

.myplan-fill--warning {
    background: linear-gradient(to right, #f59e0b, #d97706);
}

/* ── RENEW BANNER ── */
.myplan-renew-wrap {
    margin-top: 8px;
}

.myplan-renew-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 60%, #1a3318 100%);
    border-radius: 16px;
    padding: 24px 28px;
    position: relative;
    overflow: hidden;
    flex-wrap: wrap;
}

.myplan-renew-card::before {
    content: '';
    position: absolute;
    right: -30px;
    top: -30px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(159, 194, 82, .08);
    border: 1px solid rgba(159, 194, 82, .1);
    pointer-events: none;
}

.myplan-renew-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    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;
}

.myplan-renew-text {
    flex: 1;
    min-width: 180px;
}

.myplan-renew-text h4 {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 4px;
}

.myplan-renew-text p {
    font-size: 13px;
    color: rgba(255, 255, 255, .6);
    margin: 0;
}


/* USER ENQUIRY PAGE */
/*OUTBOUND*/
/* ── SECTION HEADER ── */
.enq-section-hdr {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 0 16px;
    margin-bottom: 20px;
    border-bottom: 1.5px solid var(--tea);
}

.enq-section-hdr>i {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    background: var(--hunter);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ygreen);
    font-size: 17px;
}

.enq-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 3px;
}

.enq-section-sub {
    font-size: 12.5px;
    color: var(--muted);
    margin: 0;
}

/* ── GRID ── */
.enq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 24px;
}

/* ── CARD ── */
.enq-card {
    background: #fff;
    border: 1.5px solid var(--tea);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(70, 103, 64, .06);
    display: flex;
    flex-direction: column;
    transition: all .25s;
}

.enq-card:hover {
    box-shadow: 0 8px 28px rgba(70, 103, 64, .12);
    border-color: rgba(70, 103, 64, .2);
}

/* Card header */
.enq-card-hdr {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    background: linear-gradient(135deg, #EAF3DD 0%, #f4f9ee 100%);
    border-bottom: 1.5px solid var(--tea);
    flex-wrap: wrap;
}

.enq-card-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--hunter);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
}

.enq-card-hdr-text {
    flex: 1;
    min-width: 0;
}

.enq-card-name {
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 2px;
    line-height: 1.3;
}

.enq-card-biz {
    font-size: 12px;
    color: var(--muted);
}

/* Status */
.enq-status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
}

.enq-status--accepted {
    background: rgba(34, 197, 94, .1);
    color: #16a34a;
    border: 1px solid rgba(34, 197, 94, .2);
}

.enq-status--rejected {
    background: rgba(239, 68, 68, .1);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, .2);
}

.enq-status--pending {
    background: rgba(234, 179, 8, .1);
    color: #ca8a04;
    border: 1px solid rgba(234, 179, 8, .2);
}

/* Body */
.enq-card-body {
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.enq-info-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.enq-info-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    border-radius: 8px;
    background: var(--beige);
    border: 1px solid var(--tea);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hunter);
    font-size: 12px;
}

.enq-info-text {
    flex: 1;
    min-width: 0;
}

.enq-info-label {
    display: block;
    font-size: 10.5px;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 2px;
}

.enq-info-value {
    display: block;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--dark);
    line-height: 1.4;
}

.enq-link {
    color: var(--hunter);
    text-decoration: none;
}

.enq-link:hover {
    color: var(--ygreen);
    text-decoration: underline;
}

/* Contact revealed box */
.enq-contact-reveal {
    background: rgba(70, 103, 64, .06);
    border: 1.5px solid rgba(70, 103, 64, .2);
    border-radius: 10px;
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.enq-contact-reveal p {
    font-size: 13px;
    color: var(--dark);
    margin: 0;
}

.enq-contact-reveal a {
    color: var(--hunter);
    font-weight: 600;
    text-decoration: none;
}

.enq-contact-reveal a:hover {
    color: var(--ygreen);
}

/* Footer actions */
.enq-card-footer {
    padding: 12px 18px;
    border-top: 1px solid var(--tea);
    background: var(--offwhite);
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.enq-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 12.5px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    transition: all .2s;
    border: 1.5px solid;
    background: transparent;
}

.enq-btn--accept {
    background: linear-gradient(135deg, var(--ygreen), var(--hunter));
    border-color: transparent;
    color: #fff;
    flex: 1;
    justify-content: center;
}

.enq-btn--accept:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(70, 103, 64, .3);
}

.enq-btn--reject {
    border-color: #fca5a5;
    color: #dc2626;
}

.enq-btn--reject:hover {
    background: #fef2f2;
    border-color: #dc2626;
}

/* Empty */
.enq-empty {
    text-align: center;
    padding: 60px 20px;
    background: #fff;
    border: 1.5px solid var(--tea);
    border-radius: 16px;
}

.enq-empty i {
    font-size: 44px;
    display: block;
    margin-bottom: 14px;
    color: var(--tea);
}

.enq-empty h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 8px;
}

.enq-empty p {
    font-size: 13.5px;
    color: var(--ltxt);
}

/* Pagination */
.enq-pagination {
    display: flex;
    justify-content: center;
    margin-top: 8px;
}



/*INBOUND*/
/* ── SECTION HEADER ── */
.enq-section-hdr {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 0 16px;
    margin-bottom: 20px;
    border-bottom: 1.5px solid var(--tea);
}

.enq-section-hdr>i {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    background: var(--hunter);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ygreen);
    font-size: 17px;
}

.enq-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 3px;
}

.enq-section-sub {
    font-size: 12.5px;
    color: var(--muted);
    margin: 0;
}

/* ── GRID ── */
.enq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 24px;
}

/* ── CARD ── */
.enq-card {
    background: #fff;
    border: 1.5px solid var(--tea);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(70, 103, 64, .06);
    display: flex;
    flex-direction: column;
    transition: all .25s;
}

.enq-card:hover {
    box-shadow: 0 8px 28px rgba(70, 103, 64, .12);
    border-color: rgba(70, 103, 64, .2);
}

/* Card header */
.enq-card-hdr {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    background: linear-gradient(135deg, #EAF3DD 0%, #f4f9ee 100%);
    border-bottom: 1.5px solid var(--tea);
    flex-wrap: wrap;
}

.enq-card-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--hunter);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
}

.enq-card-hdr-text {
    flex: 1;
    min-width: 0;
}

.enq-card-name {
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 2px;
    line-height: 1.3;
}

.enq-card-biz {
    font-size: 12px;
    color: var(--muted);
}

/* Status */
.enq-status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
}

.enq-status--accepted {
    background: rgba(34, 197, 94, .1);
    color: #16a34a;
    border: 1px solid rgba(34, 197, 94, .2);
}

.enq-status--rejected {
    background: rgba(239, 68, 68, .1);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, .2);
}

.enq-status--pending {
    background: rgba(234, 179, 8, .1);
    color: #ca8a04;
    border: 1px solid rgba(234, 179, 8, .2);
}

/* Body */
.enq-card-body {
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.enq-info-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.enq-info-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    border-radius: 8px;
    background: var(--beige);
    border: 1px solid var(--tea);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hunter);
    font-size: 12px;
}

.enq-info-text {
    flex: 1;
    min-width: 0;
}

.enq-info-label {
    display: block;
    font-size: 10.5px;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 2px;
}

.enq-info-value {
    display: block;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--dark);
    line-height: 1.4;
}

.enq-link {
    color: var(--hunter);
    text-decoration: none;
}

.enq-link:hover {
    color: var(--ygreen);
    text-decoration: underline;
}

/* Contact revealed box */
.enq-contact-reveal {
    background: rgba(70, 103, 64, .06);
    border: 1.5px solid rgba(70, 103, 64, .2);
    border-radius: 10px;
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.enq-contact-reveal p {
    font-size: 13px;
    color: var(--dark);
    margin: 0;
}

.enq-contact-reveal a {
    color: var(--hunter);
    font-weight: 600;
    text-decoration: none;
}

.enq-contact-reveal a:hover {
    color: var(--ygreen);
}

/* Footer actions */
.enq-card-footer {
    padding: 12px 18px;
    border-top: 1px solid var(--tea);
    background: var(--offwhite);
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.enq-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 12.5px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    transition: all .2s;
    border: 1.5px solid;
    background: transparent;
}

.enq-btn--accept {
    background: linear-gradient(135deg, var(--ygreen), var(--hunter));
    border-color: transparent;
    color: #fff;
    flex: 1;
    justify-content: center;
}

.enq-btn--accept:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(70, 103, 64, .3);
}

.enq-btn--reject {
    border-color: #fca5a5;
    color: #dc2626;
}

.enq-btn--reject:hover {
    background: #fef2f2;
    border-color: #dc2626;
}

/* Empty */
.enq-empty {
    text-align: center;
    padding: 60px 20px;
    background: #fff;
    border: 1.5px solid var(--tea);
    border-radius: 16px;
}

.enq-empty i {
    font-size: 44px;
    display: block;
    margin-bottom: 14px;
    color: var(--tea);
}

.enq-empty h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 8px;
}

.enq-empty p {
    font-size: 13.5px;
    color: var(--ltxt);
}

/* Pagination */
.enq-pagination {
    display: flex;
    justify-content: center;
    margin-top: 8px;
}



/*INDEX*/
.enq-hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 55%, #1a3318 100%);
    padding: 56px 0 48px;
    position: relative;
    overflow: hidden;
}

.enq-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 70% at 80% 50%, rgba(159, 194, 82, .1) 0%, transparent 65%);
    pointer-events: none;
}

.enq-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.enq-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: 5px 16px;
    font-size: 11px;
    font-weight: 700;
    color: var(--ygreen);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.enq-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -.025em;
    margin-bottom: 10px;
}

.enq-hero-title em {
    font-style: italic;
    color: var(--ygreen);
}

.enq-hero-desc {
    font-size: 14.5px;
    color: rgba(255, 255, 255, .6);
    font-weight: 300;
    margin: 0;
}

.enq-main {
    padding: 28px 36px 60px !important;
    flex: 1 !important;
    min-width: 0 !important;
    width: 100% !important;
}

.enq-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 600;
    color: var(--hunter);
    text-decoration: none;
    padding: 7px 16px;
    border: 1.5px solid var(--tea);
    border-radius: 50px;
    background: #fff;
    margin-bottom: 22px;
    transition: all .2s;
}

.enq-back-btn:hover {
    border-color: var(--hunter);
    background: var(--beige);
    color: var(--dark);
}

.enq-tabs-wrap {
    display: flex;
    gap: 8px;
    background: #fff;
    border: 1.5px solid var(--tea);
    border-radius: 14px;
    padding: 6px;
    width: fit-content;
    margin-bottom: 24px;
}

.enq-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 10px;
    border: none;
    background: transparent;
    font-family: 'DM Sans', sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--ltxt);
    cursor: pointer;
    transition: all .2s;
    white-space: nowrap;
}

.enq-tab i {
    font-size: 13px;
}

.enq-tab:hover {
    background: var(--beige);
    color: var(--hunter);
}

.enq-tab.active {
    background: var(--hunter);
    color: #fff;
    box-shadow: 0 3px 12px rgba(70, 103, 64, .25);
}

.enq-tab.active i {
    color: var(--ygreen);
}

.enq-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 32px;
    font-size: 14px;
    color: var(--ltxt);
}

.enq-loading i {
    color: var(--hunter);
    font-size: 18px;
}

/*INDENTITY VERIFICATION*/
.idv-hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 55%, #1a3318 100%);
    padding: 56px 0 48px;
    position: relative;
    overflow: hidden;
}

.idv-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 70% at 80% 50%, rgba(159, 194, 82, .1) 0%, transparent 65%);
    pointer-events: none;
}

.idv-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.idv-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: 5px 16px;
    font-size: 11px;
    font-weight: 700;
    color: var(--ygreen);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.idv-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -.025em;
    margin-bottom: 10px;
}

.idv-hero-title em {
    font-style: italic;
    color: var(--ygreen);
}

.idv-hero-desc {
    font-size: 14.5px;
    color: rgba(255, 255, 255, .6);
    font-weight: 300;
    margin: 0;
}

.idv-main {
    padding: 28px 36px 60px !important;
    flex: 1 !important;
    min-width: 0 !important;
    width: 100% !important;
}

.idv-stepper {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 28px;
    padding: 20px 24px;
    background: #fff;
    border: 1.5px solid var(--tea);
    border-radius: 14px;
}

.idv-step-track {
    position: absolute;
    top: 32px;
    left: 80px;
    right: 80px;
    height: 3px;
    background: var(--tea);
    border-radius: 4px;
    z-index: 0;
}

.idv-step-progress {
    height: 100%;
    background: linear-gradient(to right, var(--ygreen), var(--hunter));
    border-radius: 4px;
}

.idv-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    position: relative;
    z-index: 1;
    flex: 1;
}

.idv-step span {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    border: 2.5px solid var(--tea);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--muted);
}

.idv-step small {
    font-size: 11px;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .06em;
    white-space: nowrap;
}

.idv-step.active span {
    background: var(--hunter);
    border-color: var(--hunter);
    color: #fff;
    box-shadow: 0 3px 12px rgba(70, 103, 64, .3);
}

.idv-step.active small {
    color: var(--hunter);
}

.idv-step.done span {
    background: var(--ygreen);
    border-color: var(--ygreen);
    color: #fff;
}

.idv-step.done small {
    color: var(--hunter);
}

.idv-card {
    background: #fff;
    border: 1.5px solid var(--tea);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(70, 103, 64, .06);
}

.idv-card-hdr {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 24px;
    background: var(--offwhite);
    border-bottom: 1.5px solid var(--tea);
}

.idv-card-hdr-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    background: var(--hunter);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ygreen);
    font-size: 17px;
}

.idv-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 3px;
}

.idv-card-sub {
    font-size: 12px;
    color: var(--muted);
    margin: 0;
}

.idv-status-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
}

.idv-status-icon--review {
    background: rgba(234, 179, 8, .12);
    color: #ca8a04;
    border: 2px solid rgba(234, 179, 8, .3);
}

.idv-status-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
}

.idv-status-desc {
    font-size: 14.5px;
    color: var(--ltxt);
    line-height: 1.75;
    margin-bottom: 28px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.idv-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    text-align: left;
    max-width: 500px;
    margin: 0 auto 24px;
}

.idv-timeline-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 14px 0;
    border-bottom: 1px solid var(--tea);
}

.idv-timeline-item:last-child {
    border-bottom: none;
}

.idv-timeline-dot {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
    background: var(--tea);
    color: var(--muted);
    border: 2px solid var(--tea);
}

.idv-timeline--done .idv-timeline-dot {
    background: var(--ygreen);
    color: #fff;
    border-color: var(--ygreen);
}

.idv-timeline--active .idv-timeline-dot {
    background: rgba(234, 179, 8, .15);
    color: #ca8a04;
    border-color: rgba(234, 179, 8, .4);
}

.idv-timeline-text strong {
    display: block;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2px;
}

.idv-timeline-text span {
    font-size: 12.5px;
    color: var(--ltxt);
}

.idv-learn-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--hunter);
    text-decoration: none;
    transition: color .2s;
}

.idv-learn-link:hover {
    color: var(--ygreen);
}


.disabled-look {
    pointer-events: none;
    background: #f5f5f5;
}

.img-width {
    width: 60%;
}

/* ── HERO ── */
.idv-hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 55%, #1a3318 100%);
    padding: 56px 0 48px;
    position: relative;
    overflow: hidden;
}

.idv-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 70% at 80% 50%, rgba(159, 194, 82, .1) 0%, transparent 65%);
    pointer-events: none;
}

.idv-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.idv-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: 5px 16px;
    font-size: 11px;
    font-weight: 700;
    color: var(--ygreen);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.idv-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -.025em;
    margin-bottom: 10px;
}

.idv-hero-title em {
    font-style: italic;
    color: var(--ygreen);
}

.idv-hero-desc {
    font-size: 14.5px;
    color: rgba(255, 255, 255, .6);
    font-weight: 300;
    margin: 0;
}

/* ── MAIN ── */
.idv-main {
    padding: 28px 36px 60px !important;
    flex: 1 !important;
    min-width: 0 !important;
    width: 100% !important;
}

/* ── STEPPER ── */
.idv-stepper {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 28px;
    padding: 20px 24px;
    background: #fff;
    border: 1.5px solid var(--tea);
    border-radius: 14px;
}

.idv-step-track {
    position: absolute;
    top: 32px;
    left: 80px;
    right: 80px;
    height: 3px;
    background: var(--tea);
    border-radius: 4px;
    z-index: 0;
}

.idv-step-progress {
    height: 100%;
    background: linear-gradient(to right, var(--ygreen), var(--hunter));
    border-radius: 4px;
    transition: width .4s ease;
}

.idv-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    position: relative;
    z-index: 1;
    flex: 1;
}

.idv-step span {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    border: 2.5px solid var(--tea);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--muted);
    transition: all .25s;
}

.idv-step small {
    font-size: 11px;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .06em;
    white-space: nowrap;
}

.idv-step.active span {
    background: var(--hunter);
    border-color: var(--hunter);
    color: #fff;
    box-shadow: 0 3px 12px rgba(70, 103, 64, .3);
}

.idv-step.active small {
    color: var(--hunter);
}

.idv-step.done span {
    background: var(--ygreen);
    border-color: var(--ygreen);
    color: #fff;
}

.idv-step.done small {
    color: var(--hunter);
}

/* ── CARD ── */
.idv-card {
    background: #fff;
    border: 1.5px solid var(--tea);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(70, 103, 64, .06);
}

.idv-card-hdr {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 24px;
    background: var(--offwhite);
    border-bottom: 1.5px solid var(--tea);
}

.idv-card-hdr-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    background: var(--hunter);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ygreen);
    font-size: 17px;
}

.idv-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 3px;
}

.idv-card-sub {
    font-size: 12px;
    color: var(--muted);
    margin: 0;
}

.idv-card-body {
    padding: 28px 28px 32px;
}

/* Steps list */
.idv-steps-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 24px;
}

.idv-step-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px 0;
    border-bottom: 1px solid var(--tea);
    position: relative;
}

.idv-step-item:last-child {
    border-bottom: none;
}

.idv-step-num {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--hunter);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    margin-top: 2px;
}

.idv-step-text h6 {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 4px;
}

.idv-step-text p {
    font-size: 13.5px;
    color: var(--ltxt);
    margin: 0;
    line-height: 1.65;
}

/* Privacy notice */
.idv-privacy-notice {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 18px;
    background: var(--beige);
    border: 1px solid var(--tea);
    border-radius: 10px;
    font-size: 13px;
    color: var(--ltxt);
    line-height: 1.65;
}

.idv-privacy-notice i {
    color: var(--hunter);
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.idv-privacy-notice a {
    color: var(--hunter);
    font-weight: 600;
    text-decoration: none;
}

/* Start button */
.idv-start-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--ygreen), var(--hunter));
    color: #fff;
    border: none;
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(70, 103, 64, .3);
    transition: all .25s;
}

.idv-start-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(70, 103, 64, .42);
    color: #fff;
}

/* ── MODAL ── */
.idv-modal {
    border-radius: 16px !important;
    overflow: hidden;
}

.idv-modal-hdr {
    padding: 18px 24px;
    background: linear-gradient(135deg, var(--dark), var(--dark2));
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.idv-modal-hdr h5 {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.idv-modal-body {
    padding: 22px 24px;
}

.idv-modal-desc {
    font-size: 13.5px;
    color: var(--ltxt);
    line-height: 1.7;
}

.idv-modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    align-items: center;
    border-top: 1px solid var(--tea);
    padding-top: 16px;
}

/* Field */
.idv-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.idv-label {
    font-size: 11.5px;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: .05em;
    text-transform: uppercase;
}

.req {
    color: #dc2626;
    margin-left: 2px;
}

.idv-input-wrap {
    position: relative;
}

.idv-input-icon {
    position: absolute;
    left: 13px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted);
    font-size: 13px;
    pointer-events: none;
    z-index: 1;
}

.idv-input {
    width: 100%;
    height: 48px;
    padding: 0 14px 0 40px;
    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;
    appearance: auto;
}

.idv-input:focus {
    border-color: var(--hunter);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(70, 103, 64, .08);
}

.idv-select {
    cursor: pointer;
}

/* Consent */
.idv-consent-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--ltxt);
    line-height: 1.65;
    cursor: pointer;
    padding: 12px 14px;
    background: var(--beige);
    border-radius: 10px;
    border: 1px solid var(--tea);
}

.idv-consent-label input {
    accent-color: var(--hunter);
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    margin-top: 2px;
}

.idv-consent-label a {
    color: var(--hunter);
    font-weight: 600;
    text-decoration: none;
}

/* Video */
.idv-video {
    width: 100%;
    border-radius: 12px;
    border: 1.5px solid var(--tea);
    display: block;
}

.idv-cam-hint {
    font-size: 13px;
    color: var(--ltxt);
    margin-top: 10px;
    line-height: 1.6;
}


/* shared idv styles inlined below */
.idv-hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 55%, #1a3318 100%);
    padding: 56px 0 48px;
    position: relative;
    overflow: hidden;
}

.idv-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 70% at 80% 50%, rgba(159, 194, 82, .1) 0%, transparent 65%);
    pointer-events: none;
}

.idv-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.idv-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: 5px 16px;
    font-size: 11px;
    font-weight: 700;
    color: var(--ygreen);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.idv-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -.025em;
    margin-bottom: 10px;
}

.idv-hero-title em {
    font-style: italic;
    color: var(--ygreen);
}

.idv-hero-desc {
    font-size: 14.5px;
    color: rgba(255, 255, 255, .6);
    font-weight: 300;
    margin: 0;
}

.idv-main {
    padding: 28px 36px 60px !important;
    flex: 1 !important;
    min-width: 0 !important;
    width: 100% !important;
}

.idv-stepper {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 28px;
    padding: 20px 24px;
    background: #fff;
    border: 1.5px solid var(--tea);
    border-radius: 14px;
}

.idv-step-track {
    position: absolute;
    top: 32px;
    left: 80px;
    right: 80px;
    height: 3px;
    background: var(--tea);
    border-radius: 4px;
    z-index: 0;
}

.idv-step-progress {
    height: 100%;
    background: linear-gradient(to right, var(--ygreen), var(--hunter));
    border-radius: 4px;
}

.idv-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    position: relative;
    z-index: 1;
    flex: 1;
}

.idv-step span {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    border: 2.5px solid var(--tea);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--muted);
}

.idv-step small {
    font-size: 11px;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .06em;
    white-space: nowrap;
}

.idv-step.done span {
    background: var(--ygreen);
    border-color: var(--ygreen);
    color: #fff;
}

.idv-step.done small {
    color: var(--hunter);
}

.idv-card {
    background: #fff;
    border: 1.5px solid var(--tea);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(70, 103, 64, .06);
}

.idv-card-hdr {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 24px;
    background: var(--offwhite);
    border-bottom: 1.5px solid var(--tea);
}

.idv-card-hdr-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    background: var(--hunter);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ygreen);
    font-size: 17px;
}

.idv-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 3px;
}

.idv-card-sub {
    font-size: 12px;
    color: var(--muted);
    margin: 0;
}

.idv-status-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
}

.idv-status-icon--approved {
    background: rgba(34, 197, 94, .12);
    color: #16a34a;
    border: 2px solid rgba(34, 197, 94, .3);
}

.idv-status-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
}

.idv-status-desc {
    font-size: 14.5px;
    color: var(--ltxt);
    line-height: 1.75;
    margin-bottom: 24px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.idv-verified-badges {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.idv-verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    background: rgba(34, 197, 94, .1);
    border: 1px solid rgba(34, 197, 94, .25);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    color: #16a34a;
}

.idv-start-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--ygreen), var(--hunter));
    color: #fff;
    border: none;
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(70, 103, 64, .3);
    transition: all .25s;
}

.idv-start-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(70, 103, 64, .42);
    color: #fff;
}


/* ══════════════════════════════════════════════
   PLAN BUY PAGE — SHARED CSS
   Used by: plan_buy.blade.php
            guest_pass.blade.php
            custom-plan.blade.php
   ══════════════════════════════════════════════ */

/* ── HERO ── */
.pb-hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 55%, #1a3318 100%);
    padding: 56px 0 48px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.pb-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 70% at 80% 50%, rgba(159, 194, 82, .1) 0%, transparent 65%);
    pointer-events: none;
}

.pb-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 640px;
    margin: 0 auto;
}

.pb-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: 5px 16px;
    font-size: 11px;
    font-weight: 700;
    color: var(--ygreen);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.pb-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -.025em;
    margin-bottom: 10px;
}

.pb-hero-title em {
    font-style: italic;
    color: var(--ygreen);
}

.pb-hero-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, .6);
    font-weight: 300;
    margin: 0;
}

/* ── MAIN SECTION ── */
.pb-main {
    background: var(--offwhite);
    padding: 52px 0 80px;

}

/* ── LAYOUT: single centered card ── */
.pb-card {
    background: #fff;
    border: 1.5px solid var(--tea);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(70, 103, 64, .1);
    max-width: 680px;
    margin: 0 auto;
}

/* ── PLAN SUMMARY STRIP ── */
.pb-plan-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 28px;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
    flex-wrap: wrap;
}

.pb-plan-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.pb-plan-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(159, 194, 82, .15);
    border: 1px solid rgba(159, 194, 82, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ygreen);
    font-size: 18px;
    flex-shrink: 0;
}

.pb-plan-name {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 3px;
    line-height: 1.2;
}

.pb-plan-sub {
    font-size: 12px;
    color: rgba(255, 255, 255, .5);
    margin: 0;
}

.pb-plan-price {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--ygreen);
    white-space: nowrap;
    text-align: right;
}

.pb-plan-price small {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    color: rgba(255, 255, 255, .45);
    font-weight: 400;
    margin-top: 2px;
}

/* ── FORM BODY ── */
.pb-form-body {
    padding: 28px 28px 24px;
}

.pb-form-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    color: var(--hunter);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1.5px solid var(--tea);
}

/* ── FIELDS ── */
.pb-fields-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}

.pb-field-full {
    grid-column: 1 / -1;
}

.pb-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pb-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: .06em;
    text-transform: uppercase;
}

.pb-input-wrap {
    position: relative;
}

.pb-input-icon {
    position: absolute;
    left: 13px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted);
    font-size: 13px;
    pointer-events: none;
    z-index: 1;
}

.pb-input {
    width: 100%;
    height: 48px;
    padding: 0 14px 0 40px;
    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;
}

.pb-input:focus {
    border-color: var(--hunter);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(70, 103, 64, .08);
}

.pb-input::placeholder {
    color: var(--muted);
}

/* ── SUBMIT BTN ── */
.pb-submit-btn {
    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: 8px;
    letter-spacing: .04em;
    box-shadow: 0 4px 18px rgba(70, 103, 64, .3);
    transition: all .25s;
    margin-top: 6px;
}

.pb-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 26px rgba(70, 103, 64, .42);
    color: #fff;
}

/* ── NOTE BOX ── */
.pb-note {
    margin-top: 18px;
    padding: 14px 18px;
    background: #fff5f5;
    border: 1.5px solid #fecaca;
    border-radius: 10px;
    border-left: 4px solid #dc2626;
}

.pb-note-line {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: #dc2626;
    font-weight: 500;
    line-height: 1.6;
}

.pb-note-line+.pb-note-line {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid #fecaca;
}

.pb-note-line i {
    font-size: 13px;
    margin-top: 3px;
    flex-shrink: 0;
}

.pb-note-punjabi {
    font-size: 13.5px;
    font-weight: 600;
}


/* common pop up of submittion successfully */
#toast-container>.toast-success {
    background-color: #51a351 !important;
    /* green */
    color: #fff !important;
}

#toast-container>.toast-error {
    background-color: #bd362f !important;
    color: #fff !important;
}

#toast-container>.toast-info {
    background-color: #2f96b4 !important;
    color: #fff !important;
}

#toast-container>.toast-warning {
    background-color: #f89406 !important;
    color: #fff !important;
}

/*Monthly Activity Report*/
/*1.MEETINGS*/

/* ── HERO ── */
.mar-hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 55%, #1a3318 100%);
    padding: 48px 0 40px;
    position: relative;
    overflow: hidden;
}

.mar-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 70% at 80% 50%, rgba(159, 194, 82, .10) 0%, transparent 65%),
        radial-gradient(ellipse 40% 40% at 10% 80%, rgba(70, 103, 64, .20) 0%, transparent 60%);
    pointer-events: none;
}

.mar-hero-inner {
    position: relative;
    z-index: 2;
    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.mar-hero-left {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}


.mar-month-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, .1);
    border: 1.5px solid rgba(255, 255, 255, .18);
    border-radius: 50px;
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
    display: none;
}

.mar-month-pill i {
    color: var(--ygreen);
    font-size: 14px;
}


/* ── STEPPER ── */
.mar-stepper-wrap {
    background: #fff;
    border-bottom: 2px solid var(--tea);
    position: sticky;
    top: 60px;
    z-index: 200;
    box-shadow: 0 2px 12px rgba(70, 103, 64, .08);
}

.mar-stepper {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    max-width: 720px;
    margin: 0 auto;
}

.mar-step-num-active {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--hunter);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(70, 103, 64, .3);
}

.mar-step-active-label {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--hunter);
    letter-spacing: -.01em;
}

/* ── MAIN ── */
.mar-main {
    background: var(--offwhite);
    padding: 36px 0 72px;
    min-height: calc(100vh - 200px);
}

.mar-wrap {
    max-width: 720px;
    margin: 0 auto;
}


/* ── ENTRIES AREA ── */

/* ── ENTRY CARD ── */
.mar-entry-card {
    background: #fff;
    border: 1.5px solid var(--tea);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 2px 14px rgba(70, 103, 64, .06);
    margin-bottom: 18px;
    animation: entrySlideIn .3s ease;
}

@keyframes entrySlideIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Entry header */
.mar-entry-hdr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 22px;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
}

.mar-entry-hdr-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mar-entry-num {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    background: rgba(159, 194, 82, .15);
    border: 1px solid rgba(159, 194, 82, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--ygreen);
    flex-shrink: 0;
}

.mar-entry-hdr-title {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.mar-entry-hdr-sub {
    font-size: 11.5px;
    color: rgba(255, 255, 255, .45);
    margin: 0;
}

/* Entry body */
.mar-entry-body {
    padding: 22px 22px 18px;
}

/* Section label */
.mar-sec-label {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 10.5px;
    font-weight: 700;
    color: var(--hunter);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 1.5px solid var(--tea);
}

.mar-sec-label+.mar-sec-label,
.mar-fgrid+.mar-sec-label {
    margin-top: 20px;
}

/* Fields grid */
.mar-fgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 4px;
    align-items: start;
}

.mar-ff {
    grid-column: 1 / -1;
}

/* Field */
.mar-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.mar-label {
    font-size: 10.5px;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: .05em;
    text-transform: uppercase;
}

.mar-label .req {
    color: #dc2626;
    margin-left: 2px;
}

/* Inputs */
.mar-input,
.mar-select,
.mar-textarea {
    width: 100%;
    border: 1.5px solid var(--tea);
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13.5px;
    color: var(--dark);
    background: var(--offwhite);
    outline: none;
    transition: border-color .2s, box-shadow .2s, background .2s;
}

.mar-input,
.mar-select {
    height: 46px;
    padding: 0 13px;
}

.mar-select {
    cursor: pointer;
    appearance: auto;
}

.mar-textarea {
    height: 100px;
    padding: 11px 13px;
    resize: vertical;
    line-height: 1.6;
}

.mar-input:focus,
.mar-select:focus,
.mar-textarea:focus {
    border-color: var(--hunter);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(70, 103, 64, .08);
}

.mar-input::placeholder,
.mar-textarea::placeholder {
    color: var(--muted);
}

/* Search wrapper */
.mar-search-wrap {
    position: relative;
}

.mar-search-icon {
    position: absolute;
    left: 13px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted);
    font-size: 12px;
    pointer-events: none;
    z-index: 1;
}

.mar-search-wrap .mar-input {
    padding-left: 38px;
}

/* Dropdown */
.mar-dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1.5px solid var(--tea);
    border-radius: 12px;
    box-shadow: 0 10px 32px rgba(70, 103, 64, .14);
    z-index: 500;
    max-height: 220px;
    overflow-y: auto;
    display: none;
}

.mar-dropdown.open {
    display: block;
}

.mar-result {
    padding: 10px 14px;
    cursor: pointer;
    font-size: 13px;
    color: var(--dark);
    border-bottom: 1px solid var(--tea);
    transition: background .15s;
    line-height: 1.45;
}

.mar-result:last-child {
    border-bottom: none;
}

.mar-result:hover {
    background: var(--beige);
}

.mar-result strong {
    color: var(--dark);
    font-weight: 700;
}

.mar-result small {
    color: var(--ltxt);
    font-size: 11.5px;
}

/* Selected pill */
.mar-selected {
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 7px;
    padding: 8px 12px;
    background: rgba(70, 103, 64, .08);
    border: 1.5px solid rgba(70, 103, 64, .22);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--hunter);
}

.mar-selected.show {
    display: flex;
}

.mar-clear-sel {
    cursor: pointer;
    font-size: 12px;
    color: var(--muted);
    transition: color .2s;
    flex-shrink: 0;
}

.mar-clear-sel:hover {
    color: #dc2626;
}

/* Radio pills */
.mar-radio-group {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
}

.mar-radio-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 50px;
    border: 1.5px solid var(--tea);
    background: var(--offwhite);
    font-size: 12.5px;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    transition: all .2s;
    user-select: none;
}

.mar-radio-pill input[type="radio"] {
    display: none;
}

.mar-radio-pill.checked,
.mar-radio-pill:has(input:checked) {
    background: var(--hunter);
    border-color: var(--hunter);
    color: #fff;
    box-shadow: 0 3px 10px rgba(70, 103, 64, .25);
}

.mar-radio-pill:hover:not(.checked):not(:has(input:checked)) {
    border-color: var(--hunter);
    color: var(--hunter);
    background: var(--beige);
}

/* Upload */
.mar-upload-area {
    border: 2px dashed var(--tea);
    border-radius: 10px;
    padding: 18px 14px;
    text-align: center;
    background: var(--offwhite);
    cursor: pointer;
    position: relative;
    transition: border-color .2s, background .2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100px;
}

.mar-upload-area:hover {
    border-color: var(--hunter);
    background: var(--beige);
}

.mar-upload-area input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.mar-upload-area i {
    font-size: 22px;
    color: var(--muted);
    display: block;
    margin-bottom: 6px;
}

.mar-upload-area p {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--dark);
    margin: 0 0 2px;
}

.mar-upload-area span {
    font-size: 11px;
    color: var(--muted);
}

.mar-upload-preview {
    display: none;
    margin-top: 8px;
    border-radius: 8px;
    overflow: hidden;
    border: 1.5px solid var(--tea);
}

.mar-upload-preview img {
    width: 100%;
    max-height: 160px;
    object-fit: cover;
    display: block;
}


/* ── VALIDATION ERRORS ── */
.mar-err {
    display: block;
    font-size: 11px;
    color: #dc2626;
    font-weight: 600;
    margin-top: 4px;
    line-height: 1.4;
}

.mar-input-error {
    border-color: #dc2626 !important;
    background: #fef2f2 !important;
}

.mar-radio-error .mar-radio-pill {
    border-color: #dc2626 !important;
}

.mar-check-error .mar-check-item {
    border-color: #dc2626 !important;
    background: #fef2f2 !important;
}



/* ── FORM FOOTER ── */
.mar-form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.mar-footer-info {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    color: var(--muted);
}

.mar-footer-info i {
    color: var(--hunter);
    font-size: 12px;
}

/*2.REFERRALS*/
/* ── HERO ── */
.mar-hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 55%, #1a3318 100%);
    padding: 48px 0 40px;
    position: relative;
    overflow: hidden;
}

.mar-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 70% at 80% 50%, rgba(159, 194, 82, .10) 0%, transparent 65%),
        radial-gradient(ellipse 40% 40% at 10% 80%, rgba(70, 103, 64, .20) 0%, transparent 60%);
    pointer-events: none;
}




.mar-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -.02em;
    margin: 0 auto;
    text-align: center;
}

.mar-hero-title em {
    font-style: italic;
    color: var(--ygreen);
}


/* ── STEPPER ── */
.mar-stepper-wrap {
    background: #fff;
    border-bottom: 2px solid var(--tea);
    position: sticky;
    top: 60px;
    z-index: 200;
    box-shadow: 0 2px 12px rgba(70, 103, 64, .08);
}

.mar-stepper {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    max-width: 720px;
    margin: 0 auto;
}

.mar-step-num-active {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--hunter);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(70, 103, 64, .3);
}

.mar-step-active-label {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--hunter);
    letter-spacing: -.01em;
}


/* ── MAIN ── */
.mar-main {
    background: var(--offwhite);
    padding: 36px 0 72px;
    min-height: calc(100vh - 200px);
}

.mar-wrap {
    max-width: 720px;
    margin: 0 auto;
}


/* ── ENTRIES AREA ── */

/* ── ENTRY CARD ── */
.mar-entry-card {
    background: #fff;
    border: 1.5px solid var(--tea);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 2px 14px rgba(70, 103, 64, .06);
    margin-bottom: 18px;
    animation: entrySlideIn .3s ease;
}

@keyframes entrySlideIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Entry header */
.mar-entry-hdr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 22px;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
}

.mar-entry-hdr-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mar-entry-num {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    background: rgba(159, 194, 82, .15);
    border: 1px solid rgba(159, 194, 82, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--ygreen);
    flex-shrink: 0;
}

.mar-entry-hdr-title {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.mar-entry-hdr-sub {
    font-size: 11.5px;
    color: rgba(255, 255, 255, .45);
    margin: 0;
}

/* Entry body */
.mar-entry-body {
    padding: 22px 22px 18px;
}

/* Section label */
.mar-sec-label {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 10.5px;
    font-weight: 700;
    color: var(--hunter);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 1.5px solid var(--tea);
}

.mar-fgrid+.mar-sec-label,
.mar-sec-label+.mar-sec-label {
    margin-top: 20px;
}

/* Fields grid */
.mar-fgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 4px;
}

.mar-ff {
    grid-column: 1 / -1;
}

/* Field */
.mar-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.mar-label {
    font-size: 10.5px;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: .05em;
    text-transform: uppercase;
}

.mar-label .req {
    color: #dc2626;
    margin-left: 2px;
}

.mar-hint {
    font-size: 11.5px;
    color: var(--muted);
    margin: 0;
    line-height: 1.5;
}

/* Inputs */
.mar-input,
.mar-select,
.mar-textarea {
    width: 100%;
    border: 1.5px solid var(--tea);
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13.5px;
    color: var(--dark);
    background: var(--offwhite);
    outline: none;
    transition: border-color .2s, box-shadow .2s, background .2s;
}

.mar-input,
.mar-select {
    height: 46px;
    padding: 0 13px;
}

.mar-select {
    cursor: pointer;
    appearance: auto;
}

.mar-textarea {
    height: 95px;
    padding: 11px 13px;
    resize: vertical;
    line-height: 1.6;
}

.mar-input:focus,
.mar-select:focus,
.mar-textarea:focus {
    border-color: var(--hunter);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(70, 103, 64, .08);
}

.mar-input::placeholder,
.mar-textarea::placeholder {
    color: var(--muted);
}

/* Search */
.mar-search-wrap {
    position: relative;
}

.mar-search-icon {
    position: absolute;
    left: 13px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted);
    font-size: 12px;
    pointer-events: none;
    z-index: 1;
}

.mar-search-wrap .mar-input {
    padding-left: 38px;
}

.mar-dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1.5px solid var(--tea);
    border-radius: 12px;
    box-shadow: 0 10px 32px rgba(70, 103, 64, .14);
    z-index: 500;
    max-height: 220px;
    overflow-y: auto;
    display: none;
}

.mar-dropdown.open {
    display: block;
}

.mar-result {
    padding: 10px 14px;
    cursor: pointer;
    font-size: 13px;
    color: var(--dark);
    border-bottom: 1px solid var(--tea);
    transition: background .15s;
    line-height: 1.45;
}

.mar-result:last-child {
    border-bottom: none;
}

.mar-result:hover {
    background: var(--beige);
}

.mar-result strong {
    font-weight: 700;
}

.mar-result small {
    color: var(--ltxt);
    font-size: 11.5px;
}

.mar-selected {
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 7px;
    padding: 8px 12px;
    background: rgba(70, 103, 64, .08);
    border: 1.5px solid rgba(70, 103, 64, .22);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--hunter);
}

.mar-selected.show {
    display: flex;
}

.mar-clear-sel {
    cursor: pointer;
    font-size: 12px;
    color: var(--muted);
    transition: color .2s;
    flex-shrink: 0;
}

.mar-clear-sel:hover {
    color: #dc2626;
}

/* Radio pills */
.mar-radio-group {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
}

.mar-radio-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 50px;
    border: 1.5px solid var(--tea);
    background: var(--offwhite);
    font-size: 12.5px;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    transition: all .2s;
    user-select: none;
}

.mar-radio-pill input[type="radio"] {
    display: none;
}

.mar-radio-pill.checked,
.mar-radio-pill:has(input:checked) {
    background: var(--hunter);
    border-color: var(--hunter);
    color: #fff;
    box-shadow: 0 3px 10px rgba(70, 103, 64, .25);
}

.mar-radio-pill:hover:not(.checked):not(:has(input:checked)) {
    border-color: var(--hunter);
    color: var(--hunter);
    background: var(--beige);
}

/* Checkbox group */
.mar-check-group {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.mar-check-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 11px 14px;
    background: var(--offwhite);
    border: 1.5px solid var(--tea);
    border-radius: 10px;
    cursor: pointer;
    transition: border-color .2s, background .2s;
}

.mar-check-item:hover {
    border-color: var(--hunter);
    background: var(--beige);
}

.mar-check-item input[type="checkbox"] {
    accent-color: var(--hunter);
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    margin-top: 2px;
}

.mar-check-item label {
    font-size: 13px;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    line-height: 1.5;
    margin: 0;
}

.mar-check-item:has(input:checked) {
    border-color: rgba(70, 103, 64, .3);
    background: rgba(70, 103, 64, .06);
}

.mar-check-item:has(input:checked) label {
    color: var(--hunter);
    font-weight: 600;
}

/* Person rows */
.mar-persons-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mar-person-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: var(--offwhite);
    border: 1.5px solid var(--tea);
    border-radius: 10px;
    animation: entrySlideIn .25s ease;
}

.mar-person-row .mar-input {
    height: 40px;
    font-size: 13px;
}

.mar-person-remove {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    border-radius: 7px;
    background: rgba(239, 68, 68, .1);
    border: 1px solid rgba(239, 68, 68, .2);
    color: #ef4444;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .2s;
}

.mar-person-remove:hover {
    background: rgba(239, 68, 68, .25);
}

.mar-add-person-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    padding: 7px 16px;
    border: 1.5px solid var(--tea);
    border-radius: 8px;
    background: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--hunter);
    cursor: pointer;
    transition: all .2s;
}

.mar-add-person-btn:hover {
    border-color: var(--hunter);
    background: var(--beige);
}


/* ── VALIDATION ERRORS ── */
.mar-err {
    display: block;
    font-size: 11px;
    color: #dc2626;
    font-weight: 600;
    margin-top: 4px;
    line-height: 1.4;
}

.mar-input-error {
    border-color: #dc2626 !important;
    background: #fef2f2 !important;
}

.mar-radio-error .mar-radio-pill {
    border-color: #dc2626 !important;
}

.mar-check-error .mar-check-item {
    border-color: #dc2626 !important;
    background: #fef2f2 !important;
}


/* ── FORM FOOTER ── */
.mar-form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.mar-footer-info {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    color: var(--muted);
}

.mar-footer-info i {
    color: var(--hunter);
    font-size: 12px;
}


/*3.BUSINESS GIVEN*/
/* ── HERO ── */
.mar-hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 55%, #1a3318 100%);
    padding: 48px 0 40px;
    position: relative;
    overflow: hidden;
}

.mar-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 70% at 80% 50%, rgba(159, 194, 82, .10) 0%, transparent 65%),
        radial-gradient(ellipse 40% 40% at 10% 80%, rgba(70, 103, 64, .20) 0%, transparent 60%);
    pointer-events: none;
}


.mar-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: 5px 14px;
    font-size: 11px;
    font-weight: 700;
    color: var(--ygreen);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 10px;
    margin: 0 auto;
    text-align: center;
}



/* ── STEPPER ── */
.mar-stepper-wrap {
    background: #fff;
    border-bottom: 2px solid var(--tea);
    position: sticky;
    top: 60px;
    z-index: 200;
    box-shadow: 0 2px 12px rgba(70, 103, 64, .08);
}

.mar-stepper {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    max-width: 720px;
    margin: 0 auto;
}

.mar-step-num-active {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--hunter);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(70, 103, 64, .3);
}

.mar-step-active-label {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--hunter);
    letter-spacing: -.01em;
}



/* ── MAIN ── */
.mar-main {
    background: var(--offwhite);
    padding: 36px 0 72px;
    min-height: calc(100vh - 200px);
}

.mar-wrap {
    max-width: 720px;
    margin: 0 auto;
}


/* ── ENTRIES AREA ── */

/* ── ENTRY CARD ── */
.mar-entry-card {
    background: #fff;
    border: 1.5px solid var(--tea);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 2px 14px rgba(70, 103, 64, .06);
    margin-bottom: 18px;
    animation: entrySlideIn .3s ease;
}

@keyframes entrySlideIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Entry header */
.mar-entry-hdr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 22px;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
}

.mar-entry-hdr-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mar-entry-num {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    background: rgba(159, 194, 82, .15);
    border: 1px solid rgba(159, 194, 82, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--ygreen);
    flex-shrink: 0;
}

.mar-entry-hdr-title {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.mar-entry-hdr-sub {
    font-size: 11.5px;
    color: rgba(255, 255, 255, .45);
    margin: 0;
}

/* Entry body */
.mar-entry-body {
    padding: 22px 22px 18px;
}

/* Section label */
.mar-sec-label {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 10.5px;
    font-weight: 700;
    color: var(--hunter);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 1.5px solid var(--tea);
}

.mar-fgrid+.mar-sec-label {
    margin-top: 20px;
}

/* Fields grid */
.mar-fgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 4px;
}

.mar-ff {
    grid-column: 1 / -1;
}

/* Field */
.mar-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.mar-label {
    font-size: 10.5px;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: .05em;
    text-transform: uppercase;
}

.mar-label .req {
    color: #dc2626;
    margin-left: 2px;
}

.mar-hint {
    font-size: 11.5px;
    color: var(--muted);
    margin: 0;
    line-height: 1.5;
}

/* Inputs */
.mar-input,
.mar-select,
.mar-textarea {
    width: 100%;
    border: 1.5px solid var(--tea);
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13.5px;
    color: var(--dark);
    background: var(--offwhite);
    outline: none;
    transition: border-color .2s, box-shadow .2s, background .2s;
}

.mar-input,
.mar-select {
    height: 46px;
    padding: 0 13px;
}

.mar-select {
    cursor: pointer;
    appearance: auto;
}

.mar-textarea {
    height: 95px;
    padding: 11px 13px;
    resize: vertical;
    line-height: 1.6;
}

.mar-input:focus,
.mar-select:focus,
.mar-textarea:focus {
    border-color: var(--hunter);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(70, 103, 64, .08);
}

.mar-input::placeholder,
.mar-textarea::placeholder {
    color: var(--muted);
}

/* ── AMOUNT INPUT with ₹ prefix ── */
.mar-amount-wrap {
    position: relative;
}

.mar-amount-prefix {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--beige);
    border: 1.5px solid var(--tea);
    border-right: none;
    border-radius: 10px 0 0 10px;
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--hunter);
    pointer-events: none;
}

.mar-amount-wrap .mar-input {
    padding-left: 50px;
    border-radius: 0 10px 10px 0;
}

.mar-amount-wrap .mar-input:focus {
    border-color: var(--hunter);
    box-shadow: 0 0 0 3px rgba(70, 103, 64, .08);
}

/* Search */
.mar-search-wrap {
    position: relative;
}

.mar-search-icon {
    position: absolute;
    left: 13px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted);
    font-size: 12px;
    pointer-events: none;
    z-index: 1;
}

.mar-search-wrap .mar-input {
    padding-left: 38px;
}

.mar-dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1.5px solid var(--tea);
    border-radius: 12px;
    box-shadow: 0 10px 32px rgba(70, 103, 64, .14);
    z-index: 500;
    max-height: 220px;
    overflow-y: auto;
    display: none;
}

.mar-dropdown.open {
    display: block;
}

.mar-result {
    padding: 10px 14px;
    cursor: pointer;
    font-size: 13px;
    color: var(--dark);
    border-bottom: 1px solid var(--tea);
    transition: background .15s;
    line-height: 1.45;
}

.mar-result:last-child {
    border-bottom: none;
}

.mar-result:hover {
    background: var(--beige);
}

.mar-result strong {
    font-weight: 700;
}

.mar-result small {
    color: var(--ltxt);
    font-size: 11.5px;
}

.mar-selected {
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 7px;
    padding: 8px 12px;
    background: rgba(70, 103, 64, .08);
    border: 1.5px solid rgba(70, 103, 64, .22);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--hunter);
}

.mar-selected.show {
    display: flex;
}

.mar-clear-sel {
    cursor: pointer;
    font-size: 12px;
    color: var(--muted);
    transition: color .2s;
    flex-shrink: 0;
}

.mar-clear-sel:hover {
    color: #dc2626;
}

/* Radio pills */
.mar-radio-group {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
}

.mar-radio-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 50px;
    border: 1.5px solid var(--tea);
    background: var(--offwhite);
    font-size: 12.5px;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    transition: all .2s;
    user-select: none;
}

.mar-radio-pill input[type="radio"] {
    display: none;
}

.mar-radio-pill.checked,
.mar-radio-pill:has(input:checked) {
    background: var(--hunter);
    border-color: var(--hunter);
    color: #fff;
    box-shadow: 0 3px 10px rgba(70, 103, 64, .25);
}

.mar-radio-pill:hover:not(.checked):not(:has(input:checked)) {
    border-color: var(--hunter);
    color: var(--hunter);
    background: var(--beige);
}

/* Status pill — special: Given=green, In Discussion=amber */
.mar-radio-pill.style-given.checked,
.mar-radio-pill.style-given:has(input:checked) {
    background: linear-gradient(135deg, var(--ygreen), var(--hunter));
    border-color: transparent;
    box-shadow: 0 3px 12px rgba(70, 103, 64, .35);
}

.mar-radio-pill.style-discussion.checked,
.mar-radio-pill.style-discussion:has(input:checked) {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-color: transparent;
    box-shadow: 0 3px 12px rgba(245, 158, 11, .35);
}


/* ── VALIDATION ERRORS ── */
.mar-err {
    display: block;
    font-size: 11px;
    color: #dc2626;
    font-weight: 600;
    margin-top: 4px;
    line-height: 1.4;
}

.mar-input-error {
    border-color: #dc2626 !important;
    background: #fef2f2 !important;
}

.mar-radio-error .mar-radio-pill {
    border-color: #dc2626 !important;
}

.mar-check-error .mar-check-item {
    border-color: #dc2626 !important;
    background: #fef2f2 !important;
}


/* ── SUBMIT FOOTER ── */
.mar-form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.mar-footer-info {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    color: var(--muted);
}

.mar-footer-info i {
    color: var(--hunter);
    font-size: 12px;
}

/* Submit = gradient green — final step */
.mar-submit-final {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 32px;
    background: linear-gradient(135deg, var(--ygreen), var(--hunter));
    border: none;
    border-radius: 10px;
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(70, 103, 64, .3);
    transition: all .25s;
}

.mar-submit-final:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 26px rgba(70, 103, 64, .42);
    color: #fff;
}


/*activity report landing page*/
/* ── HERO ── */
.mar-land-hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 55%, #1a3318 100%);
    padding: 56px 0 48px;
    position: relative;
    overflow: hidden;
}

.mar-land-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 70% at 80% 50%, rgba(159, 194, 82, .10) 0%, transparent 65%),
        radial-gradient(ellipse 40% 40% at 10% 80%, rgba(70, 103, 64, .20) 0%, transparent 60%);
    pointer-events: none;
}

.mar-land-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.mar-land-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: 5px 16px;
    font-size: 11px;
    font-weight: 700;
    color: var(--ygreen);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.mar-land-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -.025em;
    margin-bottom: 10px;
}

.mar-land-hero-title em {
    font-style: italic;
    color: var(--ygreen);
}

.mar-land-hero-desc {
    font-size: 14.5px;
    color: rgba(255, 255, 255, .6);
    font-weight: 300;
    margin: 0;
    line-height: 1.7;
}

/* ── MAIN ── */
.mar-land-main {
    padding: 28px 36px 60px;
}

/* ── CARD ── */
.mar-land-card {
    background: #fff;
    border: 1.5px solid var(--tea);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(70, 103, 64, .06);
    transition: box-shadow .25s, transform .25s, border-color .25s;
}

.mar-land-card:hover {
    box-shadow: 0 10px 36px rgba(70, 103, 64, .13);
    transform: translateY(-3px);
    border-color: rgba(70, 103, 64, .25);
}

/* Card icon */
.mar-land-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.mar-land-card-icon--green {
    background: rgba(70, 103, 64, .1);
    color: var(--hunter);
    border: 1.5px solid rgba(70, 103, 64, .18);
}

.mar-land-card-icon--gold {
    background: rgba(212, 175, 55, .12);
    color: #b8962e;
    border: 1.5px solid rgba(212, 175, 55, .25);
}

.mar-land-card-icon--blue {
    background: rgba(59, 130, 246, .1);
    color: #2563eb;
    border: 1.5px solid rgba(59, 130, 246, .2);
}

/* Card text */
.mar-land-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -.01em;
    line-height: 1.25;
}

.mar-land-card-desc {
    font-size: 13px;
    color: var(--ltxt);
    line-height: 1.65;
}

/* Card divider */
.mar-land-card-divider {
    height: 1px;
    background: var(--tea);
    margin-bottom: 0;
}

/* Buttons */
.mar-land-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 11px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none;
    transition: all .25s;
    letter-spacing: .02em;
    border: none;
    cursor: pointer;
}

.mar-land-btn--green {
    background: linear-gradient(135deg, var(--ygreen), var(--hunter));
    color: #fff;
    box-shadow: 0 4px 14px rgba(70, 103, 64, .28);
}

.mar-land-btn--green:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(70, 103, 64, .4);
    color: #fff;
}

.mar-land-btn--gold {
    background: linear-gradient(135deg, #f0c040, #c8941a);
    color: #fff;
    box-shadow: 0 4px 14px rgba(212, 175, 55, .3);
}

.mar-land-btn--gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, .45);
    color: #fff;
}

.mar-land-btn--blue {
    background: linear-gradient(135deg, #60a5fa, #2563eb);
    color: #fff;
    box-shadow: 0 4px 14px rgba(59, 130, 246, .28);
}

.mar-land-btn--blue:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(59, 130, 246, .4);
    color: #fff;
}

/* ══════════════════════════════════════════════
   TRANSPARENT PILL BUTTONS (like txn-hero-badge)
   ══════════════════════════════════════════════ */

.mar-transparent-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 18px;
    background: transparent;
    border: 1.5px solid var(--tea);
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    transition: all .2s;
    text-decoration: none;
    white-space: nowrap;
}

.mar-transparent-btn:hover {
    border-color: var(--hunter);
    color: var(--hunter);
    background: var(--beige);
}

.mar-transparent-btn i {
    font-size: 12px;
    color: var(--hunter);
}

.mar-transparent-btn--sm {
    padding: 5px 13px;
    font-size: 12px;
}

.view-hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 55%, #1a3318 100%);
    padding: 48px 0 40px;
    position: relative;
    overflow: hidden;
}

.view-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 70% at 80% 50%, rgba(159, 194, 82, .10) 0%, transparent 65%);
    pointer-events: none;
}

.view-hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.view-hero-inner>div:first-child {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.view-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: 5px 14px;
    font-size: 11px;
    font-weight: 700;
    color: var(--ygreen);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.view-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -.02em;
    margin: 0;
}

.view-hero-title em {
    font-style: italic;
    color: var(--ygreen);
}

.view-back-btn {
    display: inline-flex;
    margin-left: auto;
    align-items: center;
    gap: 7px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, .1);
    border: 1.5px solid rgba(255, 255, 255, .18);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: all .2s;
    flex-shrink: 0;
}

.view-back-btn:hover {
    background: rgba(255, 255, 255, .2);
    color: #fff;
}

.view-main {
    padding: 28px 36px 60px;
    flex: 1;
    min-width: 0;
    width: 100%;
}

.view-card {
    background: #fff;
    border: 1.5px solid var(--tea);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(70, 103, 64, .07);
    margin-bottom: 20px;
}

.view-card-hdr {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 24px;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
}

.view-card-hdr-icon {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    background: rgba(159, 194, 82, .15);
    border: 1px solid rgba(159, 194, 82, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ygreen);
    font-size: 16px;
    flex-shrink: 0;
}

.view-card-hdr-title {
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.view-card-body {
    padding: 22px 24px;
}

.view-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.view-info-item {
    padding: 14px 16px;
    border-bottom: 1px solid var(--tea);
    border-right: 1px solid var(--tea);
}

.view-info-item:nth-child(2n) {
    border-right: none;
}

.view-info-item:nth-last-child(-n+2) {
    border-bottom: none;
}

.view-info-item.full {
    grid-column: 1 / -1;
    border-right: none;
}

.view-info-item.full:last-child {
    border-bottom: none;
}

.view-info-label {
    display: block;
    font-size: 10.5px;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .09em;
    margin-bottom: 5px;
}

.view-info-value {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
    line-height: 1.55;
}

.view-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
}

.view-pill--green {
    background: rgba(70, 103, 64, .1);
    color: var(--hunter);
    border: 1px solid rgba(70, 103, 64, .2);
}

.view-pill--amber {
    background: rgba(245, 158, 11, .1);
    color: #b45309;
    border: 1px solid rgba(245, 158, 11, .2);
}

.view-methods-list {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.view-method-item {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13.5px;
    color: var(--dark);
}

.view-method-item i {
    color: var(--hunter);
    font-size: 12px;
    flex-shrink: 0;
}

.view-persons-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.view-person-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: var(--offwhite);
    border: 1px solid var(--tea);
    border-radius: 9px;
}

.view-person-row i {
    color: var(--hunter);
    font-size: 13px;
    flex-shrink: 0;
}

.view-person-name {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--dark);
}

.view-person-phone {
    font-size: 12.5px;
    color: var(--muted);
    margin-left: auto;
}
