* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --ink: #0A0A0F;
    --parchment: #FDF6EC;
    --saffron: #E8622A;
    --turmeric: #F5A623;
    --gold: #C9943A;
    --jade: #1B4D3E;
    --cream: #FAF0DC;
    --muted: #7A7065;
    --border: #EDE5D8;
    --card: #FFFAF4;
    --rose: #C45C7A;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--parchment);
    color: var(--ink);
    overflow-x: hidden;
    cursor: none;
}

/* CURSOR */
#cur {
    position: fixed;
    width: 10px;
    height: 10px;
    background: var(--saffron);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: width .2s, height .2s, background .2s;
}

#cur2 {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1.5px solid var(--saffron);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: all .12s ease;
    opacity: .6;
}

/* LOADER */
#ldr {
    position: fixed;
    inset: 0;
    background: var(--ink);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1.5rem;
    transition: opacity .8s, visibility .8s;
}

#ldr.out {
    opacity: 0;
    visibility: hidden;
}

.ldr-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--turmeric);
    letter-spacing: 12px;
}

.ldr-sub {
    font-size: .7rem;
    color: rgba(255, 255, 255, .3);
    letter-spacing: 5px;
    text-transform: uppercase;
}

.ldr-bar {
    width: 180px;
    height: 1px;
    background: rgba(255, 255, 255, .1);
    overflow: hidden;
}

.ldr-fill {
    height: 100%;
    background: var(--saffron);
    animation: lf 2.2s ease forwards;
}

@keyframes lf {
    0% {
        width: 0
    }

    100% {
        width: 100%
    }
}

/* HEADER */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 72px;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(253, 246, 236, .93);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
    transition: all .3s;
}

header.scrolled {
    height: 60px;
    box-shadow: 0 2px 30px rgba(0, 0, 0, .05);
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--ink);
    text-decoration: none;
    letter-spacing: 4px;
}

.logo em {
    color: var(--saffron);
    font-style: normal;
}

nav {
    display: flex;
    gap: 2.2rem;
}

nav a {
    font-size: .78rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    transition: color .25s;
    padding-bottom: 2px;
    border-bottom: 1.5px solid transparent;
}

nav a:hover {
    color: var(--ink);
    border-color: var(--saffron);
}

.h-actions {
    display: flex;
    gap: .6rem;
    align-items: center;
}

.hbtn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: .95rem;
    transition: all .25s;
    position: relative;
}

.hbtn:hover {
    background: var(--saffron);
    border-color: var(--saffron);
    color: #fff;
}

.cbadge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--saffron);
    color: #fff;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    font-size: .58rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menubtn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.3rem;
}

/* HERO */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 55% 45%;
    padding-top: 72px;
}

.hero-l {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5% 4% 5% 7%;
    position: relative;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.hero-eyebrow span {
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--saffron);
}

.eyebrow-line {
    width: 40px;
    height: 1px;
    background: var(--saffron);
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5.2rem;
    font-weight: 700;
    line-height: 1.0;
    color: var(--ink);
    margin-bottom: 1.2rem;
}

.hero h1 i {
    font-style: italic;
    color: var(--saffron);
}

.hero h1 .jade {
    color: var(--jade);
}

.hero-desc {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.8;
    max-width: 400px;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.cta-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-fill {
    background: var(--ink);
    color: #fff;
    padding: 13px 30px;
    border-radius: 3px;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all .3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Outfit', sans-serif;
}

.btn-fill:hover {
    background: var(--saffron);
    transform: translateY(-2px);
    box-shadow: 0 10px 35px rgba(232, 98, 42, .3);
}

.btn-ghost {
    background: none;
    color: var(--ink);
    padding: 13px 30px;
    border-radius: 3px;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 1.5px solid var(--ink);
    cursor: pointer;
    transition: all .3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Outfit', sans-serif;
}

.btn-ghost:hover {
    background: var(--ink);
    color: #fff;
}

.hero-nums {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.num-item .n {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--saffron);
    display: block;
    line-height: 1;
}

.num-item .l {
    font-size: .65rem;
    color: var(--muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 2px;
}

.hero-r {
    position: relative;
    overflow: hidden;
}

.hero-r-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #F5E6D0 0%, #EDD5B5 50%, #E0C090 100%);
}

.hero-r-pattern {
    position: absolute;
    inset: 0;
    opacity: .06;
    background-image: radial-gradient(circle, var(--saffron) 1px, transparent 1px);
    background-size: 24px 24px;
}

.hero-main-img {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    height: 92%;
    object-fit: cover;
    object-position: top;
    border-radius: 160px 160px 0 0;
}

.hero-pill {
    position: absolute;
    background: #fff;
    border-radius: 14px;
    padding: 10px 14px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .12);
}

.hp1 {
    top: 12%;
    left: 4%;
    animation: fp 3s ease-in-out infinite;
}

.hp2 {
    bottom: 22%;
    right: 3%;
    animation: fp 3.5s ease-in-out infinite .5s;
}

.hp3 {
    top: 50%;
    left: 2%;
    animation: fp 2.8s ease-in-out infinite .8s;
}

@keyframes fp {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-8px)
    }
}

.pill-icon {
    font-size: 1.4rem;
    margin-bottom: 3px;
    text-align: center;
}

.pill-big {
    font-size: .9rem;
    font-weight: 700;
    color: var(--ink);
    text-align: center;
    line-height: 1;
}

.pill-sm {
    font-size: .62rem;
    color: var(--muted);
    text-align: center;
    margin-top: 2px;
}

/* TICKER */
.ticker {
    background: var(--ink);
    color: var(--turmeric);
    padding: 12px 0;
    overflow: hidden;
    white-space: nowrap;
}

.ticker-inner {
    display: inline-block;
    animation: tick 30s linear infinite;
}

.ticker-inner span {
    font-size: .7rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 400;
    padding: 0 2.5rem;
}

.ticker-inner span::before {
    content: "✦ ";
}

@keyframes tick {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

/* SECTION COMMON */
.sec {
    padding: 5.5rem 7%;
}

.sec-hd {
    margin-bottom: 3.5rem;
}

.sec-eye {
    font-size: .65rem;
    font-weight: 600;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--saffron);
    margin-bottom: .7rem;
}

.sec-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.15;
    margin-bottom: .8rem;
}

.sec-sub {
    font-size: .95rem;
    color: var(--muted);
    max-width: 480px;
    line-height: 1.75;
    font-weight: 300;
}

/* CATEGORIES — scrollable mega grid */
.cat-sec {
    background: var(--cream);
}

.cat-hd {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2.5rem;
}

.cat-main-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.2rem;
}

.cat-card {
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    height: 240px;
    transition: transform .35s;
}

.cat-card:hover {
    transform: translateY(-6px);
}

.cat-card:hover .cc-overlay {
    opacity: 1;
}

.cat-card:hover img {
    transform: scale(1.06);
}

.cat-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
    display: block;
}

.cc-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 15, .55);
    opacity: 0;
    transition: opacity .35s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cc-go {
    background: var(--saffron);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cat-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem 1.2rem;
    background: linear-gradient(transparent, rgba(10, 10, 15, .85));
}

.cat-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
}

.cat-num {
    font-size: .62rem;
    color: rgba(255, 255, 255, .65);
    letter-spacing: 1px;
}

/* SUB CATEGORIES PANEL */
.subcat-panel {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    margin-top: 1.5rem;
    display: none;
}

.subcat-panel.on {
    display: block;
    animation: fadeIn .3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(8px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.subcat-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.subcat-title span {
    font-size: .7rem;
    font-weight: 500;
    color: var(--muted);
    font-family: 'Outfit', sans-serif;
    letter-spacing: 1px;
}

.subcat-chips {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}

.subchip {
    padding: 7px 16px;
    background: var(--parchment);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: .75rem;
    font-weight: 500;
    color: var(--muted);
    cursor: pointer;
    transition: all .2s;
}

.subchip:hover,
.subchip.on {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
}

/* PRODUCTS */
.prod-sec {
    background: var(--parchment);
}

.prod-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.ftabs {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
}

.ftab {
    padding: 7px 18px;
    border-radius: 100px;
    border: 1px solid var(--border);
    font-size: .75rem;
    font-weight: 500;
    letter-spacing: .5px;
    background: none;
    cursor: pointer;
    transition: all .25s;
    font-family: 'Outfit', sans-serif;
    color: var(--muted);
}

.ftab:hover,
.ftab.on {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
}

.pgrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.8rem;
}

/* PRODUCT CARD */
.pcard {
    background: var(--card);
    border-radius: 14px;
    overflow: hidden;
    transition: transform .35s, box-shadow .35s;
    cursor: pointer;
    border: 1px solid var(--border);
}

.pcard:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 55px rgba(0, 0, 0, .1);
}

.pcard:hover .pactions {
    opacity: 1;
    transform: translateY(0);
}

.pcard:hover .pimg img {
    transform: scale(1.06);
}

.pimg {
    height: 270px;
    overflow: hidden;
    position: relative;
}

.pimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
    display: block;
}

.ptag {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 100px;
}

.ptag.sale {
    background: var(--saffron);
    color: #fff;
}

.ptag.new {
    background: var(--jade);
    color: #fff;
}

.ptag.best {
    background: var(--gold);
    color: var(--ink);
}

.pwish {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    background: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: .9rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .1);
    transition: all .25s;
    color: #ccc;
}

.pwish:hover,
.pwish.on {
    color: var(--rose);
    transform: scale(1.12);
}

.pactions {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: .9rem;
    opacity: 0;
    transform: translateY(6px);
    transition: all .3s;
    background: linear-gradient(transparent, rgba(0, 0, 0, .65));
}

.qadd {
    width: 100%;
    background: #fff;
    color: var(--ink);
    border: none;
    padding: 9px;
    border-radius: 8px;
    font-size: .75rem;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: .5px;
    transition: all .25s;
    font-family: 'Outfit', sans-serif;
}

.qadd:hover {
    background: var(--saffron);
    color: #fff;
}

.pinfo {
    padding: 1rem 1.1rem 1.3rem;
}

.pbrand {
    font-size: .62rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--saffron);
    margin-bottom: 3px;
}

.pname {
    font-size: .9rem;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 6px;
    line-height: 1.35;
}

.prating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 8px;
}

.stars {
    color: var(--turmeric);
    font-size: .7rem;
}

.rnum {
    font-size: .72rem;
    font-weight: 600;
    color: var(--ink);
}

.rcnt {
    font-size: .68rem;
    color: #bbb;
}

.cdots {
    display: flex;
    gap: 4px;
    margin-bottom: 10px;
}

.cdot {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color .2s;
}

.cdot.on,
.cdot:hover {
    border-color: var(--ink);
}

.pprices {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pcur {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ink);
}

.porig {
    font-size: .78rem;
    text-decoration: line-through;
    color: #c0b8b0;
    margin-left: 6px;
}

.pdisc {
    background: rgba(232, 98, 42, .1);
    color: var(--saffron);
    font-size: .68rem;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 100px;
}

/* BIG BANNER */
.big-banner {
    background: var(--ink);
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    min-height: 500px;
}

.bb-l {
    padding: 5rem 7%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bb-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, .15);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 1.5rem;
    width: fit-content;
}

.bb-tag span {
    font-size: .65rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .5);
}

.bb-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.bb-title em {
    color: var(--turmeric);
    font-style: italic;
}

.bb-desc {
    font-size: .93rem;
    color: rgba(255, 255, 255, .5);
    line-height: 1.75;
    margin-bottom: 2rem;
    font-weight: 300;
}

.bb-cards {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.bbc {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 12px;
    padding: 1.2rem 1.4rem;
    flex: 1;
    min-width: 130px;
    transition: all .3s;
}

.bbc:hover {
    background: rgba(232, 98, 42, .15);
    border-color: var(--saffron);
}

.bbc-pct {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--saffron);
    line-height: 1;
}

.bbc-l {
    font-size: .72rem;
    color: rgba(255, 255, 255, .5);
    margin-top: 4px;
    line-height: 1.4;
}

.bb-r {
    position: relative;
    overflow: hidden;
}

.bb-r img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .7;
}

/* FEATURES */
.feat-sec {
    background: var(--cream);
}

.feat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.feat-item {
    background: #fff;
    border-radius: 14px;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid var(--border);
    transition: all .3s;
}

.feat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 45px rgba(0, 0, 0, .07);
}

.ficon {
    width: 56px;
    height: 56px;
    background: rgba(232, 98, 42, .08);
    border-radius: 50%;
    margin: 0 auto 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.ftitle {
    font-weight: 600;
    font-size: .9rem;
    margin-bottom: 5px;
    color: var(--ink);
}

.fdesc {
    font-size: .78rem;
    color: var(--muted);
    line-height: 1.6;
}

/* TESTIMONIALS */
.test-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
    margin-top: 3rem;
}

.tcard {
    background: #fff;
    border-radius: 16px;
    padding: 1.8rem;
    border: 1px solid var(--border);
    transition: all .3s;
}

.tcard:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, .07);
}

.qmark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    color: var(--saffron);
    opacity: .25;
    line-height: .8;
    margin-bottom: .5rem;
}

.ttext {
    font-size: .87rem;
    color: #555;
    line-height: 1.75;
    margin-bottom: 1.3rem;
    font-weight: 300;
}

.tuser {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tavatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .85rem;
    color: var(--jade);
    border: 2px solid var(--border);
}

.tuname {
    font-size: .87rem;
    font-weight: 600;
    color: var(--ink);
}

.tuloc {
    font-size: .7rem;
    color: var(--muted);
}

/* NEWSLETTER */
.news {
    background: linear-gradient(135deg, var(--saffron) 0%, #C04A18 100%);
    padding: 4.5rem 7%;
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.news-t {
    flex: 1;
    min-width: 250px;
}

.news-t h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: .5rem;
}

.news-t p {
    font-size: .9rem;
    color: rgba(255, 255, 255, .75);
}

.news-f {
    flex: 1;
    display: flex;
    max-width: 430px;
    min-width: 280px;
}

.news-inp {
    flex: 1;
    padding: 13px 18px;
    border: none;
    background: rgba(255, 255, 255, .15);
    color: #fff;
    font-size: .87rem;
    border-radius: 6px 0 0 6px;
    outline: none;
    font-family: 'Outfit', sans-serif;
}

.news-inp::placeholder {
    color: rgba(255, 255, 255, .5);
}

.news-btn {
    background: #fff;
    color: var(--saffron);
    border: none;
    padding: 13px 20px;
    border-radius: 0 6px 6px 0;
    font-size: .8rem;
    font-weight: 700;
    cursor: pointer;
    transition: all .25s;
    font-family: 'Outfit', sans-serif;
    letter-spacing: .5px;
    white-space: nowrap;
}

.news-btn:hover {
    background: var(--ink);
    color: #fff;
}

/* FOOTER */
footer {
    background: var(--ink);
    padding: 4.5rem 7% 2rem;
}

.fgrid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3.5rem;
    margin-bottom: 3rem;
}

.flogo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 4px;
    text-decoration: none;
}

.flogo em {
    color: var(--saffron);
    font-style: normal;
}

.fabout {
    font-size: .82rem;
    color: rgba(255, 255, 255, .4);
    line-height: 1.8;
    margin: 1rem 0;
    max-width: 240px;
}

.fsoc {
    display: flex;
    gap: .6rem;
}

.fsocbtn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .4);
    text-decoration: none;
    font-size: .8rem;
    transition: all .25s;
}

.fsocbtn:hover {
    background: var(--saffron);
    border-color: var(--saffron);
    color: #fff;
}

.fcol h4 {
    font-size: .68rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .6);
    margin-bottom: 1.2rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}

.fcol a {
    display: block;
    color: rgba(255, 255, 255, .35);
    text-decoration: none;
    font-size: .82rem;
    margin-bottom: .55rem;
    transition: color .2s;
}

.fcol a:hover {
    color: var(--turmeric);
}

.fbot {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, .06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .75rem;
    color: rgba(255, 255, 255, .25);
}

.fbot span {
    color: var(--turmeric);
}

/* CART SIDEBAR */
.cart-bg {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
}

.cart-bg.on {
    opacity: 1;
    visibility: visible;
}

.csidebar {
    position: fixed;
    top: 0;
    right: -500px;
    width: 480px;
    height: 100vh;
    background: #fff;
    z-index: 2001;
    transition: right .4s cubic-bezier(.25, .46, .45, .94);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.csidebar.on {
    right: 0;
}

.cshead {
    padding: 1.3rem 1.8rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cshead h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 700;
}

.cscnt {
    font-size: .78rem;
    color: var(--muted);
    margin-left: 6px;
}

.csbtn {
    width: 34px;
    height: 34px;
    border: none;
    background: rgba(0, 0, 0, .05);
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}

.csbtn:hover {
    background: rgba(232, 98, 42, .1);
}

.csitems {
    flex: 1;
    overflow-y: auto;
    padding: 1.3rem 1.8rem;
}

.csempty {
    text-align: center;
    padding: 3rem 1rem;
    color: #ccc;
}

.csempty .emj {
    font-size: 3rem;
    margin-bottom: .8rem;
}

.csitem {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.3rem;
    padding-bottom: 1.3rem;
    border-bottom: 1px solid var(--border);
}

.csitem-img {
    width: 80px;
    height: 90px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--cream);
}

.csitem-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.csitem-d {
    flex: 1;
}

.csitem-n {
    font-size: .87rem;
    font-weight: 500;
    margin-bottom: 3px;
}

.csitem-v {
    font-size: .72rem;
    color: var(--muted);
    margin-bottom: 6px;
}

.csitem-p {
    font-size: .97rem;
    font-weight: 700;
    color: var(--ink);
}

.qctrl {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 6px;
}

.qbtn {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: none;
    cursor: pointer;
    font-size: .85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
}

.qbtn:hover {
    background: var(--saffron);
    color: #fff;
    border-color: var(--saffron);
}

.qn {
    font-size: .85rem;
    font-weight: 600;
    min-width: 18px;
    text-align: center;
}

.csfooter {
    padding: 1.3rem 1.8rem;
    border-top: 1px solid var(--border);
    background: var(--parchment);
}

.cstotal {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.cstl {
    font-size: .82rem;
    color: var(--muted);
}

.cstamt {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ink);
}

.chkbtn {
    width: 100%;
    background: var(--ink);
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .3s;
    font-family: 'Outfit', sans-serif;
}

.chkbtn:hover {
    background: var(--saffron);
}

/* WISHLIST MODAL */
.wl-modal {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
}

.wl-modal.on {
    opacity: 1;
    visibility: visible;
}

.wl-bg {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .5);
}

.wl-box {
    position: relative;
    background: #fff;
    border-radius: 20px;
    width: 90%;
    max-width: 700px;
    max-height: 80vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.wl-head {
    padding: 1.3rem 2rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wl-head h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 700;
}

.wl-body {
    overflow-y: auto;
    padding: 1.5rem 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.wl-item {
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.wl-item img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    display: block;
}

.wl-info {
    padding: .7rem;
}

.wl-iname {
    font-size: .8rem;
    font-weight: 500;
    margin-bottom: 3px;
}

.wl-iprice {
    font-size: .85rem;
    font-weight: 700;
    color: var(--saffron);
}

.wl-rm {
    font-size: .65rem;
    color: #ccc;
    cursor: pointer;
    margin-top: 4px;
}

.wl-rm:hover {
    color: var(--rose);
}

.wl-empty {
    padding: 3rem;
    text-align: center;
    color: #bbb;
    font-size: .9rem;
    grid-column: span 3;
}

/* SEARCH OVERLAY */
.srch-ov {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 15, .96);
    z-index: 4000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 18vh;
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
}

.srch-ov.on {
    opacity: 1;
    visibility: visible;
}

.srch-label {
    font-size: .68rem;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, .3);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.srch-row {
    display: flex;
    align-items: center;
    border-bottom: 1.5px solid rgba(255, 255, 255, .2);
    padding-bottom: .7rem;
    width: 680px;
    max-width: 90vw;
}

.srch-inp {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    color: #fff;
    font-weight: 400;
}

.srch-inp::placeholder {
    color: rgba(255, 255, 255, .2);
}

.srch-x {
    background: none;
    border: none;
    color: rgba(255, 255, 255, .4);
    font-size: 1.4rem;
    cursor: pointer;
    padding: 0 .5rem;
    transition: color .2s;
}

.srch-x:hover {
    color: #fff;
}

.srch-tags {
    display: flex;
    gap: .7rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.stag {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .5);
    padding: 7px 18px;
    border-radius: 100px;
    font-size: .75rem;
    cursor: pointer;
    transition: all .2s;
}

.stag:hover {
    background: var(--saffron);
    color: #fff;
    border-color: var(--saffron);
}

.srch-results {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 720px;
}

.sr-card {
    background: rgba(255, 255, 255, .07);
    border-radius: 12px;
    overflow: hidden;
    width: 140px;
    cursor: pointer;
    transition: all .2s;
    border: 1px solid rgba(255, 255, 255, .08);
}

.sr-card:hover {
    background: rgba(255, 255, 255, .12);
    border-color: var(--saffron);
}

.sr-card img {
    width: 100%;
    height: 90px;
    object-fit: cover;
    display: block;
}

.sr-info {
    padding: .5rem .6rem;
}

.sr-n {
    font-size: .72rem;
    color: rgba(255, 255, 255, .75);
    font-weight: 500;
}

.sr-p {
    font-size: .68rem;
    color: var(--turmeric);
    font-weight: 600;
}

/* CHECKOUT MODAL */
.ck-modal {
    position: fixed;
    inset: 0;
    z-index: 5000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
}

.ck-modal.on {
    opacity: 1;
    visibility: visible;
}

.ck-bg {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .6);
}

.ck-box {
    position: relative;
    background: #fff;
    border-radius: 20px;
    width: 90%;
    max-width: 900px;
    max-height: 88vh;
    overflow: auto;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.ck-left {
    padding: 2.5rem;
    border-right: 1px solid var(--border);
}

.ck-right {
    padding: 2.5rem;
    background: var(--parchment);
}

.ck-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

label.flbl {
    display: block;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: .4rem;
    margin-top: 1.1rem;
}

input.finp,
select.finp {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: .87rem;
    font-family: 'Outfit', sans-serif;
    outline: none;
    background: #fff;
    color: var(--ink);
    transition: border-color .2s;
}

input.finp:focus,
select.finp:focus {
    border-color: var(--saffron);
}

.frow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.ck-submit {
    width: 100%;
    background: var(--ink);
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 10px;
    font-size: .83rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .3s;
    margin-top: 1.5rem;
    font-family: 'Outfit', sans-serif;
}

.ck-submit:hover {
    background: var(--saffron);
}

.ck-order-item {
    display: flex;
    gap: 10px;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
    align-items: center;
}

.ck-oimg {
    width: 56px;
    height: 64px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.ck-oimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ck-on {
    font-size: .85rem;
    font-weight: 500;
    margin-bottom: 2px;
}

.ck-op {
    font-size: .82rem;
    font-weight: 700;
    color: var(--ink);
}

.ck-ov {
    font-size: .7rem;
    color: var(--muted);
}

.ck-summary {
    margin-top: 1.5rem;
}

.ck-srow {
    display: flex;
    justify-content: space-between;
    font-size: .83rem;
    color: var(--muted);
    margin-bottom: .5rem;
}

.ck-total {
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink);
    padding-top: .8rem;
    border-top: 1px solid var(--border);
    margin-top: .5rem;
}

.pay-opts {
    display: flex;
    gap: .7rem;
    flex-wrap: wrap;
    margin-top: .8rem;
}

.popt {
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: .7rem 1rem;
    font-size: .75rem;
    font-weight: 500;
    cursor: pointer;
    transition: all .2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.popt:hover,
.popt.on {
    border-color: var(--saffron);
    background: rgba(232, 98, 42, .05);
}

.success-screen {
    display: none;
    text-align: center;
    padding: 3rem 2rem;
}

.success-screen.on {
    display: block;
}

.success-check {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.success-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--jade);
    margin-bottom: .7rem;
}

.success-sub {
    font-size: .9rem;
    color: var(--muted);
    line-height: 1.7;
}

/* TOAST */
.toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(80px);
    background: var(--ink);
    color: #fff;
    padding: 11px 22px;
    border-radius: 100px;
    font-size: .8rem;
    font-weight: 500;
    z-index: 9000;
    transition: transform .4s;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .2);
}

.toast.on {
    transform: translateX(-50%) translateY(0);
}

/* BACK TOP */
#btop {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    background: var(--ink);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(15px);
    transition: all .3s;
    z-index: 100;
}

#btop.on {
    opacity: 1;
    transform: translateY(0);
}

#btop:hover {
    background: var(--saffron);
}

/* REVEAL */
.rv {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s, transform .7s;
}

.rv.vis {
    opacity: 1;
    transform: translateY(0);
}

/* MOBILE NAV */
.mnav {
    position: fixed;
    inset: 0;
    background: var(--ink);
    z-index: 6000;
    transform: translateX(100%);
    transition: transform .4s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.mnav.on {
    transform: translateX(0);
}

.mnav a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .7);
    text-decoration: none;
    transition: color .2s;
}

.mnav a:hover {
    color: var(--saffron);
}

.mnav-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

@media(max-width:1200px) {
    .cat-main-grid {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media(max-width:1100px) {
    .pgrid {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media(max-width:900px) {

    nav,
    .h-actions .hbtn:not(:last-child) {
        display: none;
    }

    .menubtn {
        display: flex;
    }

    .hero {
        grid-template-columns: 1fr;
    }

    .hero-r {
        display: none;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .pgrid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cat-main-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feat-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .test-grid {
        grid-template-columns: 1fr;
    }

    .fgrid {
        grid-template-columns: 1fr 1fr;
    }

    .big-banner {
        grid-template-columns: 1fr;
    }

    .bb-r {
        display: none;
    }

    .ck-box {
        grid-template-columns: 1fr;
    }

    .ck-right {
        display: none;
    }

    .sec,
    .big-banner .bb-l,
    .news {
        padding: 4rem 5%;
    }
}

@media(max-width:600px) {
    .pgrid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fgrid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .csidebar {
        width: 100%;
    }
}

footer {
    text-align: center;
}