/*
Theme Name: Pudumjee
Theme URI: #
Description: Pudumjee parent theme.
Author: Pudumjee
Version: 1.0.0
Text Domain: pudumjee
*/

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

/* =========================================
   DM SANS
========================================= */

@font-face {
    font-family: 'DM Sans';
    src: url('./fonts/DM-Sans-300.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DM Sans';
    src: url('./fonts/DM-Sans-400.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DM Sans';
    src: url('./fonts/DM-Sans-500.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DM Sans';
    src: url('./fonts/DM-Sans-600.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DM Sans';
    src: url('./fonts/DM-Sans-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}


/* =========================================
   PLAYFAIR DISPLAY
========================================= */

@font-face {
    font-family: 'Playfair Display';
    src: url('./fonts/Playfair-Display-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('./fonts/Playfair-Display-900.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('./fonts/Playfair-Display-700-Italic.woff2') format('woff2');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

:root {
    --mg: #E5007D;
    --nv: #2F2483;
    --lm: #AFCA05;
    --teal: #009BA4;
    --teal-dk: #007A82;
    --teal-lt: rgba(0, 155, 164, .08);
    --gold: #C8922A;
    --gold-lt: #FEF3DC;
    --gold-dk: #9A6E1A;
    --parchment: #F2EDE2;
    --parchment-2: #EBE4D5;
    --white: #FFFFFF;
    --ink: #1C1A18;
    --mid: #575450;
    --soft: #9A9590;
    --rule: rgba(47, 36, 131, .1);
    --rule-lt: rgba(47, 36, 131, .06);
    --serif: 'Playfair Display', serif;
    --sans: 'DM Sans', sans-serif;
}

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--sans);
    background: var(--white);
    color: var(--ink);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden
}

/* ANN */
.ann {
    background: linear-gradient(90deg, var(--nv), #3E33A8, var(--nv));
    background-size: 200%;
    animation: annscroll 9s linear infinite;
    padding: 9px 20px;
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .07em;
    color: #FFE8C8;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px
}

@keyframes annscroll {
    0% {
        background-position: 0
    }

    100% {
        background-position: 200%
    }
}

.ann-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold);
    animation: blink 1.4s infinite;
    flex-shrink: 0
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .15
    }
}

/* NAV */
.nav {
    position: sticky;
    top: 0;
    z-index: 99;
    height: 72px;
    background: rgba(242, 237, 226, .97);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--rule);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    box-shadow: 0 1px 18px rgba(47, 36, 131, .07)
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none
}

.nav-logo,
.nav-brand .custom-logo {
    height: 56px;
    width: auto;
    display: block
}

.nav-brand .custom-logo-link {
    display: flex;
    align-items: center;
    line-height: 0
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 18px;
    list-style: none;
    margin: 0;
    padding: 0
}

.nav-menu a {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .04em;
    color: var(--ink);
    text-decoration: none
}

.nav-menu a:hover {
    color: var(--teal)
}

.nav-divider {
    width: 1px;
    height: 38px;
    background: var(--rule);
    flex-shrink: 0
}

.nav-sub {
    font-size: 11px;
    line-height: 1.38
}

.nav-sub strong {
    display: block;
    color: var(--teal);
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    font-size: 11px
}

.nav-sub span {
    color: var(--soft)
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px
}

.nav-pill {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: var(--gold-dk);
    background: var(--gold-lt);
    border: 1px solid rgba(200, 146, 42, .3);
    padding: 6px 13px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 7px
}

.nav-pulse {
    width: 6px;
    height: 6px;
    background: #D94F0A;
    border-radius: 50%;
    animation: blink 1s infinite;
    flex-shrink: 0
}

.nav-cta {
    background: linear-gradient(135deg, var(--teal), var(--teal-dk));
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    font-family: var(--sans);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    box-shadow: 0 3px 14px rgba(0, 155, 164, .28);
    transition: transform .18s, box-shadow .18s
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 7px 22px rgba(0, 155, 164, .4)
}

.nav-sample {
    background: transparent;
    border: 1.5px solid var(--teal);
    color: var(--teal-dk);
    padding: 9px 16px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    font-family: var(--sans);
    transition: background .2s, color .2s
}

.nav-sample:hover {
    background: var(--teal);
    color: #fff
}

/* HERO — full viewport height */
.hero {
    position: relative;
    overflow: hidden;
    background: var(--white);
    height: calc(100vh - 92px);
    min-height: 560px;
    max-height: 900px
}

.hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100%
}

@media(max-width:800px) {
    .hero-inner {
        grid-template-columns: 1fr
    }
}

.hero-right {
    position: relative;
    overflow: hidden
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block
}

.hero-right::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--parchment) 0%, rgba(242, 237, 226, .5) 25%, transparent 50%)
}

@media(max-width:800px) {
    .hero-right {
        height: 260px
    }

    .hero-right::after {
        background: linear-gradient(180deg, transparent 55%, var(--parchment) 100%)
    }
}

.hero-left {
    padding: 64px 44px 56px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
    position: relative
}

.hero-left::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse 70% 60% at 15% 50%, rgba(0, 155, 164, .06), transparent 65%)
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 14px;
    position: relative;
    z-index: 1
}

.hero-eyebrow::before {
    content: '';
    width: 22px;
    height: 1.5px;
    background: var(--teal);
    flex-shrink: 0
}

.hero-brand {
    font-family: var(--serif);
    font-size: clamp(13px, 1.4vw, 16px);
    color: var(--teal);
    letter-spacing: .06em;
    margin-bottom: 10px;
    font-style: italic;
    position: relative;
    z-index: 1
}

.hero-h1 {
    font-family: var(--serif);
    font-size: clamp(28px, 3.2vw, 44px);
    line-height: 1.08;
    letter-spacing: -.015em;
    color: var(--ink);
    margin-bottom: 10px;
    position: relative;
    z-index: 1
}

.hero-h1 .mg {
    color: var(--mg)
}

.hero-h1 .teal {
    color: var(--teal)
}

.hero-kicker {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(13px, 1.2vw, 15px);
    color: var(--soft);
    margin-bottom: 16px;
    position: relative;
    z-index: 1
}

.hero-body {
    font-size: 13.5px;
    color: var(--mid);
    line-height: 1.76;
    max-width: 460px;
    font-weight: 300;
    margin-bottom: 24px;
    position: relative;
    z-index: 1
}

.hero-body strong {
    color: var(--ink);
    font-weight: 600
}

.hero-btns {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    position: relative;
    z-index: 1
}

.btn-primary {
    background: linear-gradient(135deg, var(--teal), var(--teal-dk));
    color: #fff;
    border: none;
    padding: 12px 24px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    font-family: var(--sans);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 18px rgba(0, 155, 164, .26);
    transition: transform .18s, box-shadow .18s
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 26px rgba(0, 155, 164, .36)
}

.btn-ghost {
    background: transparent;
    color: var(--nv);
    border: 1.5px solid var(--nv);
    padding: 11px 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .07em;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    font-family: var(--sans);
    text-decoration: none;
    transition: background .2s, color .2s
}

.btn-ghost:hover {
    background: var(--nv);
    color: #fff
}

.hero-urgency {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--gold-lt);
    border: 1px solid rgba(200, 146, 42, .3);
    border-radius: 24px;
    padding: 7px 16px;
    font-size: 11.5px;
    font-weight: 600;
    color: var(--gold-dk);
    letter-spacing: .02em;
    position: relative;
    z-index: 1
}

.urg-dot {
    width: 7px;
    height: 7px;
    background: #D94F0A;
    border-radius: 50%;
    animation: blink 1s infinite;
    flex-shrink: 0
}

/* FEST DIVIDER */
.fest-div {
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--teal), var(--mg), var(--lm), var(--teal), var(--gold));
    background-size: 400%;
    animation: divshift 7s linear infinite
}

@keyframes divshift {
    0% {
        background-position: 0
    }

    100% {
        background-position: 400%
    }
}

/* TRUST */
.trust {
    background: var(--white);
    border-bottom: 1px solid var(--rule);
    padding: 10px 20px;
    overflow-x: auto;
    text-align: center
}

.trust-in {
    display: inline-flex;
    gap: 22px;
    align-items: center;
    white-space: nowrap
}

.ti {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    color: var(--mid);
    letter-spacing: .09em;
    text-transform: uppercase
}

.tid {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    flex-shrink: 0
}

/* CAT NAV */
.cat-nav {
    background: var(--white);
    border-bottom: 1px solid var(--rule);
    padding: 0 32px;
    position: sticky;
    top: 72px;
    z-index: 88;
    overflow-x: auto
}

.cat-nav-in {
    display: flex;
    gap: 0;
    max-width: 1060px;
    margin: 0 auto;
    white-space: nowrap
}

.cat-tab {
    padding: 14px 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--soft);
    cursor: pointer;
    border-bottom: 2.5px solid transparent;
    transition: color .18s, border-color .18s;
    text-decoration: none;
    display: inline-block;
    flex-shrink: 0;
    background: none;
    border-left: none;
    border-right: none;
    border-top: none
}

.cat-tab:hover,
.cat-tab.active {
    color: var(--teal);
    border-bottom-color: var(--teal)
}

/* CAT SECTION */
.cat-section {
    padding: 60px 32px;
    scroll-margin-top: 128px
}

.cat-section:nth-child(even) {
    background: #F7F8FA
}

.cat-section:nth-child(odd) {
    background: #F7F8FA
}

.cat-in {
    max-width: 1060px;
    margin: 0 auto
}

.cat-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 32px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--rule);
    flex-wrap: wrap;
    gap: 12px
}

.cat-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 7px;
    display: flex;
    align-items: center;
    gap: 8px
}

.cat-label::before {
    content: '';
    width: 16px;
    height: 1.5px;
    background: var(--teal);
    flex-shrink: 0
}

.cat-title {
    font-family: var(--serif);
    font-size: clamp(20px, 2.8vw, 28px);
    color: var(--ink);
    line-height: 1.2;
    margin-bottom: 6px
}

.cat-desc {
    font-size: 13px;
    color: var(--mid);
    max-width: 520px;
    font-weight: 300;
    line-height: 1.68
}

.cat-count {
    font-size: 11px;
    font-weight: 600;
    color: var(--soft);
    background: #F7F8FA;
    border: 1px solid var(--rule-lt);
    padding: 5px 12px;
    border-radius: 20px;
    white-space: nowrap
}

.p-row {
    display: grid;
    gap: 20px
}

.p-row-2 {
    grid-template-columns: 1fr 1fr
}

.p-row-3 {
    grid-template-columns: repeat(3, 1fr)
}

@media(max-width:860px) {
    .p-row-3 {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:560px) {

    .p-row-2,
    .p-row-3 {
        grid-template-columns: 1fr
    }
}

/* PRODUCT CARD */
.pc {
    background: var(--white);
    border: 1.5px solid var(--rule);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: box-shadow .24s, transform .24s, border-color .24s
}

.pc:hover {
    box-shadow: 0 14px 42px rgba(47, 36, 131, .11);
    transform: translateY(-5px);
    border-color: rgba(0, 155, 164, .3)
}

.pc.in-cart {
    border: 2px solid var(--lm);
    box-shadow: 0 0 0 4px rgba(175, 202, 5, .15)
}

.pc-ribbon {
    height: 4px
}

.r-teal {
    background: linear-gradient(90deg, var(--teal), #56CDD4)
}

.r-mg {
    background: linear-gradient(90deg, var(--mg), #FF6BAC)
}

.r-nv {
    background: linear-gradient(90deg, var(--nv), #5248C8)
}

.r-lm {
    background: linear-gradient(90deg, #7A9A00, var(--lm))
}

.r-gold {
    background: linear-gradient(90deg, var(--gold), #E8C060)
}

.cart-tick {
    display: none;
    position: absolute;
    top: 12px;
    right: 12px;
    width: 26px;
    height: 26px;
    background: var(--lm);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 900;
    color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .2);
    z-index: 3
}

.pc.in-cart .cart-tick {
    display: flex
}

.pc-img {
    height: 210px;
    overflow: hidden;
    position: relative;
    background: #F7F8FA;
    flex-shrink: 0
}

.pc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s
}

.pc:hover .pc-img img {
    transform: scale(1.06)
}

.pc-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 3px;
    color: #fff;
    z-index: 2
}

.badge-teal {
    background: rgba(0, 155, 164, .9)
}

.badge-mg {
    background: rgba(229, 0, 125, .9)
}

.badge-gold {
    background: rgba(200, 146, 42, .95)
}

.badge-nv {
    background: rgba(47, 36, 131, .9)
}

.badge-lm {
    background: rgba(90, 114, 0, .9)
}

.pc-body {
    padding: 20px 20px 16px;
    flex: 1;
    display: flex;
    flex-direction: column
}

.pc-cat-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--soft);
    margin-bottom: 5px
}

.pc-name {
    font-family: var(--serif);
    font-size: 20px;
    color: var(--nv);
    margin-bottom: 3px;
    line-height: 1.2
}

.pc-brand {
    font-size: 11px;
    font-weight: 700;
    color: var(--teal);
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 10px
}

.pc-use {
    font-size: 11.5px;
    color: var(--mid);
    font-style: italic;
    margin-bottom: 10px;
    line-height: 1.4
}

.pc-desc {
    font-size: 12.5px;
    color: var(--mid);
    line-height: 1.66;
    flex: 1;
    margin-bottom: 14px;
    font-weight: 300
}

.pc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 16px
}

.ptag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 18px
}

.tn {
    background: rgba(47, 36, 131, .08);
    color: var(--nv)
}

.tm {
    background: rgba(229, 0, 125, .08);
    color: var(--mg)
}

.tg {
    background: rgba(110, 133, 0, .12);
    color: #3D5200
}

.to {
    background: rgba(200, 146, 42, .12);
    color: var(--gold-dk)
}

.tt {
    background: rgba(0, 155, 164, .1);
    color: var(--teal-dk)
}

/* TWO-BUTTON FOOTER */
.pc-ft {
    border-top: 1px solid var(--rule-lt);
    padding-top: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
}

.pc-hint {
    flex: 1;
    font-size: 11px;
    color: var(--soft)
}

.btn-cart {
    background: linear-gradient(135deg, var(--teal), var(--teal-dk));
    color: #fff;
    border: none;
    padding: 8px 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    font-family: var(--sans);
    white-space: nowrap;
    flex-shrink: 0;
    transition: opacity .18s, transform .15s
}

.btn-cart:hover {
    opacity: .85;
    transform: scale(1.03)
}

.btn-cart.ok {
    background: linear-gradient(135deg, #5A7200, #7A9A00)
}

.btn-customise {
    background: transparent;
    border: 1.5px solid var(--nv);
    color: var(--nv);
    padding: 7px 11px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    font-family: var(--sans);
    white-space: nowrap;
    flex-shrink: 0;
    transition: background .18s, color .18s
}

.btn-customise:hover {
    background: var(--nv);
    color: #fff
}

/* CUSTOMISE POPUP */
.cust-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(12, 10, 34, .5);
    z-index: 999;
    align-items: center;
    justify-content: center;
    padding: 20px
}

.cust-overlay.on {
    display: flex
}

.cust-modal {
    background: var(--white);
    border-radius: 12px;
    width: 100%;
    max-width: 560px;
    max-height: 88vh;
    overflow-y: auto;
    box-shadow: 0 24px 80px rgba(0, 0, 0, .22);
    border-top: 4px solid var(--nv)
}

.cust-head {
    padding: 22px 24px 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px
}

.cust-title {
    font-family: var(--serif);
    font-size: 20px;
    color: var(--ink);
    margin-bottom: 3px
}

.cust-sub {
    font-size: 11.5px;
    color: var(--soft)
}

.modal-close {
    background: transparent;
    border: none;
    font-size: 22px;
    color: var(--soft);
    cursor: pointer;
    line-height: 1;
    padding: 0;
    flex-shrink: 0;
    transition: color .18s
}

.modal-close:hover {
    color: var(--mg)
}

.cust-body {
    padding: 18px 24px 24px
}

.cm-section {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 12px;
    margin-top: 16px
}

.cg {
    margin-bottom: 12px
}

.cg label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--soft);
    margin-bottom: 5px
}

.cg input,
.cg select,
.cg textarea {
    width: 100%;
    background: #F7F8FA;
    border: 1.5px solid rgba(47, 36, 131, .12);
    border-radius: 4px;
    padding: 9px 11px;
    font-size: 13px;
    color: var(--ink);
    font-family: var(--sans);
    outline: none;
    transition: border-color .2s
}

.cg input:focus,
.cg select:focus,
.cg textarea:focus {
    border-color: var(--teal);
    background: var(--white)
}

.cg select {
    -webkit-appearance: none;
    cursor: pointer
}

.cg textarea {
    resize: none;
    height: 58px
}

.cg-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

@media(max-width:480px) {
    .cg-2 {
        grid-template-columns: 1fr
    }
}

.logo-drop {
    border: 1.5px dashed rgba(0, 155, 164, .3);
    border-radius: 6px;
    padding: 18px;
    text-align: center;
    background: #F7F8FA;
    cursor: pointer;
    transition: border-color .2s, background .2s;
    margin-bottom: 8px
}

.logo-drop:hover {
    border-color: var(--teal);
    background: rgba(0, 155, 164, .04)
}

.logo-drop-icon {
    font-size: 26px;
    margin-bottom: 6px
}

.logo-drop p {
    font-size: 12px;
    color: var(--soft)
}

.logo-prev {
    display: none;
    text-align: center;
    margin-top: 8px
}

.logo-prev img {
    max-height: 48px;
    max-width: 100%;
    border-radius: 3px;
    border: 1px solid var(--rule)
}

.logo-prev-label {
    font-size: 11px;
    color: var(--teal);
    margin-top: 5px;
    font-weight: 600
}

.btn-save-cust {
    width: 100%;
    background: linear-gradient(135deg, var(--nv), #3E33A8);
    color: #fff;
    border: none;
    padding: 13px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    cursor: pointer;
    font-family: var(--sans);
    border-radius: 4px;
    margin-top: 6px;
    box-shadow: 0 4px 18px rgba(47, 36, 131, .22);
    transition: opacity .2s
}

.btn-save-cust:hover {
    opacity: .88
}

/* ENQUIRY / CART */
.enq-sec {
    padding: 60px 32px;
    background: #F7F8FA;
    border-top: 1px solid var(--rule)
}

.enq-in {
    max-width: 860px;
    margin: 0 auto
}

.enq-head {
    text-align: center;
    margin-bottom: 28px
}

.enq-title {
    font-family: var(--serif);
    font-size: clamp(22px, 3.2vw, 30px);
    color: var(--ink);
    margin-bottom: 8px
}

.enq-sub {
    font-size: 14px;
    color: var(--mid);
    font-weight: 300
}

.enq-empty {
    text-align: center;
    padding: 44px 20px;
    color: var(--soft);
    border: 1.5px dashed var(--rule);
    border-radius: 8px
}

.enq-empty a {
    color: var(--teal);
    text-decoration: none;
    font-weight: 600
}

.cart-list {
    margin-bottom: 20px
}

.ci {
    background: var(--white);
    border: 1.5px solid var(--rule);
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden
}

.ci-head {
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px
}

.ci-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--lm);
    flex-shrink: 0
}

.ci-info {
    flex: 1
}

.ci-nm {
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 2px
}

.ci-sb {
    font-size: 11px;
    color: var(--soft)
}

.ci-custom-tag {
    font-size: 11px;
    color: var(--teal);
    font-weight: 600;
    margin-top: 2px
}

.ci-rm {
    background: transparent;
    border: none;
    color: var(--soft);
    font-size: 17px;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
    transition: color .18s;
    flex-shrink: 0
}

.ci-rm:hover {
    color: var(--mg)
}

/* FORM */
.form-card {
    background: var(--white);
    border: 1.5px solid var(--rule);
    border-top: 3px solid var(--gold);
    border-radius: 8px;
    padding: 28px 24px;
    position: relative;
}
span.wpcf7-spinner {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
    margin: 0;
    background-color: #00000050;
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wpcf7-spinner::before {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.wpcf7-not-valid-tip {
    font-size: 11px;
    margin-top: 4px;
}

.form-title {
    font-family: var(--serif);
    font-size: 22px;
    color: var(--ink);
    margin-bottom: 4px
}

.form-sub {
    font-size: 12px;
    color: var(--soft);
    margin-bottom: 22px
}

.form-section {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--teal);
    margin: 18px 0 12px
}

.f2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px
}

@media(max-width:480px) {
    .f2 {
        grid-template-columns: 1fr
    }
}

.fg {
    margin-bottom: 13px
}

.fg label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--soft);
    margin-bottom: 6px
}

.fg input,
.fg select,
.fg textarea {
    width: 100%;
    background: #F7F8FA;
    border: 1.5px solid rgba(47, 36, 131, .12);
    border-radius: 4px;
    padding: 10px 12px;
    font-size: 13px;
    color: var(--ink);
    font-family: var(--sans);
    outline: none;
    transition: border-color .2s, background .2s
}

.fg input::placeholder,
.fg textarea::placeholder {
    color: var(--soft)
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
    border-color: var(--teal);
    background: var(--white)
}

.fg select {
    -webkit-appearance: none;
    cursor: pointer
}

.fg textarea {
    resize: none;
    height: 70px
}

/* CHECKBOXES */
.chk-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    cursor: pointer
}

.chk-row input[type=checkbox] {
    width: 17px;
    height: 17px;
    accent-color: var(--teal);
    flex-shrink: 0;
    margin-top: 2px;
    cursor: pointer
}

.chk-row label {
    font-size: 12.5px;
    color: var(--mid);
    line-height: 1.5;
    cursor: pointer
}

.chk-row label a {
    color: var(--teal);
    text-decoration: none
}

.chk-row label a:hover {
    text-decoration: underline
}

.chk-row.checkbox-form-row label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.chk-row.checkbox-form-row span {
    margin-left: 0;
}

.gst-field {
    display: none;
    margin-top: 6px
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--gold), #E8920A);
    color: #fff;
    border: none;
    padding: 14px;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    cursor: pointer;
    font-family: var(--sans);
    border-radius: 5px;
    margin-top: 6px;
    transition: opacity .2s, transform .18s;
    box-shadow: 0 4px 20px rgba(200, 146, 42, .32)
}

.btn-submit:hover {
    opacity: .9;
    transform: translateY(-1px)
}

.form-note {
    text-align: center;
    font-size: 11px;
    color: var(--soft);
    margin-top: 10px
}

.succ {
    display: none;
    text-align: center;
    padding: 36px 20px
}

.succ.on {
    display: block
}

.succ-icon {
    font-size: 44px;
    margin-bottom: 14px
}

.succ-title {
    font-family: var(--serif);
    font-size: 22px;
    color: var(--ink);
    margin-bottom: 7px
}

.succ-body {
    font-size: 13px;
    color: var(--mid);
    margin-bottom: 18px;
    font-weight: 300
}

.succ-items {
    display: inline-block;
    text-align: left;
    background: var(--gold-lt);
    border: 1.5px solid rgba(200, 146, 42, .28);
    border-radius: 6px;
    padding: 13px 18px;
    margin-bottom: 22px;
    font-size: 13px;
    line-height: 1.9;
    color: var(--gold-dk);
    font-weight: 600
}

.btn-reset {
    background: transparent;
    border: 1.5px solid var(--rule);
    color: var(--mid);
    padding: 9px 22px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .09em;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    font-family: var(--sans);
    transition: border-color .18s
}

.btn-reset:hover {
    border-color: var(--teal);
    color: var(--teal)
}

/* SAMPLE POPUP */
.samp-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(12, 10, 34, .55);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px
}

.samp-overlay.on {
    display: flex
}

.samp-modal {
    background: var(--white);
    border-radius: 12px;
    width: 100%;
    max-width: 580px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 24px 80px rgba(0, 0, 0, .22);
    border-top: 4px solid var(--teal)
}

.samp-head {
    padding: 24px 26px 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px
}

.samp-title {
    font-family: var(--serif);
    font-size: 22px;
    color: var(--ink);
    margin-bottom: 4px
}

.samp-sub {
    font-size: 12px;
    color: var(--soft)
}

.samp-body {
    padding: 20px 26px 26px
}

.samp-section {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--teal);
    margin: 16px 0 12px
}

.sf {
    margin-bottom: 12px
}

.sf label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--soft);
    margin-bottom: 5px
}

.sf input,
.sf select,
.sf textarea {
    width: 100%;
    background: #F7F8FA;
    border: 1.5px solid rgba(47, 36, 131, .12);
    border-radius: 4px;
    padding: 9px 11px;
    font-size: 13px;
    color: var(--ink);
    font-family: var(--sans);
    outline: none;
    transition: border-color .2s
}

.sf input:focus,
.sf select:focus,
.sf textarea:focus {
    border-color: var(--teal);
    background: var(--white)
}

.sf select {
    -webkit-appearance: none;
    cursor: pointer
}

.sf textarea {
    resize: none;
    height: 60px
}

.sf-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

@media(max-width:460px) {
    .sf-2 {
        grid-template-columns: 1fr
    }
}

.samp-chk {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    cursor: pointer
}

.samp-chk input[type=checkbox] {
    width: 16px;
    height: 16px;
    accent-color: var(--teal);
    flex-shrink: 0;
    margin-top: 2px;
    cursor: pointer
}

.samp-chk label {
    font-size: 12px;
    color: var(--mid);
    line-height: 1.5;
    cursor: pointer
}

.samp-chk label a {
    color: var(--teal);
    text-decoration: none
}

.btn-samp-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--teal), var(--teal-dk));
    color: #fff;
    border: none;
    padding: 13px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    cursor: pointer;
    font-family: var(--sans);
    border-radius: 4px;
    margin-top: 6px;
    box-shadow: 0 4px 18px rgba(0, 155, 164, .28);
    transition: opacity .2s
}

.btn-samp-submit:hover {
    opacity: .88
}

.samp-done {
    display: none;
    text-align: center;
    padding: 32px 10px
}

.samp-done-icon {
    font-size: 42px;
    margin-bottom: 14px
}

.samp-done-title {
    font-family: var(--serif);
    font-size: 22px;
    color: var(--ink);
    margin-bottom: 8px
}

.samp-done-body {
    font-size: 13px;
    color: var(--mid);
    font-weight: 300;
    margin-bottom: 22px
}

.btn-samp-close {
    background: var(--teal);
    color: #fff;
    border: none;
    padding: 10px 24px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    font-family: var(--sans)
}

/* ETHOS */
.ethos {
    padding: 56px 32px;
    background: linear-gradient(150deg, #1C1440 0%, #2F2483 55%, #1C1440 100%);
    position: relative;
    overflow: hidden
}

.ethos::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse 55% 70% at 85% 15%, rgba(200, 146, 42, .18), transparent 60%), radial-gradient(ellipse 40% 50% at 5% 85%, rgba(0, 155, 164, .14), transparent 55%)
}

.ethos-in {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    align-items: center
}

@media(max-width:640px) {
    .ethos-in {
        grid-template-columns: 1fr;
        gap: 32px
    }
}

.ethos-quote {
    font-family: var(--serif);
    font-size: clamp(19px, 2.5vw, 25px);
    line-height: 1.28;
    color: #FFD97A;
    font-style: italic;
    margin-bottom: 14px
}

.ethos-quote::before {
    content: '“';
    font-size: 3em;
    line-height: .2;
    color: rgba(200, 146, 42, .4);
    display: block;
    margin-bottom: 8px
}

.ethos-attr {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .35)
}

.ethos-body {
    font-size: 14px;
    color: rgba(255, 255, 255, .62);
    line-height: 1.76;
    font-weight: 300
}

.ethos-body strong {
    color: rgba(255, 255, 255, .9);
    font-weight: 600
}

.ethos-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px
}

.ep {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, .16);
    color: rgba(255, 255, 255, .5)
}

.ep.em {
    border-color: rgba(229, 0, 125, .5);
    color: #FF8AC4;
    background: rgba(229, 0, 125, .1)
}

.ep.et {
    border-color: rgba(0, 155, 164, .5);
    color: #56CDD4;
    background: rgba(0, 155, 164, .1)
}

.ep.eg {
    border-color: rgba(200, 146, 42, .5);
    color: #FFD97A;
    background: rgba(200, 146, 42, .1)
}

/* CERTS */
.cert-sec {
    background: var(--white);
    padding: 18px;
    border-top: 1px solid var(--rule)
}

.cert-in {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    align-items: center
}

.cpill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #F7F8FA;
    border: 1px solid rgba(47, 36, 131, .1);
    border-radius: 22px;
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 600;
    color: var(--mid);
    letter-spacing: .05em;
    text-transform: uppercase
}

/* FOOTER */
.foot {
    background: var(--nv);
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px
}

.foot-div {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .4);
    display: block;
    margin-bottom: 6px
}

.foot-logo {
    height: 46px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1)
}

.foot-c {
    font-size: 11px;
    color: rgba(255, 255, 255, .42)
}

.foot-r {
    font-size: 11px;
    color: rgba(255, 255, 255, .3)
}

/* TOAST */
.toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(72px);
    background: var(--ink);
    color: #fff;
    padding: 11px 24px;
    border-radius: 28px;
    font-size: 12.5px;
    font-weight: 500;
    z-index: 99999;
    transition: transform .3s cubic-bezier(.34, 1.56, .64, 1);
    box-shadow: 0 6px 24px rgba(0, 0, 0, .22);
    white-space: nowrap;
    border-left: 4px solid var(--lm)
}

.toast.on {
    transform: translateX(-50%) translateY(0)
}

@media(max-width:600px) {
    .nav {
        padding: 0 14px;
        height: 62px
    }

    .nav-divider,
    .nav-sub,
    .nav-pill {
        display: none
    }

    .nav-logo {
        height: 44px
    }

    .hero {
        height: auto
    }

    .hero-left {
        padding: 40px 16px 32px
    }

    .cat-nav {
        padding: 0 14px;
        top: 62px
    }

    .cat-section {
        padding: 44px 16px;
        scroll-margin-top: 112px
    }

    .enq-sec {
        padding: 44px 16px
    }

    .ethos {
        padding: 44px 16px
    }

    .foot {
        padding: 18px 16px
    }
}

/* ============ FESTIVE JOURNEY LAYER (added) ============ */

/* JOURNEY SELECTOR */
.jsel {
    background: #F7F8FA;
    padding: 52px 32px 46px;
    border-bottom: 1px solid var(--rule)
}

.jsel-in {
    max-width: 1000px;
    margin: 0 auto
}

.jsel-head {
    text-align: center;
    margin-bottom: 30px
}

.jsel-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 12px;
    display: inline-flex;
    align-items: center;
    gap: 9px
}

.jsel-eyebrow::before,
.jsel-eyebrow::after {
    content: '';
    width: 20px;
    height: 1.5px;
    background: var(--teal)
}

.jsel-title {
    font-family: var(--serif);
    font-size: clamp(23px, 3.2vw, 32px);
    color: var(--ink);
    line-height: 1.16;
    margin-bottom: 10px
}

.jsel-sub {
    font-size: 14px;
    color: var(--mid);
    font-weight: 300;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.6
}

.jsel-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px
}

@media(max-width:720px) {
    .jsel-cards {
        grid-template-columns: 1fr
    }
}

.jcard {
    position: relative;
    background: var(--white);
    border: 2px solid var(--rule);
    border-radius: 16px;
    padding: 36px 32px;
    cursor: pointer;
    transition: box-shadow .24s, border-color .24s, transform .2s, background .2s;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .05)
}

.jcard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px
}

.jcard.jb::before {
    background: linear-gradient(90deg, var(--nv), #5248C8)
}

.jcard.jp::before {
    background: linear-gradient(90deg, var(--mg), #FF6BAC)
}

.jcard:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 44px rgba(47, 36, 131, .13);
    border-color: rgba(0, 155, 164, .35)
}

.jcard-ico {
    width: 46px;
    height: 46px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
    margin-bottom: 14px
}

.jcard.jb .jcard-ico {
    background: rgba(47, 36, 131, .09)
}

.jcard.jp .jcard-ico {
    background: rgba(229, 0, 125, .09)
}

.jcard-h {
    font-family: var(--serif);
    font-size: 21px;
    color: var(--ink);
    margin-bottom: 7px;
    line-height: 1.15
}

.jcard-feats {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--teal-dk);
    letter-spacing: .02em;
    margin-bottom: 9px
}

.jcard-aud {
    font-size: 12px;
    color: var(--soft);
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 18px
}

.jcard-go {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 10px 18px;
    border-radius: 5px;
    color: #fff;
    transition: gap .18s
}

.jcard.jb .jcard-go {
    background: linear-gradient(135deg, var(--nv), #3E33A8)
}

.jcard.jp .jcard-go {
    background: linear-gradient(135deg, var(--mg), #C0006A)
}

.jcard:hover .jcard-go {
    gap: 13px
}

.jsel-neutral {
    text-align: center
}

.jsel-neutral button {
    background: transparent;
    border: none;
    color: var(--teal-dk);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--sans);
    border-bottom: 1.5px solid rgba(0, 155, 164, .4);
    padding: 2px 2px 3px;
    transition: color .18s, border-color .18s
}

.jsel-neutral button:hover {
    color: var(--mg);
    border-color: var(--mg)
}

/* PATH INDICATOR STRIP (replaces old cat-nav content) */
..pathbar {
    background: var(--white);
    border-bottom: 2px solid var(--rule);
    position: sticky;
    top: 72px;
    z-index: 88;
    padding: 0 32px;
    transition: opacity .3s, border-color .4s;
    opacity: 0;
    pointer-events: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .06)
}

.pathbar.active {
    opacity: 1;
    pointer-events: auto
}

.pathbar-in {
    max-width: 1060px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    height: 50px;
    flex-wrap: nowrap
}

.pathbar-left {
    display: flex;
    align-items: center;
    gap: 11px;
    min-width: 0
}

.path-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--soft);
    white-space: nowrap
}

.path-val {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--nv);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.path-val .dotp {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    margin-right: 7px;
    vertical-align: middle
}

.path-switch {
    background: transparent;
    border: 1px solid var(--rule);
    color: var(--teal-dk);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 16px;
    cursor: pointer;
    font-family: var(--sans);
    white-space: nowrap;
    flex-shrink: 0;
    transition: border-color .18s, color .18s
}

.path-switch:hover {
    border-color: var(--teal);
    color: var(--teal)
}

@media(max-width:600px) {
    .pathbar {
        padding: 0 14px;
        top: 62px
    }

    .path-tag {
        display: none
    }
}

/* COHORT INTRO */
.cohort {
    padding: 56px 32px;
    scroll-margin-top: 128px;
    background: #F7F8FA;
    transition: background .4s, border-color .4s
}

.cohort-in {
    max-width: 1000px;
    margin: 0 auto
}

.cohort-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 9px;
    display: flex;
    align-items: center;
    gap: 8px
}

.cohort-label::before {
    content: '';
    width: 16px;
    height: 1.5px;
    background: var(--teal)
}

.cohort-h {
    font-family: var(--serif);
    font-size: clamp(22px, 3vw, 30px);
    color: var(--ink);
    line-height: 1.16;
    margin-bottom: 14px;
    max-width: 640px
}

.cohort-body {
    font-size: 14px;
    color: var(--mid);
    line-height: 1.75;
    font-weight: 300;
    max-width: 640px;
    margin-bottom: 22px
}

.cohort-body strong {
    color: var(--ink);
    font-weight: 600
}

.cohort-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 9px
}

.cochip {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 20px;
    background: rgba(0, 155, 164, .08);
    color: var(--teal);
    border: 1.5px solid rgba(0, 155, 164, .2);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .04em;
    margin: 3px 4px 3px 0
}

.cochip::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--teal)
}

.cohort.biz .cochip::before {
    background: var(--nv)
}

.cohort.prod .cochip::before {
    background: var(--mg)
}

/* APPLICATION SELECTOR */
.appsel {
    padding: 50px 32px;
    scroll-margin-top: 128px;
    background: #F7F8FA;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule)
}

.appsel-in {
    max-width: 1000px;
    margin: 0 auto
}

.appsel-head {
    margin-bottom: 22px
}

.appsel-h {
    font-family: var(--serif);
    font-size: clamp(20px, 2.6vw, 27px);
    color: var(--ink);
    margin-bottom: 7px
}

.appsel-sub {
    font-size: 13px;
    color: var(--mid);
    font-weight: 300
}

.appchips {
    display: flex;
    flex-wrap: wrap;
    gap: 9px
}

@media(max-width:600px) {
    .appchips {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch
    }
}

.appchip {
    background: var(--white);
    border: 1.5px solid var(--rule);
    color: var(--mid);
    font-size: 12.5px;
    font-weight: 600;
    padding: 9px 15px;
    border-radius: 24px;
    cursor: pointer;
    font-family: var(--sans);
    white-space: nowrap;
    transition: border-color .16s, background .16s, color .16s;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 7px
}

.appchip:hover {
    border-color: var(--teal)
}

.appchip.on {
    background: var(--teal);
    border-color: var(--teal);
    color: #fff
}

.appchip.on::before {
    content: '✓';
    font-weight: 900;
    font-size: 11px
}

.appsel-clear {
    margin-top: 14px;
    font-size: 11.5px;
    color: var(--soft);
    display: none;
    align-items: center;
    gap: 10px
}

.appsel-clear.show {
    display: flex
}

.appsel-clear button {
    background: transparent;
    border: none;
    color: var(--teal-dk);
    font-weight: 700;
    cursor: pointer;
    font-family: var(--sans);
    font-size: 11.5px;
    text-decoration: underline
}

/* MATCH LABELS on product cards */
.match-flag {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 4px;
    z-index: 3;
    display: none
}

.match-flag.best {
    display: block;
    background: var(--lm);
    color: #1C2900
}

.match-flag.also {
    display: block;
    background: rgba(47, 36, 131, .9);
    color: #fff
}

.pc.dim {
    opacity: .62
}

/* COHORT-AWARE BENEFIT LIST */
.pc-benefits {
    list-style: none;
    margin: 0 0 14px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px
}

.pc-benefits li {
    font-size: 12px;
    color: var(--mid);
    line-height: 1.45;
    padding-left: 18px;
    position: relative;
    font-weight: 300
}

.pc-benefits li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    transform: rotate(45deg)
}

.pc.emph-biz .pc-benefits li::before {
    background: var(--nv)
}

.pc.emph-prod .pc-benefits li::before {
    background: var(--mg)
}

.pc.emph-none .pc-benefits li::before {
    background: var(--teal)
}

.pc-emph-tag {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 9px;
    display: inline-block;
    padding: 3px 9px;
    border-radius: 3px
}

.pc.emph-biz .pc-emph-tag {
    background: rgba(47, 36, 131, .09);
    color: var(--nv)
}

.pc.emph-prod .pc-emph-tag {
    background: rgba(229, 0, 125, .09);
    color: var(--mg)
}

.pc.emph-none .pc-emph-tag {
    display: none
}

/* relabelled footer buttons keep existing classes; add SELECTED state */
.btn-cart.sel {
    background: linear-gradient(135deg, #5A7200, #7A9A00)
}

/* FLOATING REQUIREMENT BAR */
.reqbar {
    position: fixed;
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%) translateY(120px);
    z-index: 9990;
    background: var(--nv);
    color: #fff;
    border-radius: 40px;
    box-shadow: 0 10px 34px rgba(28, 20, 64, .4);
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 11px 12px 11px 22px;
    transition: transform .32s cubic-bezier(.34, 1.4, .6, 1);
    max-width: calc(100% - 28px)
}

.reqbar.show {
    transform: translateX(-50%) translateY(0)
}

.reqbar-count {
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 9px
}

.reqbar-count .rbn {
    background: var(--lm);
    color: #1C2900;
    font-weight: 800;
    font-size: 12px;
    min-width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px
}

.reqbar-btn {
    background: linear-gradient(135deg, var(--teal), var(--teal-dk));
    color: #fff;
    border: none;
    padding: 9px 18px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    border-radius: 24px;
    cursor: pointer;
    font-family: var(--sans);
    white-space: nowrap;
    transition: transform .15s
}

.reqbar-btn:hover {
    transform: scale(1.04)
}

@media(max-width:600px) {
    .reqbar {
        left: 0;
        right: 0;
        bottom: 0;
        transform: translateY(120px);
        border-radius: 0;
        max-width: 100%;
        width: 100%;
        justify-content: space-between;
        padding: 12px 14px;
        border-top: 2px solid var(--lm)
    }

    .reqbar.show {
        transform: translateY(0)
    }
}

/* WHY-WE-ASK note */
.why-note {
    background: var(--teal-lt);
    border: 1px solid rgba(0, 155, 164, .2);
    border-radius: 8px;
    padding: 14px 16px;
    font-size: 12.5px;
    color: var(--teal-dk);
    line-height: 1.6;
    margin-bottom: 20px;
    display: flex;
    gap: 11px;
    align-items: flex-start
}

.why-note .whyi {
    font-size: 16px;
    flex-shrink: 0;
    line-height: 1.3
}

/* requirement id block */
.reqid-box {
    display: inline-block;
    background: var(--nv);
    color: #fff;
    border-radius: 8px;
    padding: 14px 26px;
    margin-bottom: 20px
}

.reqid-lbl {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .55);
    margin-bottom: 5px
}

.reqid-val {
    font-family: var(--serif);
    font-size: 26px;
    letter-spacing: .04em;
    color: #FFD97A
}

.succ-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap
}


/* ===== PRODUCT IMAGE GALLERY ===== */
.pc-img {
    position: relative;
    overflow: hidden
}

.pc-img-gallery {
    display: flex;
    transition: transform .4s ease;
    width: 300%
}

.pc-img-gallery img {
    width: 33.333%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0
}

.gallery-dots {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
    z-index: 5
}

.gdot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .5);
    cursor: pointer;
    transition: background .2s
}

.gdot.on {
    background: #fff
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, .28);
    border: none;
    color: #fff;
    cursor: pointer;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: background .2s;
    padding: 0
}

.gallery-nav:hover {
    background: rgba(0, 0, 0, .52)
}

.gallery-nav.gnl {
    left: 7px
}

.gallery-nav.gnr {
    right: 7px
}

/* MOCKUP PREVIEW */
.mockup-stage {
    position: relative;
    display: inline-block;
    width: 100%;
    margin-top: 12px
}

.mockup-stage img.mockup-product {
    width: 100%;
    border-radius: 4px;
    display: block
}

.mockup-stage canvas.mockup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none
}

.mockup-preview-wrap {
    margin-top: 12px;
    text-align: center
}

.mockup-preview-wrap img {
    max-width: 100%;
    border-radius: 4px;
    border: 1.5px solid var(--rule)
}

.mockup-label {
    font-size: 11px;
    color: var(--soft);
    margin-top: 5px;
    letter-spacing: .04em
}

.form-notice {
    background: #FFF8E6;
    border: 1px solid rgba(200, 146, 42, .3);
    border-radius: 5px;
    padding: 10px 14px;
    font-size: 12.5px;
    color: var(--gold-dk);
    margin-bottom: 14px;
    display: none
}

.cohort.emph-biz {
    background: linear-gradient(135deg, #f0f2ff 0%, #e8eaf8 100%);
    border-top: 4px solid var(--nv)
}

.cohort.emph-prod {
    background: linear-gradient(135deg, #fff0f6 0%, #fce4ef 100%);
    border-top: 4px solid var(--mg)
}

.cohort.emph-none {
    background: linear-gradient(135deg, #f0fafa 0%, #e4f4f4 100%);
    border-top: 4px solid var(--teal)
}

.cohort.emph-biz .cohort-label {
    color: var(--nv)
}

.cohort.emph-biz .cohort-label::before {
    background: var(--nv)
}

.cohort.emph-prod .cohort-label {
    color: var(--mg)
}

.cohort.emph-prod .cohort-label::before {
    background: var(--mg)
}

.cohort.emph-biz .cohort-h {
    color: var(--nv);
    font-size: clamp(24px, 3.2vw, 34px)
}

.cohort.emph-prod .cohort-h {
    color: var(--mg);
    font-size: clamp(24px, 3.2vw, 34px)
}

.cohort.emph-biz .cochip {
    background: rgba(47, 36, 131, .1);
    color: var(--nv);
    border-color: rgba(47, 36, 131, .2)
}

.cohort.emph-prod .cochip {
    background: rgba(229, 0, 125, .09);
    color: var(--mg);
    border-color: rgba(229, 0, 125, .2)
}

.foot-certs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    justify-content: center;
    margin: 8px 0
}

.foot-certs span {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .45)
}

.jcard.selected-biz {
    border-color: var(--nv);
    background: #f0f2ff;
    box-shadow: 0 0 0 3px rgba(47, 36, 131, .12)
}

.jcard.selected-prod {
    border-color: var(--mg);
    background: #fff0f6;
    box-shadow: 0 0 0 3px rgba(229, 0, 125, .12)
}

.jcard-h {
    font-family: var(--serif);
    font-size: 20px;
    color: var(--ink);
    font-weight: 600;
    line-height: 1.3
}

.jb:hover,
.jb:focus {
    border-color: var(--nv);
    background: #f0f2ff;
    box-shadow: 0 10px 32px rgba(47, 36, 131, .18);
    transform: translateY(-4px)
}

.jp:hover,
.jp:focus {
    border-color: var(--mg);
    background: #fff0f6;
    box-shadow: 0 10px 32px rgba(229, 0, 125, .18);
    transform: translateY(-4px)
}

.how-section {
    background: var(--white);
    padding: 36px 32px;
    border-bottom: 1px solid var(--rule)
}

.how-in {
    max-width: 1000px;
    margin: 0 auto
}

.how-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--soft);
    margin-bottom: 20px
}

.how-steps {
    display: flex;
    gap: 0
}

.how-step {
    flex: 1;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding-right: 32px;
    position: relative
}

.how-step:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 12px;
    top: 14px;
    width: 12px;
    height: 1px;
    background: var(--rule)
}

.how-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--nv);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.how-text {
    font-size: 12.5px;
    color: var(--mid);
    line-height: 1.6
}

.how-text strong {
    display: block;
    color: var(--ink);
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 3px
}

/* ── PRODUCT GALLERY LAYOUT ── */
.prod-layout {
    display: flex;
    gap: 0;
    align-items: flex-start
}

.prod-sidebar {
    width: 220px;
    flex-shrink: 0;
    position: sticky;
    top: 80px;
    padding: 24px 0 24px 0;
    border-right: 1px solid var(--rule);
    margin-right: 28px
}

.prod-sidebar-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--soft);
    margin-bottom: 14px;
    padding-left: 2px
}

.prod-filter-chip {
    display: block;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 9px 12px;
    border-radius: 7px;
    font-size: 13px;
    color: var(--mid);
    cursor: pointer;
    font-family: var(--sans);
    transition: background .15s, color .15s;
    margin-bottom: 2px
}

.prod-filter-chip:hover {
    background: rgba(47, 36, 131, .06);
    color: var(--nv)
}

.prod-filter-chip.on {
    background: var(--nv);
    color: #fff;
    font-weight: 600
}

.prod-filter-chip.on::before {
    content: '✓ ';
    font-size: 10px
}

.prod-clear-btn {
    display: none;
    margin-top: 12px;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    font-size: 11px;
    color: var(--soft);
    cursor: pointer;
    font-family: var(--sans);
    padding: 6px 12px;
    text-decoration: underline
}

.prod-clear-btn.show {
    display: block
}

.prod-cards {
    flex: 1;
    min-width: 0
}

/* Card grid — 3 cols, collapse to 2 on narrow */
.p-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

@media(max-width:900px) {
    .p-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:620px) {
    .p-row {
        grid-template-columns: 1fr;
    }

    .prod-layout {
        flex-direction: column
    }

    .prod-sidebar {
        width: 100%;
        position: unset;
        border-right: none;
        border-bottom: 1px solid var(--rule);
        margin-right: 0;
        padding-bottom: 16px;
        margin-bottom: 20px
    }
}

/* dim hidden cards */
.pc.dim {
    opacity: .25;
    pointer-events: none;
    transition: opacity .3s
}

.pc.dim .pc-img {
    filter: grayscale(.6)
}

/* match flag */
.match-flag {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 4;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 20px;
    opacity: 0;
    transition: opacity .2s
}

.match-flag.best {
    opacity: 1;
    background: var(--mg);
    color: #fff
}

.match-flag.also {
    opacity: 0
}

/* card selected state */
.pc.in-cart {
    border: 2px solid var(--nv) !important;
    box-shadow: 0 0 0 4px rgba(47, 36, 131, .08)
}

.btn-cart.sel {
    background: linear-gradient(135deg, #5A7200, #7A9A00) !important;
    color: #fff !important
}

/* visitor mode toggle */
.visitor-toggle {
    display: flex;
    gap: 8px;
    margin-bottom: 20px
}

.vtab {
    padding: 8px 18px;
    border-radius: 20px;
    border: 1.5px solid var(--rule);
    background: var(--white);
    font-size: 12px;
    font-weight: 600;
    color: var(--mid);
    cursor: pointer;
    font-family: var(--sans);
    transition: all .2s
}

.vtab.on {
    background: var(--nv);
    border-color: var(--nv);
    color: #fff
}

/* ── PROFILE SELECTOR ── */
.profile-sel {
    background: var(--white);
    padding: 52px 32px 48px;
    border-bottom: 1px solid var(--rule)
}

.profile-sel-in {
    max-width: 900px;
    margin: 0 auto
}

.profile-sel-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--soft);
    margin-bottom: 14px
}

.profile-sel-h {
    font-family: var(--serif);
    font-size: 32px;
    font-weight: 400;
    color: var(--nv);
    margin-bottom: 8px;
    line-height: 1.2
}

.profile-sel-sub {
    font-size: 13px;
    color: var(--mid);
    margin-bottom: 32px
}

.profile-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px
}

.profile-card {
    background: var(--off-white);
    border: 2px solid var(--rule);
    border-radius: 14px;
    padding: 28px;
    cursor: pointer;
    transition: border-color .2s, box-shadow .2s, background .2s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.profile-card:hover {
    box-shadow: 0 6px 24px rgba(47, 36, 131, .1)
}

.pcard-head {
    font-size: 18px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 12px;
    line-height: 1.3;
    flex-shrink: 1;
}

.pcard-roles {
    font-size: 13px;
    color: var(--mid);
    line-height: 1.8;
    margin-bottom: 12px;
    flex-shrink: 1;
}

.pcard-what {
    font-size: 12px;
    color: var(--soft);
    line-height: 1.55;
    margin-bottom: 18px;
    font-style: italic;
    flex-shrink: 1;
}

.pcard-btn {
    display: block;
    width: 100%;
    padding: 11px 16px;
    border-radius: 7px;
    border: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .02em;
    cursor: pointer;
    font-family: var(--sans);
    text-align: center;
}

.pcard-btn-nv {
    background: var(--nv);
    color: #fff
}

.pcard-btn-mg {
    background: var(--mg);
    color: #fff
}

.profile-card.sel-biz {
    border-color: var(--nv);
    background: #F0F2FF;
    box-shadow: 0 0 0 4px rgba(47, 36, 131, .08)
}

.profile-card.sel-prod {
    border-color: var(--mg);
    background: #FFF0F7;
    box-shadow: 0 0 0 4px rgba(229, 0, 125, .08)
}

.profile-both-link {
    font-size: 12px;
    color: var(--soft);
    text-align: center;
    margin-top: 12px
}

.profile-both-btn {
    background: none;
    border: none;
    color: var(--nv);
    font-size: 12px;
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
    font-family: var(--sans)
}

@media(max-width:640px) {
    .profile-cards {
        grid-template-columns: 1fr
    }
}

.prod-req-row {
    background: var(--off-white);
    border: 1px solid var(--rule);
    border-radius: 8px;
    padding: 16px 18px;
    margin-bottom: 14px
}

.prod-req-name {
    font-size: 12px;
    font-weight: 700;
    color: var(--nv);
    letter-spacing: .02em;
    margin-bottom: 12px;
    text-transform: uppercase
}

.prod-req-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

@media(max-width:600px) {
    .prod-req-grid {
        grid-template-columns: 1fr
    }
}
.btn-submit:disabled,
.btn-submit.is-disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}
@media (max-width: 767px) {
    .how-steps {
        flex-direction: column;
        gap: 15px;
    }
    
    .how-step {
        padding-right: 0;
    }
    
    .how-step:not(:last-child)::after {
        display: none;
    }
}