﻿@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@100..900&family=Playwrite+NZ+Basic:wght@100..400&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scrollbar-gutter: stable;
}

:root {
    --header-offset-desktop: 84px;
    --header-offset-tablet: 72px;
    --header-offset-mobile: 62px;
}

body {
    font-family: 'League spartan', sans-serif;
    background: linear-gradient(90deg, rgba(247,198,217,0.55), rgba(199,154,74,0.04));
    background-size: cover;
    background-position: center;
}

.reveal-on-scroll {
    --reveal-delay: 0ms;
    opacity: 0;
    transform: translate3d(0, 30px, 0) scale(0.985);
    filter: blur(2px);
    transition:
        opacity .64s ease,
        transform .74s cubic-bezier(0.22, 1, 0.36, 1),
        filter .62s ease;
    transition-delay: var(--reveal-delay);
    will-change: opacity, transform, filter;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal-on-scroll {
        opacity: 1;
        transform: none;
        transition: none;
    }
}


h1 {
    font-size: 50px;
    line-height: 64px;
    color: #222;
}

h2 {
    font-size: 46px;
    line-height: 54px;
    color: #222;
}

h4 {
    font-size: 20px;
    color: #222;
}

h6 {
    font-weight: 700;
    font-size: 12px;
}

p {
    font-size: 16px;
    color: #465b52;
    margin: 15px 0 20px 0;
}

.section-p1 {
    padding: 40px 80px;
}

.section-m1 {
    margin: 40px 0;
}

button.normal{
    font-size: 14px;
    font-weight: 700;
    padding: 12px 28px;
    color: #fff;
    background: #c79a4a;
    border-radius: 8px;
    cursor: pointer;
    border: 1px solid rgba(199,154,74,0.9);
    box-shadow: 0 6px 18px rgba(199,154,74,0.12);
    transition: transform .12s ease, box-shadow .12s ease;
}
/* Make anchors with class 'normal' look like the primary CTA used elsewhere */
a.normal{
    background: #c79a4a;
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    font-weight: 700;
}
a.normal:hover{ transform: translateY(-2px); opacity: 0.98; }
button.normal:hover{ transform: translateY(-2px); box-shadow: 0 10px 24px rgba(199,154,74,0.18); }

/* Hero: use image for the primary CTA so it matches the theme */
#hero a.normal{ display: inline-block; border-radius: 12px; overflow: hidden; text-decoration: none; color: inherit; vertical-align: middle; }
#hero a.normal:visited{ color: inherit; }

/* Use the themed button image as the hero CTA background so there's no broken-image icon */
#hero a.normal.hero-image{
    background-image: url('img/button.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-color: transparent;
    height: 56px;
    min-width: 160px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    -webkit-text-fill-color: #fff;
    text-shadow: 0 1px 0 rgba(0,0,0,0.12);
    font-size: 16px; /* show readable text over the image */
    line-height: 1;
    font-weight: 700;
    color: #fff;
}

/* Fallback text CTA when background image cannot be shown */
#hero a.normal.hero-fallback{ display: inline-block; background: #c79a4a; color: #fff; padding: 12px 28px; border-radius: 12px; text-decoration: none; font-size:16px; line-height:1.2; }

button.white{
    font-size: 13px;
    font-weight: 600;
    padding: 11px 80px;
    color: #fff;
    background: #c79a4a;
    cursor: pointer;
    border: none;
    outline: none;
    transition: 0.2s;
}

body {
    width: 100%;
}

#header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 80px;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 999;
    
    background-color: transparent !important;
    box-shadow: none !important;
}

/* gradient overlay */
#header::before{
    content: none !important;
    position: absolute;
    inset: 0;
    background: transparent !important;
    z-index: -1;
}


#navbar{
    display: flex;
    align-items: center;
    justify-content: center;
}

#navbar li{
    list-style: none;
    padding: 0 20px;
    position: relative;
}

#navbar li a{
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    transition: 0.3s ease;
}

#navbar li a:hover,
#navbar li a.active{
    color: #c79a4a;
}

/* base underline (hidden) with transition so all underlines animate smoothly */
#navbar li a::after{
    content: "";
    position: absolute;
    bottom: -4px;
    left: 8px;                /* align underline to the left edge of the link */
    width: 0;                 /* start collapsed */
    height: 2px;
    background: #c79a4a;
    transition: width 260ms cubic-bezier(0.4,0,0.2,1), opacity 200ms;
    will-change: width;
    transform-origin: left;
}

#navbar li a.active::after,
#navbar li a:hover::after{
    width: 36%;              /* expanded state (grows from left) */
}

/* Small underline for wishlist nav item (same treatment as cart) */
#navbar li#nav-wishlist a::after {
    width: 0;
    height: 2px;
    left: 0;                  /* align to left edge */
    transform: none;
    bottom: -4px;
    background: #c79a4a;
}
#navbar li#nav-wishlist a:hover::after,
#navbar li#nav-wishlist a.active::after {
    width: 50%;
}

/* Cart icon underline â€” left half only (show only on hover/active) */
#navbar li#lg-bag a::after {
    /* keep collapsed by default (base rule already sets width:0) */
    width: 0;
    height: 2px;
    left: 0;                  /* align to left edge */
    transform: none;
    bottom: -4px;            /* keep same vertical alignment */
    background: #c79a4a;
}
#navbar li#lg-bag a:hover::after,
#navbar li#lg-bag a.active::after {
    width: 50%;               /* expand to left half only when hovered/active */
}

#mobile{
    display: none;
    align-items: center;
}

#close{
    display: none;
}

#hero{
    min-height: 130vh;
    width: 100%;
    margin-top: -84px;
    padding: 194px 80px 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-top: 0;
}

#header + section:not(#hero) {
    margin-top: calc(-1 * var(--header-offset-desktop));
    padding-top: calc(var(--header-offset-desktop) + 14px);
    border-top: 0;
}

#hero .hero-parallax{
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

#hero .hero-orb{
    position: absolute;
    border-radius: 999px;
    filter: blur(0.8px) saturate(1.08) contrast(1.02);
    pointer-events: none;
    z-index: 0;
    opacity: 0.88;
    scale: 1.3;
    mix-blend-mode: multiply;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.14),
        inset 0 -16px 28px rgba(255, 255, 255, 0.08),
        0 8px 20px rgba(61, 35, 8, 0.1);
}

#hero .hero-orb-a{
    width: clamp(220px, 28vw, 380px);
    height: clamp(220px, 28vw, 380px);
    top: 6%;
    left: -6%;
    background: radial-gradient(circle at 30% 30%, rgba(247,198,217,0.85), rgba(247,198,217,0.2) 58%, transparent 72%);
}

#hero .hero-orb-b{
    width: clamp(180px, 24vw, 320px);
    height: clamp(180px, 24vw, 320px);
    right: 4%;
    bottom: 8%;
    background: radial-gradient(circle at 30% 30%, rgba(226,191,117,0.76), rgba(226,191,117,0.18) 56%, transparent 74%);
}

#hero .hero-orb-c{
    width: clamp(120px, 18vw, 220px);
    height: clamp(120px, 18vw, 220px);
    left: 22%;
    bottom: 14%;
    background: radial-gradient(circle at 30% 30%, rgba(252, 216, 231, 0.9), rgba(252, 216, 231, 0.2) 58%, transparent 74%);
}

#hero .hero-orb-d{
    width: clamp(90px, 12vw, 170px);
    height: clamp(90px, 12vw, 170px);
    right: 20%;
    top: 14%;
    background: radial-gradient(circle at 35% 35%, rgba(239, 213, 151, 0.9), rgba(239, 213, 151, 0.2) 60%, transparent 76%);
}

#hero .hero-orb-e{
    width: clamp(80px, 10vw, 140px);
    height: clamp(80px, 10vw, 140px);
    left: 42%;
    top: 9%;
    background: radial-gradient(circle at 28% 30%, rgba(255, 233, 241, 0.92), rgba(255, 233, 241, 0.22) 56%, transparent 74%);
}

#hero .hero-orb-f{
    width: clamp(140px, 16vw, 240px);
    height: clamp(140px, 16vw, 240px);
    right: 32%;
    bottom: 10%;
    background: radial-gradient(circle at 34% 34%, rgba(255, 210, 226, 0.88), rgba(255, 210, 226, 0.2) 56%, transparent 74%);
}

#hero .hero-orb-g{
    width: clamp(100px, 13vw, 180px);
    height: clamp(100px, 13vw, 180px);
    left: 12%;
    top: 26%;
    background: radial-gradient(circle at 36% 30%, rgba(241, 216, 162, 0.88), rgba(241, 216, 162, 0.22) 58%, transparent 75%);
}

#hero .hero-orb-h{
    width: clamp(70px, 9vw, 130px);
    height: clamp(70px, 9vw, 130px);
    right: 10%;
    top: 34%;
    background: radial-gradient(circle at 35% 35%, rgba(255, 236, 244, 0.92), rgba(255, 236, 244, 0.22) 58%, transparent 76%);
}

#hero .hero-orb-i{
    width: clamp(88px, 11vw, 160px);
    height: clamp(88px, 11vw, 160px);
    left: 30%;
    top: 24%;
    background: radial-gradient(circle at 34% 30%, rgba(255, 220, 233, 0.92), rgba(255, 220, 233, 0.2) 58%, transparent 76%);
}

#hero .hero-orb-j{
    width: clamp(68px, 8vw, 120px);
    height: clamp(68px, 8vw, 120px);
    right: 42%;
    top: 18%;
    background: radial-gradient(circle at 34% 34%, rgba(235, 209, 148, 0.9), rgba(235, 209, 148, 0.2) 58%, transparent 76%);
}

#hero .hero-orb-k{
    width: clamp(110px, 14vw, 190px);
    height: clamp(110px, 14vw, 190px);
    left: 6%;
    bottom: 24%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 230, 240, 0.9), rgba(255, 230, 240, 0.2) 58%, transparent 76%);
}

#hero .hero-orb-l{
    width: clamp(62px, 7vw, 110px);
    height: clamp(62px, 7vw, 110px);
    right: 16%;
    bottom: 26%;
    background: radial-gradient(circle at 34% 34%, rgba(242, 217, 160, 0.9), rgba(242, 217, 160, 0.2) 58%, transparent 76%);
}

#hero .hero-orb-m{
    width: clamp(80px, 9vw, 140px);
    height: clamp(80px, 9vw, 140px);
    left: 18%;
    top: 14%;
    background: radial-gradient(circle at 34% 34%, rgba(255, 225, 236, 0.9), rgba(255, 225, 236, 0.18) 56%, transparent 76%);
}

#hero .hero-orb-n{
    width: clamp(92px, 10vw, 150px);
    height: clamp(92px, 10vw, 150px);
    right: 26%;
    top: 8%;
    background: radial-gradient(circle at 34% 34%, rgba(238, 214, 155, 0.92), rgba(238, 214, 155, 0.2) 58%, transparent 76%);
}

#hero .hero-orb-o{
    width: clamp(60px, 7vw, 110px);
    height: clamp(60px, 7vw, 110px);
    left: 36%;
    top: 4%;
    background: radial-gradient(circle at 34% 34%, rgba(255, 232, 241, 0.94), rgba(255, 232, 241, 0.2) 58%, transparent 76%);
}

#hero .hero-orb-p{
    width: clamp(76px, 9vw, 130px);
    height: clamp(76px, 9vw, 130px);
    right: 6%;
    top: 22%;
    background: radial-gradient(circle at 34% 34%, rgba(243, 221, 168, 0.92), rgba(243, 221, 168, 0.2) 58%, transparent 76%);
}

#hero .hero-orb-q{
    width: clamp(68px, 8vw, 120px);
    height: clamp(68px, 8vw, 120px);
    left: 10%;
    bottom: 34%;
    background: radial-gradient(circle at 34% 34%, rgba(255, 236, 244, 0.94), rgba(255, 236, 244, 0.2) 58%, transparent 76%);
}

#hero .hero-orb-r{
    width: clamp(104px, 12vw, 170px);
    height: clamp(104px, 12vw, 170px);
    right: 30%;
    bottom: 8%;
    background: radial-gradient(circle at 34% 34%, rgba(237, 211, 147, 0.9), rgba(237, 211, 147, 0.2) 58%, transparent 76%);
}

#hero .hero-orb-s{
    width: clamp(58px, 7vw, 98px);
    height: clamp(58px, 7vw, 98px);
    left: 50%;
    bottom: 18%;
    background: radial-gradient(circle at 34% 34%, rgba(255, 228, 238, 0.92), rgba(255, 228, 238, 0.2) 58%, transparent 76%);
}

#hero .hero-orb-t{
    width: clamp(84px, 10vw, 140px);
    height: clamp(84px, 10vw, 140px);
    right: 14%;
    bottom: 38%;
    background: radial-gradient(circle at 34% 34%, rgba(241, 217, 160, 0.92), rgba(241, 217, 160, 0.2) 58%, transparent 76%);
}

#hero .hero-orb-u{
    width: clamp(66px, 8vw, 112px);
    height: clamp(66px, 8vw, 112px);
    left: 60%;
    top: 20%;
    background: radial-gradient(circle at 34% 34%, rgba(255, 233, 242, 0.92), rgba(255, 233, 242, 0.2) 58%, transparent 76%);
}

#hero .hero-orb-v{
    width: clamp(52px, 6vw, 90px);
    height: clamp(52px, 6vw, 90px);
    right: 38%;
    top: 36%;
    background: radial-gradient(circle at 34% 34%, rgba(241, 214, 149, 0.92), rgba(241, 214, 149, 0.2) 58%, transparent 76%);
}

#hero .hero-watercolor{
    position: absolute;
    pointer-events: none;
    z-index: 0;
    mix-blend-mode: multiply;
    opacity: .78;
    filter: blur(.3px);
}

#hero .hero-wash-a{
    width: min(46vw, 620px);
    height: min(42vw, 520px);
    left: 28%;
    top: -2%;
    background:
        radial-gradient(ellipse at 24% 34%, rgba(247,198,217,.72) 0%, rgba(247,198,217,.36) 34%, rgba(247,198,217,0) 65%),
        radial-gradient(ellipse at 68% 58%, rgba(226,191,117,.48) 0%, rgba(226,191,117,.2) 36%, rgba(226,191,117,0) 70%);
    border-radius: 52% 48% 63% 37% / 40% 62% 38% 60%;
}

#hero .hero-wash-b{
    width: min(34vw, 460px);
    height: min(36vw, 430px);
    right: 6%;
    top: 16%;
    background:
        radial-gradient(ellipse at 40% 30%, rgba(255,216,228,.9) 0%, rgba(255,216,228,.3) 42%, rgba(255,216,228,0) 70%),
        radial-gradient(ellipse at 58% 72%, rgba(233,204,136,.5) 0%, rgba(233,204,136,.16) 34%, rgba(233,204,136,0) 68%);
    border-radius: 44% 56% 40% 60% / 58% 42% 56% 44%;
}

#hero .hero-logo-layer{
    position: relative;
    top: -15vh;
    z-index: 2;
    width: clamp(320px, 56vw, 820px);
    aspect-ratio: auto;
    background: none;
    border: 0;
    box-shadow: none;
    display: block;
    filter: drop-shadow(0 22px 38px rgba(86, 57, 11, 0.30));
}

#hero .hero-logo-layer img{
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 0;
    opacity: .98;
    filter: saturate(1.08) contrast(1.04);
}

#hero::before{
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 18%, rgba(247,198,217,0.55), transparent 42%),
        radial-gradient(circle at 86% 82%, rgba(199,154,74,0.26), transparent 36%);
    pointer-events: none;
}

#hero .hero-left{
    position: relative;
    z-index: 2;
}

#hero .hero-kicker{
    margin: 0 0 14px;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-size: 12px;
    color: #3e3326;
    font-weight: 700;
}

#hero h1{
    margin: 0;
    font-size: clamp(2.3rem, 5vw, 4.9rem);
    line-height: .95;
    color: #18120c;
    font-weight: 700;
    max-width: 14ch;
}

#hero .hero-sub{
    margin: 16px 0 0;
    font-size: 18px;
    color: #4f4031;
    max-width: 48ch;
}

#hero .hero-actions{
    margin-top: 24px;
    display: flex;
    gap: 16px;
    align-items: center;
}

#hero .hero-link{
    text-decoration: none;
    color: #1f1710;
    font-weight: 700;
    position: relative;
}

#hero .hero-link::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background: #c79a4a;
}

#hero .hero-meta{
    margin: 24px 0 0;
    font-size: 14px;
    color: #5a4b3d;
}

#hero .hero-right{
    position: relative;
    z-index: 2;
    display: grid;
    gap: 14px;
}

#hero .hero-image-wrap{
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(199,154,74,0.25);
    background: rgba(255,255,255,0.55);
    box-shadow: 0 22px 60px rgba(37, 26, 12, 0.16);
}

#hero .hero-image-wrap img{
    width: 100%;
    height: 100%;
    min-height: 380px;
    object-fit: cover;
    display: block;
}

#hero .hero-stat{
    justify-self: end;
    background: #fff;
    border: 1px solid rgba(199,154,74,0.22);
    border-radius: 14px;
    padding: 10px 14px;
    box-shadow: 0 8px 22px rgba(37,26,12,0.12);
    display: grid;
    gap: 3px;
}

#hero .hero-stat strong{
    font-size: 20px;
    color: #231a10;
}

#hero .hero-stat span{
    font-size: 12px;
    color: #655340;
}

#feature{
    display: grid;
    grid-template-columns: repeat(3, minmax(200px, 1fr));
    gap: 18px;
}

#feature .fe-box{
    width: 100%;
    text-align: left;
    padding: 26px 24px;
    box-shadow: 0 16px 36px rgba(49, 31, 10, 0.08);
    border: 1px solid rgba(199,154,74,0.16);
    border-radius: 14px;
    margin: 0;
    background: rgba(255,255,255,0.76);
    backdrop-filter: blur(4px);
}

#feature .fe-box:hover{
    box-shadow: 0 18px 44px rgba(49, 31, 10, 0.14);
    transform: translateY(-3px);
}

#feature .fe-box h6{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    line-height: 1;
    border-radius: 999px;
    color: #fff;
    background-color: #c79a4a;
    font-size: 14px;
    margin-bottom: 12px;
}

#feature .fe-box p{
    margin: 0;
    color: #473a2c;
    line-height: 1.4;
}

#product1{
    text-align: center;
}

#product1 .pro-container{
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    flex-wrap: wrap;
}

#product1 .pro{
    width: 23%;
    min-width: 250px;
    padding: 10px 12px;
    border: 1px solid #cce7d0;
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.02);
    margin: 15px 0;
    transition: 0.2s ease;
    position: relative;
}

#product1 .pro:hover{
    box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.06);
}

#product1 .pro img{
    width: 100%;
    border-radius: 20px;
}

#product1 .pro .des{
    text-align: start;
    padding: 10px 0;
}

#product1 .pro .des span{
    color: #606063;
    font-size: 12px;
}

#product1 .pro .des h5{
    padding-top: 7px;
    color: #1a1a1a;
    font-size: 14px;
}

#product1 .pro .des i{
    font-size: 12px;
    color: rgb(243, 181, 25);
}

#product1 .pro .des h4{
    padding-top: 7px;
    font-size: 15px;
    font-weight: 700;
    color: #3b2f2f; /* darker text for price on cards */
}
#product1 .pro .cart{
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50px;
    background-color: #fff6f4; /* soft pink */
    font-weight: 500;
    color: #c79a4a; /* theme gold for cart icon */
    border: 1px solid #f6dede;
    position: absolute;
    bottom: 20px;
    right: 10px;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

/* Wishlist button on product cards (+/-) */
#product1 .pro .btn-wishlist{
    position: absolute;
    top: 10px;
    right: 48px;
    border: none;
    background: transparent;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    color: #777;
    transition: transform 120ms ease, color 180ms ease;
}
#product1 .pro .btn-wishlist.active{ 
    color: #c79a4a;
    transform: scale(1.25);
}
#product1 .pro .btn-wishlist.pulse{ transform: scale(1.25); }

/* wishlist page: ensure the remove "âˆ’" button is visible in the top-right of each card */
#wishlist .pro .btn-wishlist{
    position: absolute;
    top: 8px;
    right: 12px;
    border: none;
    background: transparent;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    color: #c79a4a;
    z-index: 3;
}
#wishlist .pro .btn-wishlist:hover{ transform: scale(1.05); }
#wishlist .pro .btn-wishlist.active{ color: #c79a4a; }

/* Wishlist page â€” card actions and remove button (match product-card look) */
.wishlist-card-actions{
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: space-between;
}
.wishlist-card-actions .wishlist-cart-btn{
    background: #c79a4a;
    color: #fff;
    padding: 8px 10px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-flex;
    gap: 8px;
    align-items: center;
    font-size: 13px;
}
.wishlist-remove-btn{
    border: none;
    background: transparent;
    font-size: 20px;
    color: #e74c3c;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 12px;
}


#navbar li#nav-user a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
#navbar li#nav-user a i {
    font-size: 18px;
}

/* AUTH / Wishlist page styling */
.auth-card{
    max-width: 920px;
    margin: 36px auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(2,6,23,0.08);
    overflow: hidden;
    display: flex;
}
.auth-left{
    background: linear-gradient(180deg, #b88430 0%, #c79a4a 100%);
    color: #fff;
    padding: 48px;
    width: 380px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}
.auth-left h2{ margin:0; font-size:28px; }
.auth-left p{ opacity:0.9 }
.auth-right{ padding: 40px; flex: 1; }
.auth-form{ max-width: 420px; margin: 0; }
.input-group{ margin-bottom:14px; }
.input-group input{ width:100%; padding:12px 14px; border-radius:8px; border:1px solid #e6e9ef; font-size:15px; }
.input-row{ display:flex; gap:12px; }
.auth-actions{ display:flex; gap:12px; align-items:center; margin-top:8px; }
.auth-alt{ margin-top:12px; color:#666; }
.auth-tabs{ display:flex; gap:12px; margin-bottom:18px; }
.auth-tabs button{ background:transparent; border:none; padding:8px 14px; cursor:pointer; font-weight:700; color:#444; border-radius:8px; }
.auth-tabs button.active{ background:#fff6f4; color:#c79a4a; }

.profile-card{
    max-width: 860px;
    margin: 36px auto;
    background: #fff;
    border: 1px solid rgba(199,154,74,0.18);
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(2,6,23,0.08);
    padding: 28px;
}
.profile-card h3{ margin-bottom: 12px; color: #231a10; }
.profile-card p{ margin: 0 0 18px; }
.profile-form-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.profile-form-grid .full{ grid-column: 1 / -1; }
.profile-form-grid input{
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid rgba(199,154,74,0.2);
    font-size: 15px;
}
.profile-toggle{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #3a2b17;
}
#profile-signout{
    margin-left: 10px;
    background: #b54545;
    color: #fff;
    border: none;
}
@media (max-width: 799px) {
    .profile-form-grid{ grid-template-columns: 1fr; }
}

/* Wishlist page styling */
#wishlist .pro-container{ display:grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap:18px; }
#wishlist .pro{ background: var(--soft-pink); border-radius:12px; padding:14px; box-shadow: 0 10px 30px rgba(199,154,74,0.06); border: 1px solid rgba(199,154,74,0.08); position:relative; }
#wishlist .pro img{ width:100%; border-radius:8px; object-fit:cover; height:180px; }
#wishlist .pro .des{ padding:8px 4px; }
#wishlist .empty-cta{ text-align:center; padding:36px 0; color:#666; }

#banner{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: url("img/banner/b2.jpg");
    width: 100%;
    height: 40vh;
    background-size: cover;
    background-position: center;
}

#banner h4{
    color: #fff;
    font-size: 16px;
}

#banner h2{
    color: #fff;
    font-size: 30px;
    padding: 10px 0;
}

#banner h2 span{
    color: #c79a4a;
}

#banner button:hover{
    background: #c79a4a;
    color: #fff;
}

#sm-banner{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

#sm-banner .banner-box{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background-image: url("img/banner/b2.jpg");
    min-width: 580px;
    height: 50vh;
    background-size: cover;
    background-position: center;
    padding: 30px;
}

#sm-banner .banner-box2{
    background-image: url("img/banner/b2.jpg");
}

#sm-banner h4{
    color: #fff;
    font-size: 20px;
    font-weight: 300;
}

#sm-banner h2{
    color: #fff;
    font-size: 28px;
    font-weight: 800;
}

#sm-banner span{
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    padding-bottom: 15px;
}

#sm-banner .banner-box:hover{
background: #fff7f6; /* soft pink hover */
border: 1px solid #f6dede;
}

#banner3{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 80px;
}

#banner3 .banner-box{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background-image: url("img/banner/b2.jpg");
    min-width: 30%;
    height: 30vh;
    background-size: cover;
    background-position: center;
    padding: 30px;
    margin-bottom: 20px;
}

#banner3 .banner-box2{
    background-image: url("img/banner/b2.jpg");
}

#banner3 .banner-box3{
    background-image: url("img/banner/b2.jpg");
}

#banner3 h2{
    color: #fff;
    font-weight: 900;
    font-size: 22px;
}

#banner3 h3{
    color: #ec544e;
    font-weight: 800;
    font-size: 15px;
}

#newsletter{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    /*background: linear-gradient(180deg, rgba(247,198,217,0.18), rgba(199,154,74,0.04));
    border-radius: 16px;
    padding: 28px 36px;*/
}

#newsletter h4{
    font-size: 22px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 6px;
}

#newsletter p{
    font-size: 14px;
    color: #6b6b6b;
    margin-bottom: 8px;
}

#newsletter p span{
    color: var(--gold);
}

#newsletter .form{
    display: flex;
    width: 420px;
    max-width: 100%;
    gap: 0;
}

#newsletter input{
    height: 48px;
    padding: 0 16px;
    font-size: 14px;
    width: 100%;
    border: 1px solid rgba(199,154,74,0.12);
    border-radius: 12px 0 0 12px;
    outline: none;
    background: #fff;
}

#newsletter button{
    background: #c79a4a;
    color: #fff;
    border-radius: 0 12px 12px 0;
    padding: 0 22px;
    border: 1px solid rgba(199,154,74,0.12);
    box-shadow: 0 8px 24px rgba(199,154,74,0.12);
}

/* footer newsletter */
.footer-newsletter{ max-width: 320px; }
.footer-newsletter p{ color: #666; margin-bottom:10px; }
.footer-news-form{ display:flex; gap:8px; align-items:center; }
.footer-news-form input{ flex:1; padding:10px 12px; border-radius:8px; border:1px solid rgba(199,154,74,0.08); }
.footer-news-form .normal{ padding:8px 14px; border-radius:8px; font-size:13px; }
.footer-newsletter small a{ color: var(--gold); text-decoration:underline; }


footer{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

footer .col{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
}

footer .logo{
    margin-bottom: 30px;
}

/* header logo is decorative and not clickable */
#header .logo{ cursor: default; }

footer h4{
    font-size: 14px;
    padding-bottom: 20px;
}

footer p{
    font-size: 13px;
    margin: 0 0 8px 0;
}

footer a{
    font-size: 13px;
    text-decoration: none;
    color: #222;
    margin-bottom: 10px;
}

footer .follow{
    margin-top: 20px;
}

footer .follow i{
    color: #465b52;
    padding-right: 4px;
    cursor: pointer;
}

footer .install .row img{
    border: 1px solid #f6dede;
    border-radius: 6px;
}

footer .install img{
    margin: 10px 0 15px 0;
}

footer .follow i:hover,
footer a:hover{
    color: #c79a4a;
}

footer .copyright{
    width: 100%;
    text-align: center;
}

@media (max-width:799px) {
    .section-p1{
        padding: 40px 40px;
    }
    #navbar {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        position: fixed;
        top: 0;
        right: -300px;
        height: 100vh;
        width: 300px;
        background-color: var(--soft-pink);
        box-shadow: 0 40px 60px rgba(199,154,74,0.06);
        padding: 80px 0 0 10px;
        transition: 0.3s;
    }

    #navbar.active{
        right: 0px;
    }

    #navbar li{
        margin-bottom: 25px;
    }

    #mobile{
    display: flex;
    align-items: center;
    }

    #mobile i{
        color: inherit;
        font-size: 24px;
        padding-left: 20px;
    }

    #close{
        display: initial;
        position: absolute;
        top: 30px;
        left: 30px;
        color: #222;
        font-size: 24px;
    }

    #lg-bag{
        display: none;
    }

    #hero{
        min-height: 110vh;
        gap: 0;
        margin-top: -72px;
        padding: 168px 40px 48px;
    }   

    #header + section:not(#hero) {
        margin-top: calc(-1 * var(--header-offset-tablet));
        padding-top: calc(var(--header-offset-tablet) + 14px);
    }

    #hero .hero-logo-layer{
        width: clamp(260px, 70vw, 520px);
    }

    #hero .hero-wash-a{
        left: 8%;
        top: 2%;
        width: min(74vw, 500px);
        height: min(56vw, 360px);
    }

    #hero .hero-wash-b{
        right: -6%;
        top: 22%;
    }

    #feature{
        grid-template-columns: 1fr;
    }

    #feature .fe-box{
        margin: 0;
    }

    #product1 .pro-container{
        justify-content: center;
    }

    #product1 .pro{
        margin: 15px;
    }

    #banner{
        height: 20vh;
    }

    #sm-banner .banner-box{
        min-width: 100%;
        height: 30vh;
    }

    #banner3{
        padding: 0 40px;
    }

    #banner .banner-box{
        width: 28%;
    }

    #newsletter .form{
        width: 70%;
    }

    #form-details{
        padding: 40px;
    }

    #form-details form{
        width: 50%;
    }


}

@media (max-width: 477px) {
    .section-p1{
        padding: 20px;
    }
    #header{
        padding: 10px 30px;
    }

    h1{
        font-size: 38px;
    }

    h2{
        font-size: 32px;
    }

    #hero{
        min-height: 100vh;
        margin-top: -62px;
        padding: 138px 20px 34px;
        gap: 16px;
    }

    #header + section:not(#hero) {
        margin-top: calc(-1 * var(--header-offset-mobile));
        padding-top: calc(var(--header-offset-mobile) + 10px);
    }

    #hero .hero-logo-layer{
        width: clamp(230px, 82vw, 420px);
    }

    #feature{
        grid-template-columns: 1fr;
    }

    #feature .fe-box{
        width: 100%;
        margin: 0;
    }

    #product1 .pro{
        width: 100%;
    }

    #banenr{
        height: 40vh;
    }

    #sm-banner .banner-box{
        height: 40vh;
    }
    #sm-banner .banner-box2{
        margin-top: 20px;
    }

    #banner3{
        padding: 0 20px;
    }

    #banner3 .banner-box{
        width: 100%;
    }

    #newsletter{
        padding: 40px 20px;
    }

    #newsletter .form{
        width: 100%;
    }

    footer .copyright{
        text-align: start;
    }

    #prodetails{
        display: flex;
        flex-direction: column;
    }
    
    #prodetails .single-pro-image{
        width: 100%;
        margin-right: 0px;
    }

    #prodetails .single-pro-details{
        width: 100%;
    }

    #blog{
        padding: 100px 20px 0 20px;
    }

    #blog .banner-box{
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    #blog .blog-img{
        width: 100%;
        margin-right: 0px;
        margin-bottom: 30px;
    }

    #blog .blog-details{
        width: 100%;
    }

    #about-head{
        flex-direction: column;
    }

    #about-head img{
        width: 100%;
        margin-bottom: 20px;
    }

    #about-head div{
        padding-left: 0px;
    }

    #about-app .video{
        width: 100%;
        height: 100%;
        margin: 30px auto 0 auto;
    }

    #contact-details{
        flex-direction: column;
    }

    #contact-details .details{
        width: 100%;
        margin-bottom: 30px;
    }

    #contact-details .map{
        width: 100%;
    }

    #form-details{
        margin: 10px;
        padding: 30px 10px;
        flex-wrap: wrap;
    }

    #form-details form{
        width: 100%;
        margin-bottom: 30px;
    }
    
    #cart-add{
        flex-direction: column;
    }

    #coupon{
        width: 100%;
    }

    #subtotal{
        width: 100%;
        padding: 20px;
    }

}

#page-header{
    /* image + pink overlay so uploaded images (e.g. your 309.jpg) blend into the theme */
    background-image: linear-gradient(rgba(247,198,217,0.55), rgba(199,154,74,0.08)), url(img/banner/b1.jpg);
    background-blend-mode: overlay;
    width: 100%;
    min-height: 130vh;
    height: auto;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    padding: 14px;
}

@media (max-width: 799px) {
    #page-header{
        min-height: 110vh;
    }
}

@media (max-width: 477px) {
    #page-header{
        min-height: 100vh;
    }
}

#page-header h2,
#page-header p{
    color: #fff;
    text-shadow: 0 6px 20px rgba(2,6,23,0.25);
}

/* small circular logo shown in page headers (e.g. Wishlist) */
.page-logo{
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    margin: 0 auto 12px;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.15), transparent 40%);
    box-shadow: 0 8px 30px rgba(199,154,74,0.15);
    border: 3px solid rgba(255,255,255,0.6);
}

#paginatoin{
    text-align: center;
}

#paginatoin a{
    text-decoration: none;
    background: #c79a4a;
    padding: 12px 20px;
    border-radius: 12px;
    color: #fff;
    font-weight: 700;
    box-shadow: 0 8px 30px rgba(199,154,74,0.12);
}
#paginatoin a:hover{ transform: translateY(-2px); opacity: 0.98; }

#paginatoin a i{
    font-size: 16px;
    font-weight: 600;
}

#prodetails{
    display: flex;
    margin-top: 20px;
}

#prodetails .single-pro-image{
    width: 40%;
    margin-right: 50px;
}

.small-image-group{
    display: flex;
    justify-content: space-between;
}

.small-img-col{
    flex-basis: 24%;
    cursor: pointer;
}

#prodetails .single-pro-details{
    width: 50%;
    padding-top: 30px;
}

#prodetails .single-pro-details h4{
    padding: 40px 0 20px 0;
}

#prodetails .single-pro-details h2{
    font-size: 26px;
}

#prodetails .single-pro-details select{
    display: block;
    padding: 5px 10px;
    margin-bottom: 10px;
}

#prodetails .single-pro-details input{
    width: 50px;
    height: 47px;
    padding-left: 10px;
    font-size: 16px;
    margin-right: 10px;
}

#prodetails .single-pro-details input:focus{
    outline: none;
}

#prodetails .single-pro-details button{
    background: #c79a4a;
    color: #fff;
}

#prodetails .single-pro-details span{
    line-height: 25px;
}

#page-header .blog-header{
    background-image: url("img/banner/b19.jpg");
}

#blog{
    padding: 150px 150px 0 150px;
}

#blog .blog-box{
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    padding-bottom: 90px;
}

#blog .blog-img{
    width: 50%;
    margin-right: 40px;
}

#blog img{
    width: 100%;
    height: 300px;
    object-fit: cover;
}

#blog .blog-details{
    width: 50%;
}

#blog .blog-details a{
    text-decoration: none;
    font-size: 11px;
    color: #000;
    font-weight: 700;
    position: relative;
    transition: 0.03s;
}

#blog .blog-details a::after{
    content: "";
    width: 50px;
    height: 1px;
    background-color: #000;
    position: absolute;
    top: 4px;
    right: -60px;
}

#blog  .blog-details a:hover{
    color: #c79a4a;
}

#blog .blog-details a:hover::after{
    background-color: #c79a4a;
}

#blog .blog-box h1{
    position: absolute;
    top: -40px;
    left: 0;
    font-size: 70px;
    font-weight: 700;
    color: #c9cbce;
    z-index: -9;
}
#page-header .about-header{
    background-image: url("img/about/banner.png");
}

#about-head{
    display: flex;
    align-items: center;
}

#about-head img{
    width: 50%;
    height: auto;
}

#about-head div{
    padding-left: 40px;
}

#about-app{
    text-align: center;
}

#about-app .video{
    width: 70%;
    height: 100%;
    margin-top: 30px;
}

#about-app .video video{
    width: 100%;
    height: 100%;
    border: 30px auto 0 auto;
}

#contact-details{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#contact-details .details{
    width: 40%;
}

#contact-details .details span,
#form-details form span{
    font-size: 12px;
}

#contact-details .details h2,
#form-details form h2{
    font-size: 26px;
    line-height: 35px;
    padding: 20px 0;
}

#contact-details .details h3{
    font-size: 16px;
    padding-bottom: 15px;
}

#contact-details .details li{
    list-style: none;
    display: flex;
    padding: 10px 0;
}

#contact-details .details li i{
    font-size: 14px;
    padding-right: 22px;
}

#contact-details .details li p{
    margin: 0;
    font-size: 14px;
}

#contact-details .map{
    width: 55%;
    height: 400px;
}

#contact-details .map iframe{
    width: 100%;
    height: 100%;
}

#form-details{
    display: flex;
    justify-content: space-between;
    margin: 30px;
    padding: 80px;
    border: 1px solid #e1e1e1;
}

#form-details form{
    width: 65%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

#form-details form input,
#form-details form textarea{
    width: 100%;
    padding: 12px 15px;
    outline: none;
    margin-bottom: 20px;
    border: 1p solid #e1e1e1;
}

#form-details form button{
    background: #c79a4a;
    color: #fff;
    border: none;
    box-shadow: 0 8px 20px rgba(199,154,74,0.12);
}

#form-details .people div{
    padding-bottom: 25px;
    display: flex;
    align-items: flex-start;
}

#form-details .people div img{
    width: 65px;
    height: 65px;
    object-fit: cover;
    margin-right: 15px;
}

#form-details .people div p{
    margin: 0;
    font-size: 13px;
    line-height: 25px;
}

#form-details .people div p span{
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #000;
}

#cart{
    overflow-x: auto;
}

#cart table{
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    white-space: nowrap;
}

#cart table img{
    width: 70px;
}

#cart table td:nth-child(1){
    width: 100px;
    text-align: center;
}
#cart table td:nth-child(2){
    width: 150px;
    text-align: center;
}
#cart table td:nth-child(3){
    width: 250px;
    text-align: center;
}
#cart table td:nth-child(4),
#cart table td:nth-child(5),
#cart table td:nth-child(6){
    width: 150px;
    text-align: center;
}

#cart table td:nth-child(5) input{
    width: 70px;
    padding: 10px 5px 10px 15px;
}

#cart table thead{
    border: 1px solid #e2e9e1;
    border-left: none;
    border-right: none;
}

#cart table thead td{
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    padding: 18px 0;
}

#cart table tbody tr td{
    padding-top: 15px;
}

#cart table tbody td{
    font-size: 13px;
}

#cart-add{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#coupon{
    width: 50%;
    margin-bottom: 30px;
}

#coupon h3,
#subtotal h3{
    padding-bottom: 15px;
}

#coupon input{
    padding: 10px 20px;
    outline: none;
    width: 60%;
    margin-right: 10px;
    border: 1px solid #e2e9e1;
}

#coupon button,
#subtotal button{
    background: #c79a4a;
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
    border: 1px solid rgba(199,154,74,0.12);
    box-shadow: 0 8px 20px rgba(199,154,74,0.10);
}

#subtotal{
    width: 50%;
    margin-bottom: 30px;
    border: 1px solid #e3e9e1;
    padding: 30px;
}

#subtotal table{
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 20px;
}

#subtotal table td{
    width: 50%;
    border: 1px solid #e2e9e2;
    padding: 10px;
    font-size: 13px;
}


#lg-bag{
    display: flex;
    align-items: center;
}

#lg-bag a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* cart badge (count) â€” even smaller and unobtrusive */
.cart-count{
    position: absolute;
    top: -8px;              /* slightly higher */
    right: -6px;
    background: #c79a4a;    /* primary badge color -> theme gold */
    color: #fff;
    font-size: 9px;         /* smaller number */
    padding: 0 3px;
    border-radius: 9px;
    min-width: 12px;
    height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* wishlist badge â€” slightly higher than the cart badge */
.wishlist-count{
    position: absolute;
    top: -12px;             /* raised above the cart badge */
    right: -6px;
    background: #c79a4a;    /* same color as cart */
    color: #fff;
    font-size: 9px;
    padding: 0 3px;
    border-radius: 9px;
    min-width: 12px;
    height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* ensure cart & wishlist icons stay visible */
#lg-bag a i, #nav-wishlist a i { font-size: 18px; color: inherit; display: inline-block; }

/* hide "Install App" footer column by default, but allow showing it on pages that opt-in */
/* soft site background accent from logo */
body { background-color: #fffaf9; }
body:not(.show-install) .col.install { display: none !important; }


@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

#cart input[type="number"] {
    width: 70px;
    padding: 5px;
    border: 1px solid #d1d1d1;
    border-radius: 3px;
}

#cart tbody tr td input[type="number"] {
    width: 50px;
}

/* Payment Modal Styles */
#payment-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

#payment-modal > div {
    background: white;
    padding: 40px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

#payment-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
    color: #222;
    font-size: 14px;
}

#payment-form input,
#payment-form select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    box-sizing: border-box;
}

#payment-form input:focus,
#payment-form select:focus {
    outline: none;
    border-color: #c79a4a;
    box-shadow: 0 0 5px rgba(8, 129, 120, 0.3);
}


/* ===== Fullscreen nav toggle refresh ===== */
#header {
    padding: 14px 28px;
    justify-content: flex-start;
    gap: 14px;
}

#header .logo {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    object-fit: cover;
    order: 3;
    margin-left: auto;
}

#header > div:first-of-type {
    display: block;
    order: 2;
}

#mobile {
    display: flex;
    align-items: center;
    order: 1;
}

#mobile > a {
    display: none;
}

.menu-toggle {
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 50%;
    background: #f7c6d9;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color .36s ease, color .36s ease, transform .42s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .36s ease;
}

.menu-toggle i {
    font-size: 20px;
    transition: transform .42s cubic-bezier(0.22, 1, 0.36, 1), opacity .24s ease;
}

.menu-toggle.is-open {
    background: #e2bf75;
    color: #fff;
    transform: rotate(180deg);
    box-shadow: 0 10px 24px rgba(81, 55, 9, 0.26);
}

.menu-toggle.is-open i {
    transform: rotate(180deg) translateY(2px);
}

body.nav-open {
    overflow: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.68);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .4s ease, visibility .4s ease;
}

body.nav-open::before {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

#navbar {
    position: fixed;
    inset: 0;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    background: linear-gradient(145deg, #f7c6d9 0%, #e2bf75 100%);
    transform: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .48s ease, visibility 0s linear .48s;
    padding: 130px 24px 56px;
}

#navbar::before {
    content: "";
    position: absolute;
    top: 28px;
    left: 50%;
    width: 156px;
    height: 156px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: #fff url('img/logo3.png') center / 86% no-repeat;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}

#navbar.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    background: linear-gradient(145deg, #f7c6d9 0%, #e2bf75 100%);
    transition: opacity .48s ease, visibility 0s;
}

#navbar li {
    padding: 0;
    margin: 0;
    opacity: 0;
    transform: none;
    transition: opacity .35s ease;
}

#navbar.active li {
    opacity: 1;
    transform: none;
}

#navbar li {
    transition-delay: 0s;
}

#navbar li a {
    font-size: clamp(1.15rem, 2.8vw, 1.8rem);
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #111;
    font-weight: 700;
}

#navbar li a::after,
#navbar li#nav-wishlist a::after,
#navbar li#lg-bag a::after {
    display: none;
}

#navbar li a:hover,
#navbar li a.active {
    color: #000;
}

body.nav-open #navbar li#nav-wishlist a i,
body.nav-open #navbar li#lg-bag a i,
body.nav-open #navbar li#nav-user a i {
    font-size: 1.5em;
}

#close {
    display: none !important;
}

footer .follow {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 998;
    margin-top: 0;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(26, 26, 26, 0.08);
    border-radius: 999px;
    padding: 14px 10px;
    backdrop-filter: blur(8px);
}

footer .follow h4 {
    display: none;
}

footer .follow .icon {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
}

footer .follow i {
    font-size: 18px;
    padding-right: 0;
}

@media (max-width: 799px) {
    #header {
        padding: 12px 16px;
    }

    #header .logo {
        width: 52px;
        height: 52px;
    }

    .menu-toggle {
        width: 48px;
        height: 48px;
    }

    #navbar {
        padding-top: 120px;
    }

    footer .follow {
        right: 10px;
        padding: 12px 8px;
    }
}

#header {
    z-index: 1002;
    border-bottom: 0 !important;
}

.menu-toggle {
    position: relative;
    z-index: 1003;
}

.menu-close {
    display: none !important;
}

@media (max-width: 799px) {
    .menu-close {
        display: none !important;
    }
}

/* First-load intro splash */
#site-intro {
    position: fixed;
    inset: 0;
    z-index: 12000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(130deg, #f7c6d9 0%, #c79a4a 100%);
    background-size: 220% 220%;
    animation: introGradient 2.6s ease-in-out infinite alternate;
    opacity: 1;
    visibility: visible;
    transition: opacity .7s ease, visibility .7s ease;
}

#site-intro.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

#site-intro .intro-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

#site-intro .intro-logo {
    width: min(440px, 92vw);
    height: auto;
    object-fit: contain;
    transform: scale(1.65) rotate(48deg);
    opacity: 0;
    animation: introLogoReveal 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    filter: drop-shadow(0 10px 16px rgba(0,0,0,0.2));
}

@keyframes introLogoReveal {
    0% { opacity: 0; transform: scale(1.65) rotate(48deg); }
    100% { opacity: 1; transform: scale(1) rotate(0deg); }
}

@keyframes introGradient {
    0% { background-position: 0% 35%; }
    100% { background-position: 100% 65%; }
}

#bar {
    display: inline-block;
    width: 1em;
    text-align: center;
    line-height: 1;
}


/* Align menu close button with menu toggle button */
.menu-close {
    display: none !important;
}

.menu-close i {
    line-height: 1;
}

@media (max-width: 799px) {
    .menu-close {
        display: none !important;
    }
}
