:root {
    --gold: #C9762E;
    --gold-d: #A75E1E;
    --maroon: #86142A;
    --maroon-d: #6B0F22;
    --ink: #3A2A20;
    --soft: #6A5644;
    --muted: #9A815E;
    --line: #ECE0CC;
    --line2: #F1E7D6;
    --cream: #FCF7EE;
    --cream2: #FBF1DC;
    --white: #fff;
    --teal: #1E8A6E;
    --wa: #25A766;
    --rad: 12px;
    --sh: 0 6px 22px rgba(90,30,30,.09);     
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Poppins',system-ui,sans-serif;
    color: var(--ink);
    background: #fff;
    font-weight: 300;
    font-size: 14.5px;
    line-height: 1.55
}

h1, h2, h3, h4, .disp {
    font-family: 'Playfair Display',Georgia,serif
}

a {
    color: inherit;
    text-decoration: none
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none
}

img, svg {
    display: block
}

.wrap {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 22px
}

.btn {
    display: inline-block;
    background: var(--gold);
    color: #fff;
    padding: 11px 22px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 13.5px;
    transition: .18s
}

    .btn:hover {
        background: var(--gold-d)
    }

.btn-m {
    background: var(--maroon)
}

    .btn-m:hover {
        background: var(--maroon-d)
    }

.btn-o {
    background: #fff;
    color: var(--gold);
    border: 1.5px solid var(--gold)
}

    .btn-o:hover {
        background: #FCF1E5
    }

.btn-mo {
    background: #fff;
    color: var(--maroon);
    border: 1.5px solid var(--maroon)
}

    .btn-mo:hover {
        background: #FBEEF0
    }

.strike {
    text-decoration: line-through;
    color: #BBA987;
    font-weight: 300
}

.off {
    color: var(--teal);
    font-size: 12.5px;
    font-weight: 500
}

.muted {
    color: var(--muted)
}

.ic {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round
}

    .ic.f {
        fill: currentColor;
        stroke: none
    }

.orn {
    color: var(--gold);
    letter-spacing: 2px
}

.sec-title {
    text-align: center;
    font-size: 28px;
    color: var(--maroon);
    font-weight: 700;
    margin-bottom: 4px
}

.sec-sub {
    text-align: center;
    color: var(--muted);
    font-size: 13px;
    margin-bottom: 22px
}

/* announcement + header */
.announce {
    background: var(--gold);
    color: #fff;
    font-size: 12px
}

    .announce .wrap {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 34px;
        gap: 16px;
        flex-wrap: wrap;
        overflow: hidden
    }

    .announce b {
        font-weight: 500
    }

header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #fff;
    box-shadow: 0 2px 12px rgba(90,30,30,.05)
}

.hd {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 14px 0
}

.logo {
    display: flex;
    align-items: center;
    gap: 11px;
    cursor: pointer;
    flex-shrink: 0
}

    .logo .mk {
        width: 46px;
        height: 46px;
        border-radius: 50%;
        background: radial-gradient(circle at 50% 35%,#F6D98A,#C9762E);
        display: flex;
        align-items: center;
        justify-content: center
    }

    .logo .nm {
        font-family: 'Playfair Display',serif;
        font-weight: 700;
        font-size: 23px;
        color: var(--maroon);
        line-height: 1
    }

    .logo .tg {
        font-size: 10.5px;
        color: var(--gold);
        letter-spacing: .6px
    }

.searchbar {
    flex: 1;
    display: flex;
    max-width: 560px;
    border: 1.5px solid var(--line);
    border-radius: 9px;
    overflow: visible;
    position: relative
}

    .searchbar .cat {
        display: flex;
        align-items: center;
        gap: 6px;
        padding: 0 14px;
        background: var(--cream);
        border-right: 1.5px solid var(--line);
        font-size: 12.5px;
        color: var(--soft);
        white-space: nowrap;
        border-radius: 9px 0 0 9px
    }

    .searchbar input {
        flex: 1;
        border: none;
        padding: 11px 14px;
        font-family: inherit;
        font-size: 13.5px;
        outline: none
    }

    .searchbar .go {
        background: var(--gold);
        color: #fff;
        width: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 0 8px 8px 0
    }

.suggest {
    position: absolute;
    top: 46px;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    box-shadow: var(--sh);
    padding: 6px;
    display: none;
    z-index: 60
}

    .suggest.open {
        display: block
    }

    .suggest div {
        padding: 9px 12px;
        border-radius: 7px;
        font-size: 13.5px;
        display: flex;
        gap: 9px;
        align-items: center
    }

        .suggest div:hover {
            background: var(--cream)
        }

.acts {
    display: flex;
    align-items: center;
    gap: 22px;
    color: var(--maroon)
}

    .acts .a {
        display: flex;
        align-items: center;
        gap: 7px;
        cursor: pointer;
        font-size: 12.5px;
        position: relative
    }

        .acts .a:hover {
            color: var(--gold)
        }

        .acts .a .lb b {
            display: block;
            font-weight: 500;
            font-size: 12.5px;
            line-height: 1.1
        }

        .acts .a .lb span {
            font-size: 10px;
            color: var(--muted)
        }

.badge {
    position: absolute;
    top: -7px;
    left: 14px;
    background: var(--maroon);
    color: #fff;
    font-size: 9.5px;
    min-width: 16px;
    height: 16px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px
}

.hamb {
    display: none;
    color: var(--maroon)
}

nav.main {
    border-top: 1px solid var(--line)
}

    nav.main .wrap {
        display: flex;
        gap: 24px;
        height: 48px;
        align-items: center;
        font-size: 12.5px;
        font-weight: 400;
        letter-spacing: .3px;
        overflow-x: auto
    }

    nav.main a {
        white-space: nowrap;
        padding: 14px 0;
        border-bottom: 2.5px solid transparent;
        color: var(--ink);
        display: flex;
        align-items: center;
        gap: 4px
    }

        nav.main a:hover, nav.main a.on {
            color: var(--gold);
            border-color: var(--gold)
        }

        nav.main a .nw {
            background: var(--maroon);
            color: #fff;
            font-size: 8px;
            padding: 1px 5px;
            border-radius: 8px;
            margin-left: 2px
        }

/* pages */
.page {
    display: none
}

    .page.on {
        display: block;
        animation: fade .3s ease
    }

@keyframes fade {
    from {
        opacity: 0;
        transform: translateY(5px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.crumb {
    font-size: 12px;
    color: var(--muted);
    padding: 14px 0
}

    .crumb b {
        color: var(--maroon);
        font-weight: 500
    }

.pt {
    padding: 8px 0 46px
}

/* hero */
.hero {
    background: linear-gradient(100deg,#FBF1DC 0%,#FCF7EE 48%,#F7EEDC 100%);
    position: relative;
    overflow: hidden
}

    .hero .wrap {
        display: flex;
        align-items: center;
        min-height: 380px;
        gap: 24px;
        padding: 30px 22px
    }

.hero-l {
    flex: 1.1;
    z-index: 2
}

.hero .jan {
    font-family: 'Playfair Display',serif;
    font-weight: 700;
    font-size: 50px;
    color: var(--maroon);
    line-height: 1
}

.hero .col {
    font-style: italic;
    color: var(--gold);
    font-size: 46px
}

.hero p {
    font-size: 16px;
    color: var(--ink);
    margin: 14px 0 22px;
    max-width: 430px
}

.hero-r {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative
}

    .hero-r .glow {
        position: absolute;
        width: 330px;
        height: 330px;
        border-radius: 50%;
        background: #fff;
        opacity: .45;
        filter: blur(8px)
    }

    .hero-r svg {
        width: 300px;
        height: 300px;
        position: relative;
        filter: drop-shadow(0 16px 30px rgba(90,30,30,.18))
    }

.dots {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-top: 6px
}

    .dots i {
        width: 18px;
        height: 4px;
        border-radius: 3px;
        background: #E0CDB0
    }

        .dots i.on {
            background: var(--gold);
            width: 26px
        }

/* category circles */
.cats {
    padding: 30px 0 8px
}

    .cats .row {
        display: flex;
        gap: 10px;
        justify-content: center;
        flex-wrap: wrap
    }

.cat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    width: 104px
}

    .cat .ring {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        border: 2px solid var(--cream2);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: .2s;
        background: #fff
    }

    .cat:hover .ring {
        border-color: var(--gold);
        transform: translateY(-3px);
        box-shadow: var(--sh)
    }

    .cat span {
        font-size: 11.5px;
        color: var(--ink);
        text-align: center;
        font-weight: 400
    }

/* section + grid */
.sec {
    padding: 30px 0
}

.sec-h {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 22px
}

    .sec-h h2 {
        font-size: 25px;
        color: var(--maroon);
        font-weight: 700
    }

.grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 18px
}

.grid5 {
    grid-template-columns: repeat(5,1fr)
}

.card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    transition: .2s;
    position: relative
}

    .card:hover {
        box-shadow: var(--sh);
        transform: translateY(-3px)
    }

    .card .imgw {
        position: relative;
        cursor: pointer;
        background: var(--cream)
    }

        .card .imgw svg {
            width: 100%;
            aspect-ratio: 1;
            height: auto
        }

    .card .tag {
        position: absolute;
        top: 9px;
        left: 9px;
        background: var(--maroon);
        color: #fff;
        font-size: 9.5px;
        padding: 3px 8px;
        border-radius: 5px;
        font-weight: 500
    }

    .card .wish {
        position: absolute;
        top: 8px;
        right: 9px;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--maroon);
        box-shadow: 0 2px 6px rgba(0,0,0,.08)
    }

        .card .wish.on {
            color: #D6324B
        }

    .card .bd {
        padding: 11px 13px 13px;
        text-align: center
    }

    .card .nm {
        font-size: 13.5px;
        color: var(--ink);
        font-weight: 400;
        cursor: pointer
    }

    .card .for {
        font-size: 11px;
        color: var(--muted);
        margin: 1px 0 5px
    }

    .card .pr {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 7px;
        margin-bottom: 9px
    }

        .card .pr b {
            color: var(--maroon);
            font-size: 16px;
            font-weight: 600
        }

    .card .add {
        width: 100%;
        background: var(--gold);
        color: #fff;
        padding: 9px;
        border-radius: 7px;
        font-size: 12px;
        font-weight: 500;
        letter-spacing: .4px
    }

        .card .add:hover {
            background: var(--gold-d)
        }

/* trust strip */
.trust {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: #fff
}

    .trust .wrap {
        display: flex;
        justify-content: space-between;
        gap: 14px;
        padding: 20px 22px;
        flex-wrap: wrap
    }

    .trust .t {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 12px;
        color: var(--soft)
    }

        .trust .t svg {
            color: var(--gold);
            flex-shrink: 0
        }

        .trust .t b {
            display: block;
            color: var(--ink);
            font-weight: 500;
            font-size: 12.5px
        }

/* newsletter strip (home) */
.nlstrip {
    background: var(--cream);
    padding: 26px 0
}

    .nlstrip .wrap {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 30px;
        flex-wrap: wrap
    }

    .nlstrip .nl h4 {
        color: var(--maroon);
        font-size: 17px
    }

    .nlstrip .nl .row {
        display: flex;
        gap: 8px;
        margin-top: 8px
    }

    .nlstrip .nl input {
        border: 1px solid var(--line);
        border-radius: 8px;
        padding: 10px 14px;
        font-family: inherit;
        min-width: 240px
    }

.follow {
    display: flex;
    gap: 14px;
    align-items: center
}

    .follow .s {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
        font-size: 10px;
        color: var(--muted)
    }

        .follow .s .ci {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: #fff;
            border: 1px solid var(--line);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold)
        }

.badges {
    display: flex;
    gap: 22px
}

    .badges .b {
        text-align: center;
        font-size: 11px;
        color: var(--soft)
    }

        .badges .b svg {
            color: var(--gold);
            margin: 0 auto 4px
        }

/* shop layout */
.shoplay {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 26px
}

.aside {
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    height: fit-content
}

    .aside h4 {
        background: var(--cream);
        color: var(--maroon);
        font-size: 13px;
        letter-spacing: .5px;
        padding: 13px 16px;
        font-weight: 600;
        font-family: 'Playfair Display',serif
    }

    .aside .cl a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 11px 16px;
        font-size: 13px;
        border-top: 1px solid var(--line2)
    }

        .aside .cl a:hover, .aside .cl a.on {
            background: #FCF3E5;
            color: var(--gold);
            font-weight: 500
        }

.promo {
    margin: 14px;
    border-radius: 10px;
    overflow: hidden;
    background: linear-gradient(135deg,#FBEFD6,#F7E3C2);
    padding: 18px;
    text-align: center
}

    .promo .pt2 {
        font-family: 'Playfair Display',serif;
        color: var(--maroon);
        font-size: 20px;
        font-weight: 700
    }

.shopbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px
}

    .shopbar .ct {
        font-size: 13px;
        color: var(--muted)
    }

select {
    font-family: inherit;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 13px;
    color: var(--ink);
    background: #fff
}

.pager {
    display: flex;
    gap: 6px;
    justify-content: flex-end;
    margin-top: 22px
}

    .pager .pg {
        width: 34px;
        height: 34px;
        border: 1px solid var(--line);
        border-radius: 7px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 13px
    }

        .pager .pg.on {
            background: var(--gold);
            color: #fff;
            border-color: var(--gold)
        }

/* product detail */
.pd {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 42px
}

    .pd .main {
        background: var(--cream);
        border: 1px solid var(--line);
        border-radius: 14px;
        padding: 14px
    }

        .pd .main svg {
            width: 100%;
            aspect-ratio: 1;
            height: auto
        }

    .pd .thumbs {
        display: flex;
        gap: 9px;
        margin-top: 11px
    }

        .pd .thumbs .th {
            width: 64px;
            height: 64px;
            border-radius: 9px;
            border: 2px solid var(--line);
            background: var(--cream);
            overflow: hidden;
            cursor: pointer
        }

            .pd .thumbs .th.on {
                border-color: var(--maroon)
            }

    .pd h1 {
        font-size: 28px;
        color: var(--maroon);
        line-height: 1.15;
        font-weight: 700
    }

    .pd .for {
        color: var(--muted);
        font-size: 14px;
        margin-top: 2px
    }

.rate {
    color: var(--gold);
    font-size: 13px;
    margin: 7px 0
}

.pd .price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 14px 0
}

    .pd .price b {
        font-size: 27px;
        color: var(--maroon)
    }

.lbl {
    font-size: 11.5px;
    letter-spacing: .5px;
    color: var(--muted);
    text-transform: uppercase;
    margin: 18px 0 8px
}

.sizes {
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}

.sz {
    border: 1.5px solid var(--line);
    border-radius: 8px;
    padding: 7px 11px;
    font-size: 12px;
    background: #fff
}

    .sz.on {
        background: var(--maroon);
        color: #fff;
        border-color: var(--maroon)
    }

.qty {
    display: inline-flex;
    align-items: center;
    border: 1.5px solid var(--line);
    border-radius: 8px
}

    .qty button {
        width: 38px;
        height: 40px;
        font-size: 18px;
        color: var(--maroon)
    }

    .qty span {
        width: 42px;
        text-align: center
    }

.pd-act {
    display: flex;
    gap: 12px;
    margin: 22px 0 16px
}

    .pd-act .btn {
        flex: 1;
        text-align: center
    }

.pd-info {
    background: var(--cream);
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 12.5px;
    display: flex;
    flex-direction: column;
    gap: 9px
}

    .pd-info .r {
        display: flex;
        gap: 9px;
        align-items: center
    }

        .pd-info .r svg {
            color: var(--gold);
            flex-shrink: 0
        }

.szl {
    color: var(--gold);
    text-decoration: underline;
    cursor: pointer;
    font-size: 13px
}

/* size guide */
.sgwrap {
    max-width: 1000px;
    margin: 0 auto
}

.sgtabs {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 22px
}

    .sgtabs button {
        border: 1.5px solid var(--gold);
        border-radius: 22px;
        padding: 8px 20px;
        font-size: 12.5px;
        color: var(--gold)
    }

        .sgtabs button.on {
            background: var(--gold);
            color: #fff
        }

.sgcard {
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 18px;
    display: grid;
    grid-template-columns: 230px 1fr;
    gap: 22px;
    align-items: center
}

table.sg {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    border-radius: 8px;
    overflow: hidden
}

    table.sg th {
        background: var(--gold);
        color: #fff;
        padding: 11px;
        font-weight: 500;
        font-size: 12.5px
    }

    table.sg td {
        padding: 9px 11px;
        border: 1px solid var(--line);
        text-align: center
    }

    table.sg tr:nth-child(even) td {
        background: var(--cream)
    }

.measure {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 14px;
    margin-top: 8px
}

.mstep {
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 16px;
    text-align: center
}

    .mstep .n {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background: var(--cream);
        color: var(--maroon);
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 8px;
        font-size: 13px
    }

    .mstep b {
        display: block;
        color: var(--ink);
        font-size: 13px;
        margin-bottom: 4px
    }

    .mstep p {
        font-size: 11.5px;
        color: var(--muted)
    }

.wahelp {
    background: var(--cream);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 18px;
    flex-wrap: wrap
}

    .wahelp .wac {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: var(--wa);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff
    }

/* cart table */
.carttable {
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden
}

    .carttable .h {
        display: grid;
        grid-template-columns: 2.4fr 1fr 1.3fr 1fr .6fr;
        background: var(--cream);
        padding: 13px 18px;
        font-size: 11.5px;
        color: var(--maroon);
        font-weight: 600;
        letter-spacing: .5px
    }

.crow {
    display: grid;
    grid-template-columns: 2.4fr 1fr 1.3fr 1fr .6fr;
    align-items: center;
    padding: 14px 18px;
    border-top: 1px solid var(--line2)
}

    .crow .pi {
        display: flex;
        gap: 12px;
        align-items: center
    }

        .crow .pi .th {
            width: 60px;
            height: 60px;
            border-radius: 8px;
            background: var(--cream);
            overflow: hidden;
            flex-shrink: 0
        }

            .crow .pi .th svg {
                width: 100%;
                height: 100%
            }

        .crow .pi .nm {
            font-size: 13.5px;
            color: var(--ink)
        }

        .crow .pi .s {
            font-size: 11px;
            color: var(--muted)
        }

        .crow .pi .ins {
            font-size: 11px;
            color: var(--teal)
        }

.summary {
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 18px;
    height: fit-content;
    background: #fff
}

    .summary h3 {
        font-size: 16px;
        color: var(--maroon);
        text-align: center;
        margin-bottom: 14px
    }

.srow {
    display: flex;
    justify-content: space-between;
    font-size: 13.5px;
    margin-bottom: 10px;
    color: var(--soft)
}

    .srow.tot {
        border-top: 1px solid var(--line);
        padding-top: 12px;
        font-size: 17px;
        font-weight: 600;
        color: var(--maroon)
    }

.cartgrid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 24px
}

.coupon {
    display: flex;
    gap: 8px;
    margin-top: 10px
}

    .coupon input {
        flex: 1;
        border: 1px solid var(--line);
        border-radius: 8px;
        padding: 9px 12px;
        font-family: inherit;
        font-size: 13px
    }

.cartfeat {
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 14px;
    margin-top: 14px;
    font-size: 12px;
    background: var(--cream)
}

    .cartfeat .r {
        display: flex;
        gap: 9px;
        align-items: flex-start;
        margin-bottom: 9px
    }

        .cartfeat .r svg {
            color: var(--gold);
            flex-shrink: 0
        }

/* forms / login */
.authwrap {
    max-width: 1080px;
    margin: 0 auto
}

.authhead {
    text-align: center;
    margin-bottom: 22px
}

    .authhead h1 {
        font-size: 28px;
        color: var(--maroon);
        font-weight: 700
    }

.authcard {
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 26px
}

.split {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 26px;
    align-items: center
}

    .split .vline {
        background: var(--line);
        width: 1px;
        height: 100%
    }

.field {
    margin-bottom: 14px
}

    .field label {
        display: block;
        font-size: 12px;
        color: var(--soft);
        margin-bottom: 5px
    }

        .field label .req {
            color: #C7304A
        }

    .field input, .field select, .field textarea {
        width: 100%;
        border: 1px solid var(--line);
        border-radius: 8px;
        padding: 11px 13px;
        font-family: inherit;
        font-size: 13.5px;
        background: #fff
    }

        .field input:focus, .field textarea:focus {
            outline: none;
            border-color: var(--gold)
        }

.frow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

.frow3 {
    grid-template-columns: 1fr 1fr 1fr
}

.social {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 6px
}

    .social .s {
        width: 46px;
        height: 46px;
        border: 1px solid var(--line);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600
    }

.benefit {
    display: flex;
    gap: 11px;
    align-items: center;
    margin-bottom: 14px;
    font-size: 13.5px
}

    .benefit .bi {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: var(--cream);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--gold)
    }

.securenote {
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--cream);
    padding: 13px 16px;
    display: flex;
    gap: 11px;
    align-items: center;
    font-size: 12.5px;
    margin-top: 18px
}

    .securenote svg {
        color: var(--gold)
    }

/* account */
.acctlay {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 24px
}

.acctside {
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    height: fit-content
}

    .acctside .me {
        padding: 18px;
        text-align: center;
        border-bottom: 1px solid var(--line2)
    }

        .acctside .me .av {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: var(--maroon);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 8px;
            font-size: 22px;
            font-family: 'Playfair Display',serif
        }

        .acctside .me .nm {
            font-weight: 500;
            color: var(--ink)
        }

        .acctside .me .em {
            font-size: 11.5px;
            color: var(--muted)
        }

    .acctside .gold {
        display: inline-block;
        margin-top: 7px;
        background: #FCEFD7;
        color: var(--gold-d);
        font-size: 10.5px;
        padding: 3px 10px;
        border-radius: 20px;
        font-weight: 500
    }

.acctnav a {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 11px 18px;
    font-size: 13px;
    border-top: 1px solid var(--line2);
    color: var(--soft)
}

    .acctnav a:hover, .acctnav a.on {
        background: #FBEEF0;
        color: var(--maroon);
        font-weight: 500
    }

    .acctnav a.logout {
        color: var(--maroon)
    }

    .acctnav a .ct {
        margin-left: auto;
        background: var(--maroon);
        color: #fff;
        font-size: 9.5px;
        border-radius: 9px;
        padding: 0 6px
    }

.statgrid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 12px;
    margin: 16px 0
}

.stat {
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 14px
}

    .stat .ico {
        width: 38px;
        height: 38px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 8px
    }

    .stat .v {
        font-size: 20px;
        font-weight: 600;
        color: var(--ink)
    }

    .stat .l {
        font-size: 11.5px;
        color: var(--muted)
    }

    .stat a {
        font-size: 11px;
        color: var(--gold);
        display: block;
        margin-top: 5px
    }

.panel {
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px
}

    .panel h3 {
        font-size: 15px;
        color: var(--maroon);
        margin-bottom: 12px;
        display: flex;
        justify-content: space-between;
        align-items: center
    }

        .panel h3 a {
            font-size: 11.5px;
            color: var(--gold)
        }

.ordrow {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-top: 1px solid var(--line2);
    font-size: 13px
}

    .ordrow:first-of-type {
        border-top: none
    }

    .ordrow .th {
        width: 44px;
        height: 44px;
        border-radius: 8px;
        background: var(--cream);
        overflow: hidden;
        flex-shrink: 0
    }

        .ordrow .th svg {
            width: 100%;
            height: 100%
        }

.chip {
    font-size: 10.5px;
    padding: 3px 9px;
    border-radius: 6px;
    font-weight: 500
}

    .chip.del {
        background: #E7F4EC;
        color: var(--teal)
    }

    .chip.shp {
        background: #E8EFF7;
        color: #1B5E9E
    }

    .chip.prc {
        background: #FBF1DC;
        color: #B07A1A
    }

    .chip.can {
        background: #F0EEEC;
        color: #7A6A5E
    }

.summarybox {
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 16px
}

    .summarybox .r {
        display: flex;
        justify-content: space-between;
        font-size: 13px;
        padding: 7px 0;
        border-bottom: 1px solid var(--line2)
    }

.qlinks a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--line2);
    font-size: 13px;
    color: var(--soft)
}

    .qlinks a svg {
        color: var(--gold)
    }

.needhelp {
    background: #FBEEF0;
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    margin-top: 14px
}

    .needhelp svg {
        color: var(--maroon)
    }

/* orders + tracking */
.ordertabs {
    display: flex;
    gap: 18px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 14px;
    font-size: 12.5px;
    overflow-x: auto
}

    .ordertabs a {
        padding: 10px 2px;
        border-bottom: 2px solid transparent;
        white-space: nowrap;
        color: var(--soft)
    }

        .ordertabs a.on {
            color: var(--maroon);
            border-color: var(--maroon);
            font-weight: 500
        }

.ocard {
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 14px;
    margin-bottom: 12px;
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap
}

    .ocard .th {
        width: 60px;
        height: 60px;
        border-radius: 8px;
        background: var(--cream);
        overflow: hidden;
        flex-shrink: 0
    }

        .ocard .th svg {
            width: 100%;
            height: 100%
        }

    .ocard .oi {
        flex: 1;
        min-width: 160px;
        font-size: 13px
    }

        .ocard .oi .id {
            font-weight: 500;
            color: var(--ink)
        }

        .ocard .oi .dt {
            font-size: 11.5px;
            color: var(--muted)
        }

.track {
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 18px;
    background: #FBEEF0;
    height: fit-content
}

    .track h3 {
        color: var(--maroon);
        font-size: 16px;
        margin-bottom: 12px
    }

.tinput {
    display: flex;
    gap: 8px;
    margin-bottom: 16px
}

    .tinput input {
        flex: 1;
        border: 1px solid var(--line);
        border-radius: 8px;
        padding: 10px;
        font-family: inherit;
        font-size: 13px
    }

.tl {
    position: relative;
    padding-left: 26px
}

    .tl .step {
        position: relative;
        padding-bottom: 18px
    }

        .tl .step:before {
            content: '';
            position: absolute;
            left: -19px;
            top: 3px;
            width: 13px;
            height: 13px;
            border-radius: 50%;
            background: var(--teal)
        }

        .tl .step.pending:before {
            background: #D8CFC4
        }

        .tl .step:after {
            content: '';
            position: absolute;
            left: -13.5px;
            top: 16px;
            bottom: 0;
            width: 2px;
            background: var(--teal)
        }

        .tl .step:last-child:after {
            display: none
        }

        .tl .step.pending:after {
            background: #E5DCD0
        }

        .tl .step b {
            font-size: 13px;
            color: var(--ink)
        }

        .tl .step span {
            font-size: 11px;
            color: var(--muted);
            display: block
        }

/* about / info */
.infohead {
    text-align: center;
    padding: 6px 0 18px
}

    .infohead h1 {
        font-size: 30px;
        color: var(--maroon);
        font-weight: 700
    }

    .infohead p {
        color: var(--muted);
        font-size: 13px
    }

.abgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center
}

.abimg {
    background: var(--cream);
    border-radius: 14px;
    aspect-ratio: 1.2;
    display: flex;
    align-items: center;
    justify-content: center
}

    .abimg svg {
        width: 60%
    }

.pillrow {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 12px;
    margin-top: 16px
}

.pillc {
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 14px;
    text-align: center;
    font-size: 12px
}

    .pillc svg {
        color: var(--gold);
        margin: 0 auto 7px
    }

.statband {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 14px;
    background: var(--cream);
    border-radius: 12px;
    padding: 18px;
    margin: 24px 0;
    text-align: center
}

    .statband .v {
        font-size: 24px;
        color: var(--maroon);
        font-weight: 700
    }

    .statband .l {
        font-size: 11.5px;
        color: var(--muted)
    }

.infocards {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 14px
}

.infoc {
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 18px;
    text-align: center
}

    .infoc .ico {
        width: 46px;
        height: 46px;
        border-radius: 10px;
        background: var(--cream);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--gold);
        margin: 0 auto 10px
    }

    .infoc b {
        display: block;
        color: var(--maroon);
        font-size: 13px;
        margin-bottom: 6px
    }

    .infoc p {
        font-size: 12px;
        color: var(--soft)
    }

/* faq */
.faqlay {
    display: grid;
    grid-template-columns: 230px 1fr 280px;
    gap: 22px
}

.faqcat a {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 11px 14px;
    border: 1px solid var(--line);
    border-radius: 9px;
    margin-bottom: 8px;
    font-size: 13px;
    color: var(--soft)
}

    .faqcat a.on, .faqcat a:hover {
        background: var(--gold);
        color: #fff;
        border-color: var(--gold)
    }

.acc {
    border: 1px solid var(--line);
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden
}

    .acc .q {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 18px;
        font-size: 13.5px;
        cursor: pointer;
        gap: 12px
    }

        .acc .q .num {
            color: var(--gold);
            font-weight: 600;
            margin-right: 4px
        }

    .acc .a {
        max-height: 0;
        overflow: hidden;
        transition: .25s;
        font-size: 13px;
        color: var(--soft);
        padding: 0 18px
    }

    .acc.open .a {
        max-height: 200px;
        padding: 0 18px 16px
    }

    .acc.open .q .chev {
        transform: rotate(180deg)
    }

.helpbox {
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 18px;
    height: fit-content
}

    .helpbox h4 {
        color: var(--maroon);
        margin-bottom: 12px
    }

    .helpbox .r {
        display: flex;
        gap: 10px;
        align-items: flex-start;
        margin-bottom: 12px;
        font-size: 12.5px
    }

        .helpbox .r svg {
            color: var(--gold);
            flex-shrink: 0
        }

/* 404 */
.nf {
    text-align: center;
    padding: 50px 20px
}

    .nf .big {
        font-family: 'Playfair Display',serif;
        font-size: 90px;
        color: var(--maroon);
        font-weight: 700;
        line-height: 1
    }

    .nf h2 {
        font-size: 24px;
        color: var(--maroon);
        margin-top: 6px
    }

    .nf .acts2 {
        display: flex;
        gap: 12px;
        justify-content: center;
        margin: 20px 0
    }

/* suggestions */
.sugglay {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 24px
}

.suggform {
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 22px
}

    .suggform h3 {
        color: var(--maroon);
        font-size: 18px;
        margin-bottom: 4px
    }

.upload {
    border: 1.5px dashed var(--gold);
    border-radius: 10px;
    padding: 24px;
    text-align: center;
    color: var(--muted);
    font-size: 12.5px
}

    .upload svg {
        color: var(--gold);
        margin: 0 auto 6px
    }

.whycard {
    background: #FBEEF0;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 14px
}

    .whycard h4 {
        color: var(--maroon);
        font-size: 14px;
        margin-bottom: 10px
    }

    .whycard .r {
        display: flex;
        gap: 9px;
        font-size: 12.5px;
        margin-bottom: 8px;
        align-items: flex-start
    }

        .whycard .r svg {
            color: var(--gold);
            flex-shrink: 0
        }

/* footer */
footer {
    background: var(--maroon);
    color: #E9C9CF;
    margin-top: 10px
}

    footer .cols {
        display: grid;
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
        gap: 30px;
        padding: 42px 0 24px
    }

    footer .nm {
        font-family: 'Playfair Display',serif;
        color: #fff;
        font-size: 22px;
        font-weight: 700
    }

    footer .tg {
        color: #E0A92E;
        font-size: 11px;
        letter-spacing: .5px;
        margin-bottom: 12px
    }

    footer p {
        font-size: 12.5px;
        color: #D9B3BA;
        margin-bottom: 8px;
        line-height: 1.5
    }

    footer h5 {
        color: #fff;
        font-size: 13px;
        margin-bottom: 14px;
        letter-spacing: .5px
    }

    footer a {
        display: block;
        font-size: 12.5px;
        color: #D9B3BA;
        margin-bottom: 9px
    }

        footer a:hover {
            color: #fff
        }

    footer .soc {
        display: flex;
        gap: 10px;
        margin-top: 6px
    }

        footer .soc .ci {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: rgba(255,255,255,.12);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff
        }

.fbot {
    border-top: 1px solid rgba(255,255,255,.12);
    padding: 14px 0;
    text-align: center;
    font-size: 11.5px;
    color: #C99AA2
}

/* offer popup + modal */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(40,10,15,.55);
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px
}

    .overlay.open {
        display: flex;
        animation: fade .25s
    }

.offerc {
    background: #fff;
    border-radius: 18px;
    max-width: 380px;
    width: 100%;
    text-align: center;
    padding: 30px 26px;
    position: relative;
    border: 2px solid var(--gold)
}

    .offerc .x {
        position: absolute;
        top: 12px;
        right: 16px;
        font-size: 22px;
        color: var(--muted)
    }

    .offerc .big {
        font-family: 'Playfair Display',serif;
        font-size: 38px;
        color: var(--maroon);
        font-weight: 700
    }

    .offerc .code {
        display: inline-block;
        border: 1.5px dashed var(--gold);
        color: var(--gold-d);
        padding: 7px 16px;
        border-radius: 8px;
        font-weight: 600;
        letter-spacing: 1px;
        margin: 12px 0 18px
    }

.modal {
    background: #fff;
    border-radius: 14px;
    max-width: 880px;
    width: 100%;
    max-height: 88vh;
    overflow: auto
}

    .modal .mh {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 16px 22px;
        border-bottom: 1px solid var(--line)
    }

        .modal .mh h3 {
            color: var(--maroon)
        }

    .modal .mb {
        padding: 22px
    }

/* toast */
#toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--maroon);
    color: #fff;
    padding: 12px 22px;
    border-radius: 30px;
    font-size: 13px;
    z-index: 200;
    box-shadow: 0 8px 24px rgba(0,0,0,.25);
    opacity: 0;
    transition: .3s;
    pointer-events: none
}

/* mobile */
.scrim {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.35);
    z-index: 94;
    display: none
}

    .scrim.open {
        display: block
    }

.mob {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 280px;
    background: #fff;
    z-index: 95;
    transform: translateX(-100%);
    transition: .3s;
    overflow: auto
}

    .mob.open {
        transform: none
    }

    .mob .mh {
        background: var(--maroon);
        color: #fff;
        padding: 16px 18px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-family: 'Playfair Display',serif
    }

    .mob a {
        display: block;
        padding: 13px 18px;
        border-bottom: 1px solid var(--line);
        font-size: 13.5px
    }

@media(max-width:1000px) {
    .grid, .grid5 {
        grid-template-columns: repeat(2,1fr)
    }

    .pd, .abgrid, .cartgrid, .acctlay, .shoplay, .sugglay {
        grid-template-columns: 1fr
    }

    .faqlay {
        grid-template-columns: 1fr
    }

    .acctside, .aside, .faqcat {
        display: none
    }

    .split {
        grid-template-columns: 1fr
    }

        .split .vline {
            display: none
        }

    .searchbar, nav.main {
        display: none
    }

    .hamb {
        display: block
    }

    .acts .a .lb {
        display: none
    }

    .hero .wrap {
        flex-direction: column;
        text-align: center
    }

    .hero .jan {
        font-size: 38px
    }

    .hero .col {
        font-size: 34px
    }

    .statgrid, .pillrow, .infocards, .measure, .statband {
        grid-template-columns: repeat(2,1fr)
    }

    footer .cols {
        grid-template-columns: 1fr 1fr
    }

    .sgcard {
        grid-template-columns: 1fr
    }
}
/* ---- additions: wishlist heart, toasts, gallery, addresses, profile ---- */
.imgw {
    position: relative
}

.wish {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,.92);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,.12);
    transition: transform .15s
}

    .wish:hover {
        transform: scale(1.12)
    }

    .wish svg {
        width: 18px;
        height: 18px;
        fill: none;
        stroke: #86142A;
        stroke-width: 2
    }

    .wish.on {
        animation: pop .3s
    }

        .wish.on svg {
            fill: #E0234E;
            stroke: #E0234E
        }

@keyframes pop {
    0% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.35)
    }

    100% {
        transform: scale(1)
    }
}

.toasts {
    position: fixed;
    left: 50%;
    bottom: 26px;
    transform: translateX(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center
}

.toast {
    background: #86142A;
    color: #fff;
    padding: 11px 20px;
    border-radius: 30px;
    font-size: 13.5px;
    box-shadow: 0 6px 18px rgba(0,0,0,.18);
    opacity: 0;
    transform: translateY(12px);
    transition: .3s
}

    .toast.show {
        opacity: 1;
        transform: translateY(0)
    }

.pgal {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    flex-wrap: wrap
}

.pthumb {
    width: 62px;
    height: 62px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid var(--line);
    cursor: pointer;
    padding: 0;
    background: none
}

    .pthumb.on {
        border-color: var(--gold)
    }

    .pthumb img {
        width: 100%;
        height: 100%;
        object-fit: cover
    }

.addrcard {
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 14px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    background: #fff
}

    .addrcard.def {
        border-color: var(--gold);
        background: #FBF1DC
    }

.pfp {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold2);
    background: #FBF1DC
}

.otpbox {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap
}
:root {
    --gold: #C9762E;
    --gold-d: #A75E1E;
    --maroon: #86142A;
    --maroon-d: #6B0F22;
    --ink: #3A2A20;
    --soft: #6A5644;
    --muted: #9A815E;
    --line: #ECE0CC;
    --line2: #F1E7D6;
    --cream: #FCF7EE;
    --cream2: #FBF1DC;
    --white: #fff;
    --teal: #1E8A6E;
    --wa: #25A766;
    --rad: 12px;
    --sh: 0 6px 22px rgba(90,30,30,.09);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Poppins',system-ui,sans-serif;
    color: var(--ink);
    background: #fff;
    font-weight: 300;
    font-size: 14.5px;
    line-height: 1.55
}

h1, h2, h3, h4, .disp {
    font-family: 'Playfair Display',Georgia,serif
}

a {
    color: inherit;
    text-decoration: none
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none
}

img, svg {
    display: block
}

.wrap {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 22px
}

.btn {
    display: inline-block;
    background: var(--gold);
    color: #fff;
    padding: 11px 22px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 13.5px;
    transition: .18s
}

    .btn:hover {
        background: var(--gold-d)
    }

.btn-m {
    background: var(--maroon)
}

    .btn-m:hover {
        background: var(--maroon-d)
    }

.btn-o {
    background: #fff;
    color: var(--gold);
    border: 1.5px solid var(--gold)
}

    .btn-o:hover {
        background: #FCF1E5
    }

.btn-mo {
    background: #fff;
    color: var(--maroon);
    border: 1.5px solid var(--maroon)
}

    .btn-mo:hover {
        background: #FBEEF0
    }

.strike {
    text-decoration: line-through;
    color: #BBA987;
    font-weight: 300
}

.off {
    color: var(--teal);
    font-size: 12.5px;
    font-weight: 500
}

.muted {
    color: var(--muted)
}

.ic {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round
}

    .ic.f {
        fill: currentColor;
        stroke: none
    }

.orn {
    color: var(--gold);
    letter-spacing: 2px
}

.sec-title {
    text-align: center;
    font-size: 28px;
    color: var(--maroon);
    font-weight: 700;
    margin-bottom: 4px
}

.sec-sub {
    text-align: center;
    color: var(--muted);
    font-size: 13px;
    margin-bottom: 22px
}

/* announcement + header */
.announce {
    background: var(--gold);
    color: #fff;
    font-size: 12px
}

    .announce .wrap {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 34px;
        gap: 16px;
        flex-wrap: wrap;
        overflow: hidden
    }

    .announce b {
        font-weight: 500
    }

header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #fff;
    box-shadow: 0 2px 12px rgba(90,30,30,.05)
}

.hd {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 14px 0
}

.logo {
    display: flex;
    align-items: center;
    gap: 11px;
    cursor: pointer;
    flex-shrink: 0
}

    .logo .mk {
        width: 46px;
        height: 46px;
        border-radius: 50%;
        background: radial-gradient(circle at 50% 35%,#F6D98A,#C9762E);
        display: flex;
        align-items: center;
        justify-content: center
    }

    .logo .nm {
        font-family: 'Playfair Display',serif;
        font-weight: 700;
        font-size: 23px;
        color: var(--maroon);
        line-height: 1
    }

    .logo .tg {
        font-size: 10.5px;
        color: var(--gold);
        letter-spacing: .6px
    }

.searchbar {
    flex: 1;
    display: flex;
    max-width: 560px;
    border: 1.5px solid var(--line);
    border-radius: 9px;
    overflow: visible;
    position: relative
}

    .searchbar .cat {
        display: flex;
        align-items: center;
        gap: 6px;
        padding: 0 14px;
        background: var(--cream);
        border-right: 1.5px solid var(--line);
        font-size: 12.5px;
        color: var(--soft);
        white-space: nowrap;
        border-radius: 9px 0 0 9px
    }

    .searchbar input {
        flex: 1;
        border: none;
        padding: 11px 14px;
        font-family: inherit;
        font-size: 13.5px;
        outline: none
    }

    .searchbar .go {
        background: var(--gold);
        color: #fff;
        width: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 0 8px 8px 0
    }

.suggest {
    position: absolute;
    top: 46px;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    box-shadow: var(--sh);
    padding: 6px;
    display: none;
    z-index: 60
}

    .suggest.open {
        display: block
    }

    .suggest div {
        padding: 9px 12px;
        border-radius: 7px;
        font-size: 13.5px;
        display: flex;
        gap: 9px;
        align-items: center
    }

        .suggest div:hover {
            background: var(--cream)
        }

.acts {
    display: flex;
    align-items: center;
    gap: 22px;
    color: var(--maroon)
}

    .acts .a {
        display: flex;
        align-items: center;
        gap: 7px;
        cursor: pointer;
        font-size: 12.5px;
        position: relative
    }

        .acts .a:hover {
            color: var(--gold)
        }

        .acts .a .lb b {
            display: block;
            font-weight: 500;
            font-size: 12.5px;
            line-height: 1.1
        }

        .acts .a .lb span {
            font-size: 10px;
            color: var(--muted)
        }

.badge {
    position: absolute;
    top: -7px;
    left: 14px;
    background: var(--maroon);
    color: #fff;
    font-size: 9.5px;
    min-width: 16px;
    height: 16px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px
}

.hamb {
    display: none;
    color: var(--maroon)
}

nav.main {
    border-top: 1px solid var(--line)
}

    nav.main .wrap {
        display: flex;
        gap: 24px;
        height: 48px;
        align-items: center;
        font-size: 12.5px;
        font-weight: 400;
        letter-spacing: .3px;
        overflow-x: auto
    }

    nav.main a {
        white-space: nowrap;
        padding: 14px 0;
        border-bottom: 2.5px solid transparent;
        color: var(--ink);
        display: flex;
        align-items: center;
        gap: 4px
    }

        nav.main a:hover, nav.main a.on {
            color: var(--gold);
            border-color: var(--gold)
        }

        nav.main a .nw {
            background: var(--maroon);
            color: #fff;
            font-size: 8px;
            padding: 1px 5px;
            border-radius: 8px;
            margin-left: 2px
        }

/* pages */
.page {
    display: none
}

    .page.on {
        display: block;
        animation: fade .3s ease
    }

@keyframes fade {
    from {
        opacity: 0;
        transform: translateY(5px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.crumb {
    font-size: 12px;
    color: var(--muted);
    padding: 14px 0
}

    .crumb b {
        color: var(--maroon);
        font-weight: 500
    }

.pt {
    padding: 8px 0 46px
}

/* hero */
.hero {
    background: linear-gradient(100deg,#FBF1DC 0%,#FCF7EE 48%,#F7EEDC 100%);
    position: relative;
    overflow: hidden
}

    .hero .wrap {
        display: flex;
        align-items: center;
        min-height: 380px;
        gap: 24px;
        padding: 30px 22px
    }

.hero-l {
    flex: 1.1;
    z-index: 2
}

.hero .jan {
    font-family: 'Playfair Display',serif;
    font-weight: 700;
    font-size: 50px;
    color: var(--maroon);
    line-height: 1
}

.hero .col {
    font-style: italic;
    color: var(--gold);
    font-size: 46px
}

.hero p {
    font-size: 16px;
    color: var(--ink);
    margin: 14px 0 22px;
    max-width: 430px
}

.hero-r {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative
}

    .hero-r .glow {
        position: absolute;
        width: 330px;
        height: 330px;
        border-radius: 50%;
        background: #fff;
        opacity: .45;
        filter: blur(8px)
    }

    .hero-r svg {
        width: 300px;
        height: 300px;
        position: relative;
        filter: drop-shadow(0 16px 30px rgba(90,30,30,.18))
    }

.dots {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-top: 6px
}

    .dots i {
        width: 18px;
        height: 4px;
        border-radius: 3px;
        background: #E0CDB0
    }

        .dots i.on {
            background: var(--gold);
            width: 26px
        }

/* category circles */
.cats {
    padding: 30px 0 8px
}

    .cats .row {
        display: flex;
        gap: 10px;
        justify-content: center;
        flex-wrap: wrap
    }

.cat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    width: 104px
}

    .cat .ring {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        border: 2px solid var(--cream2);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: .2s;
        background: #fff
    }

    .cat:hover .ring {
        border-color: var(--gold);
        transform: translateY(-3px);
        box-shadow: var(--sh)
    }

    .cat span {
        font-size: 11.5px;
        color: var(--ink);
        text-align: center;
        font-weight: 400
    }

/* section + grid */
.sec {
    padding: 30px 0
}

.sec-h {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 22px
}

    .sec-h h2 {
        font-size: 25px;
        color: var(--maroon);
        font-weight: 700
    }

.grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 18px
}

.grid5 {
    grid-template-columns: repeat(5,1fr)
}

.card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    transition: .2s;
    position: relative
}

    .card:hover {
        box-shadow: var(--sh);
        transform: translateY(-3px)
    }

    .card .imgw {
        position: relative;
        cursor: pointer;
        background: var(--cream)
    }

        .card .imgw svg {
            width: 100%;
            aspect-ratio: 1;
            height: auto
        }

    .card .tag {
        position: absolute;
        top: 9px;
        left: 9px;
        background: var(--maroon);
        color: #fff;
        font-size: 9.5px;
        padding: 3px 8px;
        border-radius: 5px;
        font-weight: 500
    }

    .card .wish {
        position: absolute;
        top: 8px;
        right: 9px;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--maroon);
        box-shadow: 0 2px 6px rgba(0,0,0,.08)
    }

        .card .wish.on {
            color: #D6324B
        }

    .card .bd {
        padding: 11px 13px 13px;
        text-align: center
    }

    .card .nm {
        font-size: 13.5px;
        color: var(--ink);
        font-weight: 400;
        cursor: pointer
    }

    .card .for {
        font-size: 11px;
        color: var(--muted);
        margin: 1px 0 5px
    }

    .card .pr {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 7px;
        margin-bottom: 9px
    }

        .card .pr b {
            color: var(--maroon);
            font-size: 16px;
            font-weight: 600
        }

    .card .add {
        width: 100%;
        background: var(--gold);
        color: #fff;
        padding: 9px;
        border-radius: 7px;
        font-size: 12px;
        font-weight: 500;
        letter-spacing: .4px
    }

        .card .add:hover {
            background: var(--gold-d)
        }

/* trust strip */
.trust {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: #fff
}

    .trust .wrap {
        display: flex;
        justify-content: space-between;
        gap: 14px;
        padding: 20px 22px;
        flex-wrap: wrap
    }

    .trust .t {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 12px;
        color: var(--soft)
    }

        .trust .t svg {
            color: var(--gold);
            flex-shrink: 0
        }

        .trust .t b {
            display: block;
            color: var(--ink);
            font-weight: 500;
            font-size: 12.5px
        }

/* newsletter strip (home) */
.nlstrip {
    background: var(--cream);
    padding: 26px 0
}

    .nlstrip .wrap {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 30px;
        flex-wrap: wrap
    }

    .nlstrip .nl h4 {
        color: var(--maroon);
        font-size: 17px
    }

    .nlstrip .nl .row {
        display: flex;
        gap: 8px;
        margin-top: 8px
    }

    .nlstrip .nl input {
        border: 1px solid var(--line);
        border-radius: 8px;
        padding: 10px 14px;
        font-family: inherit;
        min-width: 240px
    }

.follow {
    display: flex;
    gap: 14px;
    align-items: center
}

    .follow .s {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
        font-size: 10px;
        color: var(--muted)
    }

        .follow .s .ci {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: #fff;
            border: 1px solid var(--line);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold)
        }

.badges {
    display: flex;
    gap: 22px
}

    .badges .b {
        text-align: center;
        font-size: 11px;
        color: var(--soft)
    }

        .badges .b svg {
            color: var(--gold);
            margin: 0 auto 4px
        }

/* shop layout */
.shoplay {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 26px
}

.aside {
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    height: fit-content
}

    .aside h4 {
        background: var(--cream);
        color: var(--maroon);
        font-size: 13px;
        letter-spacing: .5px;
        padding: 13px 16px;
        font-weight: 600;
        font-family: 'Playfair Display',serif
    }

    .aside .cl a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 11px 16px;
        font-size: 13px;
        border-top: 1px solid var(--line2)
    }

        .aside .cl a:hover, .aside .cl a.on {
            background: #FCF3E5;
            color: var(--gold);
            font-weight: 500
        }

.promo {
    margin: 14px;
    border-radius: 10px;
    overflow: hidden;
    background: linear-gradient(135deg,#FBEFD6,#F7E3C2);
    padding: 18px;
    text-align: center
}

    .promo .pt2 {
        font-family: 'Playfair Display',serif;
        color: var(--maroon);
        font-size: 20px;
        font-weight: 700
    }

.shopbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px
}

    .shopbar .ct {
        font-size: 13px;
        color: var(--muted)
    }

select {
    font-family: inherit;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 13px;
    color: var(--ink);
    background: #fff
}

.pager {
    display: flex;
    gap: 6px;
    justify-content: flex-end;
    margin-top: 22px
}

    .pager .pg {
        width: 34px;
        height: 34px;
        border: 1px solid var(--line);
        border-radius: 7px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 13px
    }

        .pager .pg.on {
            background: var(--gold);
            color: #fff;
            border-color: var(--gold)
        }

/* product detail */
.pd {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 42px
}

    .pd .main {
        background: var(--cream);
        border: 1px solid var(--line);
        border-radius: 14px;
        padding: 14px
    }

        .pd .main svg {
            width: 100%;
            aspect-ratio: 1;
            height: auto
        }

    .pd .thumbs {
        display: flex;
        gap: 9px;
        margin-top: 11px
    }

        .pd .thumbs .th {
            width: 64px;
            height: 64px;
            border-radius: 9px;
            border: 2px solid var(--line);
            background: var(--cream);
            overflow: hidden;
            cursor: pointer
        }

            .pd .thumbs .th.on {
                border-color: var(--maroon)
            }

    .pd h1 {
        font-size: 28px;
        color: var(--maroon);
        line-height: 1.15;
        font-weight: 700
    }

    .pd .for {
        color: var(--muted);
        font-size: 14px;
        margin-top: 2px
    }

.rate {
    color: var(--gold);
    font-size: 13px;
    margin: 7px 0
}

.pd .price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 14px 0
}

    .pd .price b {
        font-size: 27px;
        color: var(--maroon)
    }

.lbl {
    font-size: 11.5px;
    letter-spacing: .5px;
    color: var(--muted);
    text-transform: uppercase;
    margin: 18px 0 8px
}

.sizes {
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}

.sz {
    border: 1.5px solid var(--line);
    border-radius: 8px;
    padding: 7px 11px;
    font-size: 12px;
    background: #fff
}

    .sz.on {
        background: var(--maroon);
        color: #fff;
        border-color: var(--maroon)
    }

.qty {
    display: inline-flex;
    align-items: center;
    border: 1.5px solid var(--line);
    border-radius: 8px
}

    .qty button {
        width: 38px;
        height: 40px;
        font-size: 18px;
        color: var(--maroon)
    }

    .qty span {
        width: 42px;
        text-align: center
    }

.pd-act {
    display: flex;
    gap: 12px;
    margin: 22px 0 16px
}

    .pd-act .btn {
        flex: 1;
        text-align: center
    }

.pd-info {
    background: var(--cream);
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 12.5px;
    display: flex;
    flex-direction: column;
    gap: 9px
}

    .pd-info .r {
        display: flex;
        gap: 9px;
        align-items: center
    }

        .pd-info .r svg {
            color: var(--gold);
            flex-shrink: 0
        }

.szl {
    color: var(--gold);
    text-decoration: underline;
    cursor: pointer;
    font-size: 13px
}

/* size guide */
.sgwrap {
    max-width: 1000px;
    margin: 0 auto
}

.sgtabs {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 22px
}

    .sgtabs button {
        border: 1.5px solid var(--gold);
        border-radius: 22px;
        padding: 8px 20px;
        font-size: 12.5px;
        color: var(--gold)
    }

        .sgtabs button.on {
            background: var(--gold);
            color: #fff
        }

.sgcard {
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 18px;
    display: grid;
    grid-template-columns: 230px 1fr;
    gap: 22px;
    align-items: center
}

table.sg {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    border-radius: 8px;
    overflow: hidden
}

    table.sg th {
        background: var(--gold);
        color: #fff;
        padding: 11px;
        font-weight: 500;
        font-size: 12.5px
    }

    table.sg td {
        padding: 9px 11px;
        border: 1px solid var(--line);
        text-align: center
    }

    table.sg tr:nth-child(even) td {
        background: var(--cream)
    }

.measure {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 14px;
    margin-top: 8px
}

.mstep {
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 16px;
    text-align: center
}

    .mstep .n {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background: var(--cream);
        color: var(--maroon);
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 8px;
        font-size: 13px
    }

    .mstep b {
        display: block;
        color: var(--ink);
        font-size: 13px;
        margin-bottom: 4px
    }

    .mstep p {
        font-size: 11.5px;
        color: var(--muted)
    }

.wahelp {
    background: var(--cream);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 18px;
    flex-wrap: wrap
}

    .wahelp .wac {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: var(--wa);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff
    }

/* cart table */
.carttable {
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden
}

    .carttable .h {
        display: grid;
        grid-template-columns: 2.4fr 1fr 1.3fr 1fr .6fr;
        background: var(--cream);
        padding: 13px 18px;
        font-size: 11.5px;
        color: var(--maroon);
        font-weight: 600;
        letter-spacing: .5px
    }

.crow {
    display: grid;
    grid-template-columns: 2.4fr 1fr 1.3fr 1fr .6fr;
    align-items: center;
    padding: 14px 18px;
    border-top: 1px solid var(--line2)
}

    .crow .pi {
        display: flex;
        gap: 12px;
        align-items: center
    }

        .crow .pi .th {
            width: 60px;
            height: 60px;
            border-radius: 8px;
            background: var(--cream);
            overflow: hidden;
            flex-shrink: 0
        }

            .crow .pi .th svg {
                width: 100%;
                height: 100%
            }

        .crow .pi .nm {
            font-size: 13.5px;
            color: var(--ink)
        }

        .crow .pi .s {
            font-size: 11px;
            color: var(--muted)
        }

        .crow .pi .ins {
            font-size: 11px;
            color: var(--teal)
        }

.summary {
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 18px;
    height: fit-content;
    background: #fff
}

    .summary h3 {
        font-size: 16px;
        color: var(--maroon);
        text-align: center;
        margin-bottom: 14px
    }

.srow {
    display: flex;
    justify-content: space-between;
    font-size: 13.5px;
    margin-bottom: 10px;
    color: var(--soft)
}

    .srow.tot {
        border-top: 1px solid var(--line);
        padding-top: 12px;
        font-size: 17px;
        font-weight: 600;
        color: var(--maroon)
    }

.cartgrid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 24px
}

.coupon {
    display: flex;
    gap: 8px;
    margin-top: 10px
}

    .coupon input {
        flex: 1;
        border: 1px solid var(--line);
        border-radius: 8px;
        padding: 9px 12px;
        font-family: inherit;
        font-size: 13px
    }

.cartfeat {
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 14px;
    margin-top: 14px;
    font-size: 12px;
    background: var(--cream)
}

    .cartfeat .r {
        display: flex;
        gap: 9px;
        align-items: flex-start;
        margin-bottom: 9px
    }

        .cartfeat .r svg {
            color: var(--gold);
            flex-shrink: 0
        }

/* forms / login */
.authwrap {
    max-width: 1080px;
    margin: 0 auto
}

.authhead {
    text-align: center;
    margin-bottom: 22px
}

    .authhead h1 {
        font-size: 28px;
        color: var(--maroon);
        font-weight: 700
    }

.authcard {
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 26px
}

.split {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 26px;
    align-items: center
}

    .split .vline {
        background: var(--line);
        width: 1px;
        height: 100%
    }

.field {
    margin-bottom: 14px
}

    .field label {
        display: block;
        font-size: 12px;
        color: var(--soft);
        margin-bottom: 5px
    }

        .field label .req {
            color: #C7304A
        }

    .field input, .field select, .field textarea {
        width: 100%;
        border: 1px solid var(--line);
        border-radius: 8px;
        padding: 11px 13px;
        font-family: inherit;
        font-size: 13.5px;
        background: #fff
    }

        .field input:focus, .field textarea:focus {
            outline: none;
            border-color: var(--gold)
        }

.frow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

.frow3 {
    grid-template-columns: 1fr 1fr 1fr
}

.social {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 6px
}

    .social .s {
        width: 46px;
        height: 46px;
        border: 1px solid var(--line);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600
    }

.benefit {
    display: flex;
    gap: 11px;
    align-items: center;
    margin-bottom: 14px;
    font-size: 13.5px
}

    .benefit .bi {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: var(--cream);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--gold)
    }

.securenote {
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--cream);
    padding: 13px 16px;
    display: flex;
    gap: 11px;
    align-items: center;
    font-size: 12.5px;
    margin-top: 18px
}

    .securenote svg {
        color: var(--gold)
    }

/* account */
.acctlay {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 24px
}

.acctside {
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    height: fit-content
}

    .acctside .me {
        padding: 18px;
        text-align: center;
        border-bottom: 1px solid var(--line2)
    }

        .acctside .me .av {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: var(--maroon);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 8px;
            font-size: 22px;
            font-family: 'Playfair Display',serif
        }

        .acctside .me .nm {
            font-weight: 500;
            color: var(--ink)
        }

        .acctside .me .em {
            font-size: 11.5px;
            color: var(--muted)
        }

    .acctside .gold {
        display: inline-block;
        margin-top: 7px;
        background: #FCEFD7;
        color: var(--gold-d);
        font-size: 10.5px;
        padding: 3px 10px;
        border-radius: 20px;
        font-weight: 500
    }

.acctnav a {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 11px 18px;
    font-size: 13px;
    border-top: 1px solid var(--line2);
    color: var(--soft)
}

    .acctnav a:hover, .acctnav a.on {
        background: #FBEEF0;
        color: var(--maroon);
        font-weight: 500
    }

    .acctnav a.logout {
        color: var(--maroon)
    }

    .acctnav a .ct {
        margin-left: auto;
        background: var(--maroon);
        color: #fff;
        font-size: 9.5px;
        border-radius: 9px;
        padding: 0 6px
    }

.statgrid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 12px;
    margin: 16px 0
}

.stat {
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 14px
}

    .stat .ico {
        width: 38px;
        height: 38px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 8px
    }

    .stat .v {
        font-size: 20px;
        font-weight: 600;
        color: var(--ink)
    }

    .stat .l {
        font-size: 11.5px;
        color: var(--muted)
    }

    .stat a {
        font-size: 11px;
        color: var(--gold);
        display: block;
        margin-top: 5px
    }

.panel {
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px
}

    .panel h3 {
        font-size: 15px;
        color: var(--maroon);
        margin-bottom: 12px;
        display: flex;
        justify-content: space-between;
        align-items: center
    }

        .panel h3 a {
            font-size: 11.5px;
            color: var(--gold)
        }

.ordrow {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-top: 1px solid var(--line2);
    font-size: 13px
}

    .ordrow:first-of-type {
        border-top: none
    }

    .ordrow .th {
        width: 44px;
        height: 44px;
        border-radius: 8px;
        background: var(--cream);
        overflow: hidden;
        flex-shrink: 0
    }

        .ordrow .th svg {
            width: 100%;
            height: 100%
        }

.chip {
    font-size: 10.5px;
    padding: 3px 9px;
    border-radius: 6px;
    font-weight: 500
}

    .chip.del {
        background: #E7F4EC;
        color: var(--teal)
    }

    .chip.shp {
        background: #E8EFF7;
        color: #1B5E9E
    }

    .chip.prc {
        background: #FBF1DC;
        color: #B07A1A
    }

    .chip.can {
        background: #F0EEEC;
        color: #7A6A5E
    }

.summarybox {
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 16px
}

    .summarybox .r {
        display: flex;
        justify-content: space-between;
        font-size: 13px;
        padding: 7px 0;
        border-bottom: 1px solid var(--line2)
    }

.qlinks a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--line2);
    font-size: 13px;
    color: var(--soft)
}

    .qlinks a svg {
        color: var(--gold)
    }

.needhelp {
    background: #FBEEF0;
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    margin-top: 14px
}

    .needhelp svg {
        color: var(--maroon)
    }

/* orders + tracking */
.ordertabs {
    display: flex;
    gap: 18px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 14px;
    font-size: 12.5px;
    overflow-x: auto
}

    .ordertabs a {
        padding: 10px 2px;
        border-bottom: 2px solid transparent;
        white-space: nowrap;
        color: var(--soft)
    }

        .ordertabs a.on {
            color: var(--maroon);
            border-color: var(--maroon);
            font-weight: 500
        }

.ocard {
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 14px;
    margin-bottom: 12px;
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap
}

    .ocard .th {
        width: 60px;
        height: 60px;
        border-radius: 8px;
        background: var(--cream);
        overflow: hidden;
        flex-shrink: 0
    }

        .ocard .th svg {
            width: 100%;
            height: 100%
        }

    .ocard .oi {
        flex: 1;
        min-width: 160px;
        font-size: 13px
    }

        .ocard .oi .id {
            font-weight: 500;
            color: var(--ink)
        }

        .ocard .oi .dt {
            font-size: 11.5px;
            color: var(--muted)
        }

.track {
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 18px;
    background: #FBEEF0;
    height: fit-content
}

    .track h3 {
        color: var(--maroon);
        font-size: 16px;
        margin-bottom: 12px
    }

.tinput {
    display: flex;
    gap: 8px;
    margin-bottom: 16px
}

    .tinput input {
        flex: 1;
        border: 1px solid var(--line);
        border-radius: 8px;
        padding: 10px;
        font-family: inherit;
        font-size: 13px
    }

.tl {
    position: relative;
    padding-left: 26px
}

    .tl .step {
        position: relative;
        padding-bottom: 18px
    }

        .tl .step:before {
            content: '';
            position: absolute;
            left: -19px;
            top: 3px;
            width: 13px;
            height: 13px;
            border-radius: 50%;
            background: var(--teal)
        }

        .tl .step.pending:before {
            background: #D8CFC4
        }

        .tl .step:after {
            content: '';
            position: absolute;
            left: -13.5px;
            top: 16px;
            bottom: 0;
            width: 2px;
            background: var(--teal)
        }

        .tl .step:last-child:after {
            display: none
        }

        .tl .step.pending:after {
            background: #E5DCD0
        }

        .tl .step b {
            font-size: 13px;
            color: var(--ink)
        }

        .tl .step span {
            font-size: 11px;
            color: var(--muted);
            display: block
        }

/* about / info */
.infohead {
    text-align: center;
    padding: 6px 0 18px
}

    .infohead h1 {
        font-size: 30px;
        color: var(--maroon);
        font-weight: 700
    }

    .infohead p {
        color: var(--muted);
        font-size: 13px
    }

.abgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center
}

.abimg {
    background: var(--cream);
    border-radius: 14px;
    aspect-ratio: 1.2;
    display: flex;
    align-items: center;
    justify-content: center
}

    .abimg svg {
        width: 60%
    }

.pillrow {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 12px;
    margin-top: 16px
}

.pillc {
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 14px;
    text-align: center;
    font-size: 12px
}

    .pillc svg {
        color: var(--gold);
        margin: 0 auto 7px
    }

.statband {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 14px;
    background: var(--cream);
    border-radius: 12px;
    padding: 18px;
    margin: 24px 0;
    text-align: center
}

    .statband .v {
        font-size: 24px;
        color: var(--maroon);
        font-weight: 700
    }

    .statband .l {
        font-size: 11.5px;
        color: var(--muted)
    }

.infocards {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 14px
}

.infoc {
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 18px;
    text-align: center
}

    .infoc .ico {
        width: 46px;
        height: 46px;
        border-radius: 10px;
        background: var(--cream);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--gold);
        margin: 0 auto 10px
    }

    .infoc b {
        display: block;
        color: var(--maroon);
        font-size: 13px;
        margin-bottom: 6px
    }

    .infoc p {
        font-size: 12px;
        color: var(--soft)
    }

/* faq */
.faqlay {
    display: grid;
    grid-template-columns: 230px 1fr 280px;
    gap: 22px
}

.faqcat a {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 11px 14px;
    border: 1px solid var(--line);
    border-radius: 9px;
    margin-bottom: 8px;
    font-size: 13px;
    color: var(--soft)
}

    .faqcat a.on, .faqcat a:hover {
        background: var(--gold);
        color: #fff;
        border-color: var(--gold)
    }

.acc {
    border: 1px solid var(--line);
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden
}

    .acc .q {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 18px;
        font-size: 13.5px;
        cursor: pointer;
        gap: 12px
    }

        .acc .q .num {
            color: var(--gold);
            font-weight: 600;
            margin-right: 4px
        }

    .acc .a {
        max-height: 0;
        overflow: hidden;
        transition: .25s;
        font-size: 13px;
        color: var(--soft);
        padding: 0 18px
    }

    .acc.open .a {
        max-height: 200px;
        padding: 0 18px 16px
    }

    .acc.open .q .chev {
        transform: rotate(180deg)
    }

.helpbox {
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 18px;
    height: fit-content
}

    .helpbox h4 {
        color: var(--maroon);
        margin-bottom: 12px
    }

    .helpbox .r {
        display: flex;
        gap: 10px;
        align-items: flex-start;
        margin-bottom: 12px;
        font-size: 12.5px
    }

        .helpbox .r svg {
            color: var(--gold);
            flex-shrink: 0
        }

/* 404 */
.nf {
    text-align: center;
    padding: 50px 20px
}

    .nf .big {
        font-family: 'Playfair Display',serif;
        font-size: 90px;
        color: var(--maroon);
        font-weight: 700;
        line-height: 1
    }

    .nf h2 {
        font-size: 24px;
        color: var(--maroon);
        margin-top: 6px
    }

    .nf .acts2 {
        display: flex;
        gap: 12px;
        justify-content: center;
        margin: 20px 0
    }

/* suggestions */
.sugglay {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 24px
}

.suggform {
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 22px
}

    .suggform h3 {
        color: var(--maroon);
        font-size: 18px;
        margin-bottom: 4px
    }

.upload {
    border: 1.5px dashed var(--gold);
    border-radius: 10px;
    padding: 24px;
    text-align: center;
    color: var(--muted);
    font-size: 12.5px
}

    .upload svg {
        color: var(--gold);
        margin: 0 auto 6px
    }

.whycard {
    background: #FBEEF0;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 14px
}

    .whycard h4 {
        color: var(--maroon);
        font-size: 14px;
        margin-bottom: 10px
    }

    .whycard .r {
        display: flex;
        gap: 9px;
        font-size: 12.5px;
        margin-bottom: 8px;
        align-items: flex-start
    }

        .whycard .r svg {
            color: var(--gold);
            flex-shrink: 0
        }

/* footer */
footer {
    background: var(--maroon);
    color: #E9C9CF;
    margin-top: 10px
}

    footer .cols {
        display: grid;
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
        gap: 30px;
        padding: 42px 0 24px
    }

    footer .nm {
        font-family: 'Playfair Display',serif;
        color: #fff;
        font-size: 22px;
        font-weight: 700
    }

    footer .tg {
        color: #E0A92E;
        font-size: 11px;
        letter-spacing: .5px;
        margin-bottom: 12px
    }

    footer p {
        font-size: 12.5px;
        color: #D9B3BA;
        margin-bottom: 8px;
        line-height: 1.5
    }

    footer h5 {
        color: #fff;
        font-size: 13px;
        margin-bottom: 14px;
        letter-spacing: .5px
    }

    footer a {
        display: block;
        font-size: 12.5px;
        color: #D9B3BA;
        margin-bottom: 9px
    }

        footer a:hover {
            color: #fff
        }

    footer .soc {
        display: flex;
        gap: 10px;
        margin-top: 6px
    }

        footer .soc .ci {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: rgba(255,255,255,.12);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff
        }

.fbot {
    border-top: 1px solid rgba(255,255,255,.12);
    padding: 14px 0;
    text-align: center;
    font-size: 11.5px;
    color: #C99AA2
}

/* offer popup + modal */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(40,10,15,.55);
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px
}

    .overlay.open {
        display: flex;
        animation: fade .25s
    }

.offerc {
    background: #fff;
    border-radius: 18px;
    max-width: 380px;
    width: 100%;
    text-align: center;
    padding: 30px 26px;
    position: relative;
    border: 2px solid var(--gold)
}

    .offerc .x {
        position: absolute;
        top: 12px;
        right: 16px;
        font-size: 22px;
        color: var(--muted)
    }

    .offerc .big {
        font-family: 'Playfair Display',serif;
        font-size: 38px;
        color: var(--maroon);
        font-weight: 700
    }

    .offerc .code {
        display: inline-block;
        border: 1.5px dashed var(--gold);
        color: var(--gold-d);
        padding: 7px 16px;
        border-radius: 8px;
        font-weight: 600;
        letter-spacing: 1px;
        margin: 12px 0 18px
    }

.modal {
    background: #fff;
    border-radius: 14px;
    max-width: 880px;
    width: 100%;
    max-height: 88vh;
    overflow: auto
}

    .modal .mh {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 16px 22px;
        border-bottom: 1px solid var(--line)
    }

        .modal .mh h3 {
            color: var(--maroon)
        }

    .modal .mb {
        padding: 22px
    }

/* toast */
#toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--maroon);
    color: #fff;
    padding: 12px 22px;
    border-radius: 30px;
    font-size: 13px;
    z-index: 200;
    box-shadow: 0 8px 24px rgba(0,0,0,.25);
    opacity: 0;
    transition: .3s;
    pointer-events: none
}

/* mobile */
.scrim {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.35);
    z-index: 94;
    display: none
}

    .scrim.open {
        display: block
    }

.mob {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 280px;
    background: #fff;
    z-index: 95;
    transform: translateX(-100%);
    transition: .3s;
    overflow: auto
}

    .mob.open {
        transform: none
    }

    .mob .mh {
        background: var(--maroon);
        color: #fff;
        padding: 16px 18px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-family: 'Playfair Display',serif
    }

    .mob a {
        display: block;
        padding: 13px 18px;
        border-bottom: 1px solid var(--line);
        font-size: 13.5px
    }

@media(max-width:1000px) {
    .grid, .grid5 {
        grid-template-columns: repeat(2,1fr)
    }

    .pd, .abgrid, .cartgrid, .acctlay, .shoplay, .sugglay {
        grid-template-columns: 1fr
    }

    .faqlay {
        grid-template-columns: 1fr
    }

    .acctside, .aside, .faqcat {
        display: none
    }

    .split {
        grid-template-columns: 1fr
    }

        .split .vline {
            display: none
        }

    .searchbar, nav.main {
        display: none
    }

    .hamb {
        display: block
    }

    .acts .a .lb {
        display: none
    }

    .hero .wrap {
        flex-direction: column;
        text-align: center
    }

    .hero .jan {
        font-size: 38px
    }

    .hero .col {
        font-size: 34px
    }

    .statgrid, .pillrow, .infocards, .measure, .statband {
        grid-template-columns: repeat(2,1fr)
    }

    footer .cols {
        grid-template-columns: 1fr 1fr
    }

    .sgcard {
        grid-template-columns: 1fr
    }
}
/* ---- additions: wishlist heart, toasts, gallery, addresses, profile ---- */
.imgw {
    position: relative
}

.wish {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,.92);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,.12);
    transition: transform .15s
}

    .wish:hover {
        transform: scale(1.12)
    }

    .wish svg {
        width: 18px;
        height: 18px;
        fill: none;
        stroke: #86142A;
        stroke-width: 2
    }

    .wish.on {
        animation: pop .3s
    }

        .wish.on svg {
            fill: #E0234E;
            stroke: #E0234E
        }

@keyframes pop {
    0% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.35)
    }

    100% {
        transform: scale(1)
    }
}

.toasts {
    position: fixed;
    left: 50%;
    bottom: 26px;
    transform: translateX(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center
}

.toast {
    background: #86142A;
    color: #fff;
    padding: 11px 20px;
    border-radius: 30px;
    font-size: 13.5px;
    box-shadow: 0 6px 18px rgba(0,0,0,.18);
    opacity: 0;
    transform: translateY(12px);
    transition: .3s
}

    .toast.show {
        opacity: 1;
        transform: translateY(0)
    }

.pgal {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    flex-wrap: wrap
}

.pthumb {
    width: 62px;
    height: 62px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid var(--line);
    cursor: pointer;
    padding: 0;
    background: none
}

    .pthumb.on {
        border-color: var(--gold)
    }

    .pthumb img {
        width: 100%;
        height: 100%;
        object-fit: cover
    }

.addrcard {
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 14px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    background: #fff
}

    .addrcard.def {
        border-color: var(--gold);
        background: #FBF1DC
    }

.pfp {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold2);
    background: #FBF1DC
}

.otpbox {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap
}

/* ---- Janmashtami slider: background image + HTML text/button overlay ---- */
.hbanner {
    position: relative;
    overflow: hidden;
}

.hb-view {
    overflow: hidden
}

.hb-track {
    display: flex;
    transition: transform .5s ease;
    will-change: transform
}

.hb-slide {
    position: relative;
    flex: 0 0 100%;
    aspect-ratio: 1600/400;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat
}

.hb-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 8%;
    width: 42%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    line-height: 1.05
}

.hb-h1 {
    font-family: 'Playfair Display',serif;
    font-style: italic;
    font-weight: 700;
    color: var(--maroon);
    font-size: clamp(20px,4vw,52px)
}

.hb-h2 {
    font-family: 'Great Vibes',cursive;
    color: var(--gold);
    font-size: clamp(28px,5.4vw,66px);
    line-height: .9;
    margin-top: -2px
}

.hb-desc {
    color: #4a3a2c;
    font-weight: 500;
    font-size: clamp(10px,1.55vw,16px);
    margin: clamp(6px,1.2vw,14px) 0;
    line-height: 1.4
}

.hb-btn {
    background: var(--gold);
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    letter-spacing: .5px;
    font-size: clamp(9px,1.2vw,13px);
    padding: clamp(6px,.9vw,11px) clamp(14px,1.8vw,26px)
}

    .hb-btn:hover {
        background: var(--maroon)
    }

.hb-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,.82);
    color: var(--maroon);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,.15)
}

    .hb-nav:hover {
        background: #fff
    }

    .hb-nav.prev {
        left: 14px
    }

    .hb-nav.next {
        right: 14px
    }

.hb-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 7px;
    z-index: 2
}

    .hb-dots i {
        width: 9px;
        height: 9px;
        border-radius: 50%;
        background: rgba(134,20,42,.35);
        cursor: pointer
    }

        .hb-dots i.on {
            background: var(--maroon)
        }

@media(max-width:640px) {
    .hb-slide {
        aspect-ratio: 16/9;
        background-position: center right
    }

    .hb-overlay {
        left: 5%;
        width: 58%
    }

    .hb-nav {
        width: 32px;
        height: 32px;
        font-size: 19px
    }
}