/* ============ TOKENS ============ */
:root {
    --black: #0a0a0a;
    --ink: #111111;
    --white: #fdfdfb;
    --grey-100: #f6f3e4;
    --grey-300: #e2dcb8;
    --grey-500: #8a8567;
    --accent: #fdfcf6;
    --accent2: #faf9f5;
    --accent-ink: #8a6d00;
    --yellow: #F5C518;
    --yellow-deep: #E0AE00;
    --grad: linear-gradient(135deg, var(--accent), var(--accent2));
    --font-display: 'Anton', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 10px;
    --ease: cubic-bezier(.22, 1, .36, 1);
    --nav-h: 84px;
    --marquee-h: 46px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--white);
    color: var(--black);
    font-family: var(--font-body);
    overflow-x: hidden;
    cursor: default;
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
}

input,
select {
    font-family: inherit;
}

ul {
    list-style: none;
}

::selection {
    background: var(--accent);
    color: var(--black);
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ============ icon ============ */
.visit-store-icon img {
    width: 20px;
    /* adjust size */
    height: 20px;
    /* keep proportions */
    display: inline-block;
    vertical-align: middle;
}


/* ============ CURSOR ============ */

/* ============ SCROLL PROGRESS ============ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: var(--grad);
    z-index: 9997;
}

/* ============ NAVBAR ============ */
.navbar {
    position: fixed;
    top: var(--marquee-h);
    left: 0;
    transform: translateY(0);
    width: 100%;
    height: var(--nav-h);
    padding: 3.5px 65px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: var(--yellow);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    transition: transform .4s ease, background .4s ease, box-shadow .4s ease, top .3s ease;
}

/* Hide on rapid scroll-down — keep a quick hide slide */
.navbar.hide-nav {
    transform: translateY(-110%);
    transition: transform .4s var(--ease), box-shadow .4s ease, top .3s ease;
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

body.scrolled .navbar {
    top: 0;
}

/* Homepage-specific header overlay pattern */
body.home-page .navbar {
    background: transparent;
    border-bottom: none;
    box-shadow: none;
}

body.home-page .navbar.scrolled {
    background: var(--yellow);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-logo img {
    height: 68px;
    width: auto;
    object-fit: contain;
    display: block;
}

.footer-brand .nav-logo img {
    height: 64px;
    width: auto;
    object-fit: contain;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
    flex-shrink: 1;
    min-width: 0;
}

.nav-link {
    position: relative;
    color: #3b3c54;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    padding: 8px 12px;
    transition: color .25s ease;
    white-space: nowrap;
    flex-shrink: 1;
    min-width: 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 4px;
    height: 2px;
    background: #3b3c54;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s var(--ease);
}

.nav-link:hover {
    color: #000;
    background: transparent;
}

.nav-link:hover::after {
    transform: scaleX(1);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 2px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .nav-actions {
        gap: 8px;
    }
    .search-box {
        order: 2;
    }
    .cart-btn {
        order: 1;
    }
    .profile-btn {
        order: 3;
    }
}

.lang-select {
    position: relative;
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: 14px;
    font-weight: 600;
    color: #3b3c54;
    cursor: pointer;
    padding: 5px 8px;
    border-radius: 100px;
    transition: background .25s ease;
    white-space: nowrap;
}

.lang-select:hover {
    background: rgba(0, 0, 0, 0.05);
}

.lang-select {
    position: relative;
}

.lang-select .lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    padding: 6px;
    min-width: 140px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: all .2s ease;
    z-index: 1001;
}

.lang-select.open .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-select .lang-dropdown button {
    display: block;
    width: 100%;
    text-align: left;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    color: #000;
    cursor: pointer;
    background: transparent;
    border: none;
    transition: background .15s ease;
}

.lang-select .lang-dropdown button:hover {
    background: rgba(0, 0, 0, 0.06);
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
}

.search-box input {
    width: 110px;
    height: 40px;
    padding: 8px 16px 8px 36px;
    border-radius: 100px;
    border: 1px solid #dcdde1;
    background: #f1f3f6;
    color: #3b3c54;
    font-family: var(--font-body);
    font-size: 14px;
    outline: none;
    transition: border-color .25s ease, background .25s ease, width 0.3s ease;
}

.search-box input::placeholder {
    color: #7f8fa6;
}

.search-box input:focus {
    border-color: #3b3c54;
    background: #ffffff;
}

.search-box svg {
    position: absolute;
    left: 12px;
    width: 16px;
    height: 16px;
    stroke: #7f8fa6;
    pointer-events: none;
}

.hero-slide-woomen {
    margin-top: 100px;
    /* adjust only this image’s top spacing */
    /* optional: control section height */
}

.icon-btn {
    position: relative;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b3c54;
    transition: background .3s ease, transform .3s var(--ease);
}

.icon-btn svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: #3b3c54;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke .25s ease;
}

.cart-btn .badge {
    position: absolute;
    top: -2px;
    right: -2px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    background: #ff4d4f;
    /* pink/red background matching the reference */
    color: #ffffff;
    /* white text matching the reference */
    font-size: 9px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    letter-spacing: normal;
    box-sizing: border-box;
}

.icon-btn:hover {
    background: rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.icon-btn:hover svg {
    stroke: #000;
}

.profile-btn {
    display: none;
}

@media(min-width:900px) {
    .profile-btn {
        display: flex;
    }
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
}

.hamburger span {
    width: 20px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform .35s var(--ease), opacity .3s ease;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media(min-width:1024px) {
    .hamburger {
        display: none;
    }

    /* Absolutely center logo inside header on desktop */
    .navbar .nav-logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        align-items: center;
        z-index: 10;
    }

    /* Expand search inputs on desktop */
    .search-box input {
        width: 220px;
    }
}

/* LEFT TOGGLE — mobile only */
.hamburger-left {
    display: none;
    order: -1;
}

.hamburger-left span {
    background: var(--black);
}

@media(max-width:1023px) {
    .hamburger-left {
        display: flex;
    }

    .nav-links {
        display: none;
    }

    .navbar {
        padding: 8px 12px;
    }

    .nav-actions {
        gap: 2px;
    }

    .lang-select {
        font-size: 11px;
        padding: 4px 6px;
    }

    .search-box input {
        width: 100px;
        font-size: 12px;
    }

    .mobile-menu {
        top: calc(var(--marquee-h) + var(--nav-h) + 16px);
        z-index: 1002;
    }

    body.scrolled .mobile-menu {
        top: calc(var(--nav-h) + 16px);
    }
}

/*------------img button-------*/

.image-section1 {
    position: relative;
    width: 100%;
}

.image-wrapper img {
    width: 100%;
    display: block;
}

.explore-boys-wrap {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);

    background: transparent;
    padding: 0;
    margin: 0;
    border: none;
    box-shadow: none;
}

.explore-boys-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 25px 40px;
    background: #ffc802;
    color: rgb(0, 0, 0);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 900;
    transition: .35s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
    font-size: 20px;
}

.explore-boys-btn:hover {
    background: #fffffe;
    color: #111;
    transform: translateY(-4px);
}

.explore-boys-btn svg {
    transition: .3s;
}

.explore-boys-btn:hover svg {
    transform: translateX(5px);
}

.image-section {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    margin-top: 50px;
}

.image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}



/* ---- Instagram Follow Strip ---- */
.insta-follow-section {
    background: #fff;
    border-bottom: 1px solid #e8e8e8;
    padding: 36px 6%;
    margin-top: 0;
}

.insta-follow-inner {
    display: flex;
    align-items: center;
    gap: 28px;
    max-width: 900px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.insta-follow-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: #f2f2f2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.insta-follow-section:hover .insta-follow-icon {
    background: #ffcc00;
}

.insta-follow-text {
    flex: 1;
    min-width: 200px;
}

.insta-follow-label {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #888;
    text-transform: uppercase;
    margin: 0 0 6px;
}

.insta-follow-handle {
    font-family: 'Anton', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    color: #111;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
    line-height: 1;
}

.insta-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #111;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 16px 36px;
    border-radius: 4px;
    border: 2px solid #111;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.insta-follow-btn:hover {
    background: #ffcc00;
    color: #111;
    border-color: #ffcc00;
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.15);
}

.insta-follow-btn svg {
    transition: transform 0.3s ease;
}

.insta-follow-btn:hover svg {
    transform: translateX(5px);
}

@media (max-width: 600px) {
    .insta-follow-inner {
        flex-direction: column;
        text-align: center;
    }

    .insta-follow-btn {
        width: 100%;
        justify-content: center;
    }
}

/* MOBILE MENU */
.mobile-menu {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    top: calc(var(--nav-h) + 16px);
    width: 90%;
    max-width: 380px;
    min-height: 80vh;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(14px);
    border-radius: 28px;
    border: 2px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    overflow-y: auto;
    padding: 24px 0;
    z-index: 1002;
    opacity: 0;
    visibility: hidden;
    translate: 0 30px;
    pointer-events: none;
    transition: all 0.6s cubic-bezier(.71, 0, .34, 1) .16s;
}

@media (max-width: 768px) {
    .mobile-menu {
        top: 0;
        left: 0;
        transform: none;
        width: 100vw;
        max-width: 100vw;
        height: 100vh;
        min-height: 100vh;
        border-radius: 0;
        border: none;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 40px 24px;
        gap: 8px;
    }

    .mobile-menu.open {
        opacity: 1;
        visibility: visible;
        translate: 0 0;
        pointer-events: auto;
    }

    .mnav-link {
        font-size: 20px;
        padding: 16px 24px;
        text-align: center;
        width: 100%;
        border-radius: 16px;
    }

    .mnav-link:hover {
        padding-left: 24px;
        background: rgba(0, 0, 0, 0.06);
    }

    .mobile-menu .bottom-section {
        margin-top: 24px;
        padding: 20px 0 0;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        width: 100%;
        align-items: center;
    }

    .mobile-menu-close {
        position: absolute;
        top: 20px;
        left: 20px;
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(0, 0, 0, 0.06);
        border: none;
        border-radius: 50%;
        cursor: pointer;
        z-index: 10;
        color: #111;
        transition: background 0.2s ease, transform 0.2s ease;
    }

    .mobile-menu-close:hover {
        background: rgba(0, 0, 0, 0.12);
        transform: scale(1.05);
    }

    .mobile-menu-close svg {
        width: 22px;
        height: 22px;
        stroke: #111;
        stroke-width: 2.5;
    }
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
    translate: 0 0;
    pointer-events: auto;
}

.mnav-link {
    display: block;
    color: #222;
    font-size: 17px;
    font-weight: 500;
    padding: 14px 24px;
    border-radius: 12px;
    transition: background 0.25s ease, padding-left 0.25s ease;
}

.mnav-link:hover {
    background: rgba(0, 0, 0, 0.05);
    padding-left: 30px;
}

/* Bottom section */
.mobile-menu .bottom-section {
    margin-top: auto;
    padding: 20px 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.bottom-section .social-icons {
    display: flex;
    gap: 16px;
}

.bottom-section .social-icons svg {
    width: 20px;
    height: 20px;
    stroke: #222;
}

/* BOTTOM NAV */
.bottom-nav {
    display: none;
    position: fixed;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(10, 10, 10, .85);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 100px;
    padding: 10px 22px;
    gap: 26px;
    z-index: 998;
    box-shadow: 0 20px 40px -16px rgba(0, 0, 0, .5);
}

.bnav-item {
    color: rgba(255, 255, 255, .6);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    transition: color .25s ease, transform .25s ease;
}

.bnav-item svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}


.bnav-item.active {
    color: var(--accent2);
    transform: translateY(-3px);
}

@media(max-width:1023px) {
    body {
        padding-bottom: 80px;
    }

    .toast {
        bottom: 90px;
    }

    .reels-wrapper {
        padding: 0 24px;
    }

    .section1 {
        padding: 40px 0px 80px;
    }
}

/*===========Testomionals-----------*/
.testimonials {
    background-color: #fff;
    text-align: center;
    padding: 60px 20px;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}

.testimonials h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 50px;
    font-style: italic;
}

.testimonial-container {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: scrollLoop 50s linear infinite;
    will-change: transform;
}

@keyframes scrollLoop {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}



.testimonial {
    max-width: 300px;
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.testimonial img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    margin: 0 auto 20px;
}

.testimonial p {
    font-size: 1rem;
    color: #34495e;
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial h4 {
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 5px;
}

.testimonial .role {
    display: block;
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-bottom: 10px;
}

.stars {
    color: #f1c40f;
    font-size: 1.2rem;
}

/*==========fornt========*/
.fashion-banner {
    background-color: #fff;
    text-align: center;
    padding: 80px 20px;
    font-family: 'Playfair Display', serif;
    overflow: hidden;
}

.headline {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 7vw, 6rem);
    font-weight: 900;
    letter-spacing: 2px;
    line-height: 1;
    text-transform: uppercase;
    background: linear-gradient(105deg,
            #111 0%,
            #1a1a1a 30%,
            #fff 48%,
            #e0e0e0 52%,
            #1a1a1a 70%,
            #111 100%);
    background-size: 250% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: blackShine 3.5s linear infinite;
    display: inline-block;
    position: relative;
}

.subline {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 7vw, 6rem);
    font-weight: 900;
    font-style: normal;
    letter-spacing: 2px;
    line-height: 1;
    text-transform: uppercase;
    background: linear-gradient(105deg,
            #111 0%,
            #1a1a1a 30%,
            #fff 48%,
            #e0e0e0 52%,
            #1a1a1a 70%,
            #111 100%);
    background-size: 250% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: blackShine 3.5s linear infinite;
    display: inline-block;
    margin-top: 0;
    position: relative;
}

@keyframes blackShine {
    0% {
        background-position: 200% center;
    }

    100% {
        background-position: -50% center;
    }
}



/*===========Testomionals-----------*/
.testimonials {
    background-color: #fff;
    text-align: center;
    padding: 60px 20px;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}

.testimonials h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 50px;
    font-style: italic;
}

.testimonial-container {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: scrollLoop 50s linear infinite;
    will-change: transform;
}

@keyframes scrollLoop {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}



.testimonial {
    max-width: 300px;
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.testimonial img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.testimonial p {
    font-size: 1rem;
    color: #34495e;
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial h4 {
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 5px;
}

.testimonial .role {
    display: block;
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-bottom: 10px;
}

.stars {
    color: #f1c40f;
    font-size: 1.2rem;
}

/* ============ HERO ============ */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--black);
    color: var(--white);
    overflow: hidden;
    padding: 0;
}


.hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    z-index: 1;
    transition: opacity 0.8s ease-in-out;
    will-change: opacity;
    transform: translateZ(0);
}

.hero-slide.previous {
    opacity: 1;
    z-index: 1;
    transition: none;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

#particleCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-blobs {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: .55;
}

.blob-a {
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, var(--accent), transparent 70%);
    top: -140px;
    left: -120px;
}

.blob-b {
    width: 460px;
    height: 460px;
    background: radial-gradient(circle, var(--accent2), transparent 70%);
    bottom: -160px;
    right: -100px;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
}

.hero-eyebrow {
    font-family: var(--font-mono);
    font-size: 13px;
    letter-spacing: 4px;
    color: var(--accent2);
    margin-bottom: 18px;
}

.hero-title {
    line-height: .85;
    margin-bottom: 22px;
}

.reveal-line {
    display: block;
    overflow: hidden;
}

.reveal-word {
    display: inline-block;
    font-family: var(--font-display);
    font-size: clamp(70px, 15vw, 190px);
    letter-spacing: 2px;
    background: linear-gradient(135deg, #fff, #fff 40%, var(--accent2));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-sub {
    font-size: clamp(16px, 2.4vw, 22px);
    color: rgba(255, 255, 255, .78);
    font-weight: 500;
    margin-bottom: 38px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============ HERO CTA SHOP NOW BUTTON ============ */
.hero-cta-wrap {
    position: absolute;
    bottom: 50px;
    left: 6%;
    z-index: 10;
}

.hero-shop-btn {
    background: #FFFF00;
    /* navbar background color (yellow) */
    color: var(--black);
    padding: 16px 36px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    border: 1px solid rgba(0, 0, 0, 0.1);
    text-decoration: none;
    margin-bottom: 83px;
}

.hero-shop-btn svg {
    width: 18px;
    height: 18px;
    stroke: var(--black);
    transition: transform 0.4s var(--ease);
}

.hero-shop-btn:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 16px 40px rgba(251, 206, 7, 0.4);
    background: var(--white);
    color: var(--black);
}

.hero-shop-btn:hover svg {
    transform: translateX(5px);
    stroke: var(--black);
}

/* Adjust position on mobile devices */
@media (max-width: 768px) {
    .hero-cta-wrap {
        bottom: 100px;
        left: 20px;
        right: auto;
        transform: none;
        width: auto;
    }

    .hero-shop-btn {
       padding: 8px 19px;
        font-size: 10px;
        gap: 10px;
        max-width: calc(100% - 40px);
        white-space: nowrap;
    }
}


.btn {
    position: relative;
    overflow: hidden;
    padding: 17px 34px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 14.5px;
    letter-spacing: .3px;
    transition: transform .35s var(--ease), box-shadow .35s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn span {
    position: relative;
    z-index: 2;
}

.btn-primary {
    background: var(--grad);
    color: var(--black);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 34px -12px rgba(251, 206, 7, .55);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, .4);
}

.btn-ghost:hover {
    border-color: var(--white);
    transform: translateY(-3px);
    background: rgba(255, 255, 255, .06);
}

.btn.full {
    width: 100%;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, .5);
    transform: scale(0);
    animation: rippleAnim .6s ease-out forwards;
    pointer-events: none;
}

@keyframes rippleAnim {
    to {
        transform: scale(3);
        opacity: 0;
    }
}

.hero-cards {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.float-card {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .6);
    border: 1px solid rgba(255, 255, 255, .08);
}

.fc-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.fc-1 {
    width: 150px;
    height: 200px;
    top: 16%;
    left: 6%;
    transform: rotate(-2deg);
}

.fc-2 {
    width: 170px;
    height: 220px;
    top: 56%;
    right: 7%;
    transform: rotate(2deg);
}

.fc-3 {
    width: 120px;
    height: 160px;
    top: 20%;
    right: 16%;
    transform: rotate(-3deg);
    display: none;
}

.fc-img1 {
    background-image: url('https://images.unsplash.com/photo-1552374196-c4e7ffc6e126?q=80&w=500&auto=format&fit=crop');
}

.fc-img2 {
    background-image: url('https://images.unsplash.com/photo-1512327646107-d5b74d5b1c5b?q=80&w=500&auto=format&fit=crop');
}

.fc-img3 {
    background-image: url('https://images.unsplash.com/photo-1521572163474-6864f9cf17ab?q=80&w=500&auto=format&fit=crop');
}

@media(min-width:1200px) {
    .fc-3 {
        display: block;
    }
}

/* ===========================
   HERO MOBILE
=========================== */

@media (max-width:768px) {

    .hero {
        position: relative;
        height: 60vh;
        min-height: 70vw;
        padding: 90px 20px 40px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: center;
        overflow: hidden;
    }

    /* Show FULL background image */
    .hero-slide {
        background-size: 100% auto !important;
        background-repeat: no-repeat;
        background-position: center center;
        background-color: var(--yellow);
    }

    /* Light overlay so image stays visible */
    .hero::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(to bottom,
                rgba(0, 0, 0, .15),
                rgba(0, 0, 0, .30),
                rgba(0, 0, 0, .60));
        z-index: 1;
    }

    .hero-content {
        position: relative;
        z-index: 5;
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }

    .hero-title {
        line-height: .95;
    }

    .reveal-word {
        font-size: clamp(40px, 11vw, 56px);
    }

    .hero-sub {
        max-width: 320px;
        margin: 15px auto 25px;
        font-size: 15px;
        line-height: 1.6;
    }

    .hero-actions {
        display: flex;
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-cards,
    .blob-a,
    .blob-b {
        display: none;
    }

    .scroll-cue {
        bottom: 15px;
    }

}

.scroll-cue {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, .5);
    border-radius: 16px;
    display: flex;
    justify-content: center;
    padding-top: 7px;
}

.wheel {
    width: 3px;
    height: 7px;
    background: var(--accent2);
    border-radius: 3px;
}

.scroll-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, .5);
}

/* ============ MARQUEE ============ */
.marquee {
    /* Fixed announcement bar pinned to the very top of the home page */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--marquee-h);
    display: flex;
    align-items: center;
    z-index: 1001;
    /* above navbar (1000) */
    background: rgb(32, 32, 32);
    color: var(--white);
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    /* Always visible + stable — no slide-in on scroll */
    transform: translateY(0);
    transition: transform 0.3s ease;
}

/* (kept for backwards-compat; bar is always shown) */
.marquee.marquee-revealed {
    transform: translateY(0);
}

body.scrolled .marquee {
    transform: translateY(-100%);
}

.marquee-static {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-mono);
    font-size: 14px;
    letter-spacing: 2px;
    white-space: nowrap;
    text-transform: uppercase;
    z-index: 2;
    pointer-events: none;
    color: var(--white);
    opacity: 1;
}

.marquee.start-marquee .marquee-static {
    animation: fadeOutStatic 0.5s ease forwards;
    animation-delay: 3s;
}

.marquee-track {
    display: flex;
    width: max-content;
    opacity: 0;
}

.marquee.start-marquee .marquee-track {
    animation: marqueeScroll 22s linear infinite, fadeInTrack 0.5s ease forwards;
    animation-delay: 3.5s, 3.5s;
}

.marquee-track span {
    font-family: var(--font-mono);
    font-size: 14px;
    letter-spacing: 2px;
    white-space: nowrap;
    padding-right: 10px;
}

@keyframes marqueeScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes fadeOutStatic {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

@keyframes fadeInTrack {
    to {
        opacity: 1;
    }
}

/* ============ TRUST BAR ============ */
.trust-bar {
    background: var(--white);
    border-bottom: 1px solid rgba(0, 0, 0, .08);
    padding: 0 6vw;
}

.trust-bar-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    padding: 28px 0;
}

.trust-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px 24px;
    border-radius: var(--radius-md);
    transition: background .25s ease, transform .25s var(--ease);
}

.trust-item:hover {
    background: var(--grey-100);
    transform: translateY(-2px);
}

.trust-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    color: var(--ink);
    opacity: .85;
}

.trust-icon svg {
    width: 100%;
    height: 100%;
}

.trust-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.trust-text strong {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--ink);
    font-family: var(--font-body);
}

.trust-text span {
    font-size: 12.5px;
    color: var(--grey-500);
    font-weight: 400;
    line-height: 1.4;
}

.trust-divider {
    width: 1px;
    height: 44px;
    background: rgba(0, 0, 0, .1);
    flex-shrink: 0;
    margin: 0 8px;
}

@media (max-width: 768px) {
    .trust-bar-inner {
        flex-direction: column;
        gap: 0;
        padding: 16px 0;
    }

    .trust-item {
        width: 100%;
        justify-content: flex-start;
        padding: 14px 16px;
    }

    .trust-divider {
        width: 90%;
        height: 1px;
        margin: 0;
        align-self: center;
    }
}

@media (max-width: 480px) {
    .trust-icon {
        width: 40px;
        height: 40px;
    }

    .trust-text strong {
        font-size: 11px;
    }

    .trust-text span {
        font-size: 11.5px;
    }
}

.section1 {
    padding: 100px 0 80px;
    width: 100%;
    background: var(--white);
    overflow: visible;
}

.section1-tight {
    padding-bottom: 0;
}

.section1-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 56px;
    flex-wrap: wrap;
}


.section {
    padding: 120px 6vw 40px;
    max-width: 1440px;
    margin: 0 auto;
}

.section-tight {
    padding-bottom: 0;
}

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 56px;
    flex-wrap: wrap;
}

.section-head.center {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.eyebrow {
    font-family: var(--font-mono);
    font-size: 12.5px;
    letter-spacing: 3px;
    color: var(--accent-ink);
    margin-bottom: 10px;
}

.eyebrow-light {
    color: var(--accent2);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(34px, 5vw, 58px);
    letter-spacing: 1px;
    line-height: 1;
}

.section-desc {
    max-width: 340px;
    color: var(--grey-500);
    font-size: 15px;
    line-height: 1.6;
}

/* reveal on scroll */
.reveal-up {
    opacity: 0;
    transform: translateY(46px);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.reveal-up.in {
    opacity: 1;
    transform: translateY(0);
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .7s ease .2s, transform .7s ease .2s;
}

.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

/* ============ PRODUCT GRID ============ */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 28px;
}

.product-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--grey-100);
    border: 1px solid var(--grey-300);
    transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 50px -22px rgba(0, 0, 0, .25);
}

.pc-media {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.pc-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s var(--ease);
}

.product-card:hover .pc-media img {
    transform: scale(1.08);
}

.pc-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--accent);
    color: var(--black);
    font-family: var(--font-mono);
    font-size: 11px;
    padding: 5px 10px;
    border-radius: 100px;
    z-index: 2;
}

.pc-tag.sale {
    background: var(--black);
}

.pc-quick {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: -60px;
    display: flex;
    gap: 8px;
    transition: bottom .4s var(--ease);
    z-index: 2;
}

.product-card:hover .pc-quick {
    bottom: 12px;
}

.pc-btn {
    flex: 1;
    padding: 11px;
    border-radius: 100px;
    font-size: 12.5px;
    font-weight: 700;
    text-align: center;
    backdrop-filter: blur(6px);
}

.pc-btn.add {
    background: var(--black);
    color: var(--white);
}

.pc-btn.view {
    background: rgba(255, 255, 255, .9);
    color: var(--black);
}

.pc-body {
    padding: 18px;
}

.pc-cat {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--grey-500);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.pc-name {
    font-size: 16px;
    font-weight: 700;
    margin: 5px 0 8px;
}

.pc-price-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.pc-price {
    font-weight: 800;
    font-size: 16px;
}

.pc-old {
    color: var(--grey-500);
    text-decoration: line-through;
    font-size: 13px;
}

.pc-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: var(--grey-500);
    margin-bottom: 10px;
}

.pc-rating .stars {
    color: var(--accent-ink);
    letter-spacing: 1px;
}

.pc-sizes {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.pc-size {
    width: 30px;
    height: 30px;
    border: 1px solid var(--grey-300);
    border-radius: 8px;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: all .25s ease;
}

.pc-size:hover {
    border-color: var(--black);
}

/* ============ EDITORIAL GRID ============ */
.editorial-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    height: 640px;
}

.edit-large {
    grid-row: 1/3;
}

.edit-tile {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: block;
    background-image: var(--img);
    background-size: cover;
    background-position: center;
}

.edit-tile::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, .75), rgba(0, 0, 0, 0) 55%);
    transition: background .4s ease;
}

.edit-tile::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--img);
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transition: transform .8s var(--ease);
    z-index: -1;
}

.edit-tile:hover::after {
    transform: scale(1.1);
}

.edit-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 32px;
    color: var(--white);
    z-index: 2;
}

.edit-tag {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--accent2);
}

.edit-overlay h3 {
    font-family: var(--font-display);
    font-size: clamp(26px, 3vw, 38px);
    margin: 8px 0 14px;
}

.edit-cta {
    font-size: 13px;
    font-weight: 700;
    opacity: 0;
    transform: translateY(10px);
    transition: all .4s var(--ease);
    display: inline-block;
}

.edit-tile:hover .edit-cta {
    opacity: 1;
    transform: translateY(0);
}

@media(max-width:860px) {
    .editorial-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        height: auto;
    }

    .edit-large {
        grid-row: auto;
        height: 360px;
    }

    .edit-tile {
        height: 260px;
    }
}

/* ============ TRENDING TRACK ============ */
.trend-track-wrap {
    overflow: hidden;
    padding: 20px 0 100px;
}

.trend-track {
    display: flex;
    gap: 22px;
    width: max-content;
    animation: trendScroll 34s linear infinite;
    padding: 0 6vw;
}

.trend-track-wrap:hover .trend-track {
    animation-play-state: paused;
}

@keyframes trendScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.trend-card {
    width: 230px;
    flex-shrink: 0;
}

.trend-card .pc-media {
    border-radius: var(--radius-md);
    aspect-ratio: 3/4;
}

.trend-card .pc-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trend-name {
    font-weight: 700;
    font-size: 14px;
    margin-top: 10px;
}

.trend-price {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--accent-ink);
}

/* ============ CATEGORY GRID ============ */
.cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 30px;
}

.cat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    cursor: pointer;
}

.cat-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    transition: transform .5s var(--ease), box-shadow .5s var(--ease);
    box-shadow: 0 20px 40px -18px rgba(0, 0, 0, .3);
}

.cat-circle::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .25);
    transition: background .4s ease;
}

.cat-item:hover .cat-circle {
    transform: scale(1.08) rotate(6deg);
    box-shadow: 0 26px 50px -14px rgba(251, 206, 7, .45);
}

.cat-item:hover .cat-circle::after {
    background: rgba(251, 206, 7, .22);
}

.cat-name {
    font-weight: 700;
    font-size: 14.5px;
}

/* ============ PROMO ============ */
.promo {
    background: var(--black);
    color: var(--white);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 100px 6vw;
    gap: 40px;
    margin: 60px 0;
    position: relative;
    overflow: hidden;
}

.promo::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--grad);
    opacity: .12;
    filter: blur(100px);
    border-radius: 50%;
    top: -100px;
    right: -80px;
}

.promo-title {
    font-family: var(--font-display);
    font-size: clamp(50px, 8vw, 110px);
    line-height: .92;
}

.promo-num {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.promo-desc {
    color: rgba(255, 255, 255, .6);
    margin: 20px 0 30px;
    max-width: 320px;
}

.promo-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.countdown-label {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--accent2);
}

.countdown {
    display: flex;
    gap: 14px;
}

.cd-unit {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--radius-sm);
    padding: 16px 14px;
    text-align: center;
    min-width: 74px;
}

.cd-unit span {
    display: block;
    font-family: var(--font-display);
    font-size: 30px;
}

.cd-unit small {
    font-family: var(--font-mono);
    font-size: 10px;
    color: rgba(255, 255, 255, .5);
    letter-spacing: 1px;
}

@media(max-width:820px) {
    .promo {
        grid-template-columns: 1fr;
    }
}

/* ============ LOOKBOOK ============ */
.lookbook-grid {
    column-count: 3;
    column-gap: 20px;
}

@media(max-width:900px) {
    .lookbook-grid {
        column-count: 2;
    }
}

@media(max-width:560px) {
    .lookbook-grid {
        column-count: 1;
    }
}

.look-item {
    position: relative;
    margin-bottom: 20px;
    border-radius: var(--radius-md);
    overflow: hidden;
    break-inside: avoid;
    cursor: pointer;
}

.look-item img {
    width: 100%;
    display: block;
    transition: transform .6s var(--ease);
}

.look-item:hover img {
    transform: scale(1.06);
}

.look-caption {
    position: absolute;
    left: 14px;
    bottom: 14px;
    color: var(--white);
    font-weight: 700;
    font-size: 14px;
    background: rgba(0, 0, 0, .4);
    backdrop-filter: blur(6px);
    padding: 8px 14px;
    border-radius: 100px;
    opacity: 0;
    transform: translateY(10px);
    transition: all .35s var(--ease);
}

.look-item:hover .look-caption {
    opacity: 1;
    transform: translateY(0);
}

/* ============ ABOUT US (OUR STORY) ============ */
.about-us-section {
    background: var(--white);
    padding: 90px 6vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-us-container {
    max-width: 680px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-us-heading {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 6vw, 4rem);
    font-weight: 400;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 24px;
    letter-spacing: 2px;
}

.about-us-logo {
    width: 80px;
    height: auto;
    margin-bottom: 32px;
    transition: transform 0.4s var(--ease);
}

.about-us-logo:hover {
    transform: scale(1.08);
}

.about-us-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.about-us-subheading {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--black);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-us-content {
    font-family: var(--font-body);
    font-size: 14.5px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 48px;
}

.about-us-content p {
    margin-bottom: 24px;
}

.about-us-content strong {
    color: var(--black);
    font-weight: 600;
}

.about-us-tagline {
    font-size: 16px;
    color: var(--black);
    margin-top: 32px;
    line-height: 1.6;
}

.about-us-badge-box {
    width: 100%;
    border: 1px solid #000;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    background: transparent;
    margin-top: 10px;
    transition: box-shadow 0.3s ease;
}

.about-us-badge-box:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.badge-box-logo {
    width: 60px;
    height: auto;
    margin-bottom: 24px;
}

.badge-box-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.badge-box-text {
    font-family: var(--font-body);
    font-size: 14px;
    color: #333;
    line-height: 1.6;
    max-width: 500px;
    margin-bottom: 24px;
}

.badge-box-socials {
    display: flex;
    align-items: center;
    gap: 20px;
}

.badge-box-socials a {
    color: #000;
    transition: color 0.25s var(--ease), transform 0.2s var(--ease);
}

.badge-box-socials a:hover {
    color: var(--accent-ink);
    transform: scale(1.15);
}

/* ============ REVIEWS ============ */
.reviews-section {
    padding-bottom: 0;
}

.reviews-track-wrap {
    overflow: hidden;
    padding-bottom: 100px;
}

.reviews-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: trendScroll 40s linear infinite;
}

.reviews-track-wrap:hover .reviews-track {
    animation-play-state: paused;
}

.review-card {
    width: 320px;
    flex-shrink: 0;
    padding: 30px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, .5);
    backdrop-filter: blur(10px);
    border: 1px solid var(--grey-300);
    box-shadow: 0 30px 50px -30px rgba(0, 0, 0, .2);
    transform: perspective(800px) rotateY(0deg);
    transition: transform .5s var(--ease);
}

.review-card:hover {
    transform: perspective(800px) rotateY(-4deg) translateY(-6px);
}

.review-stars {
    color: var(--accent-ink);
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.review-text {
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--ink);
    margin-bottom: 20px;
}

.review-person {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--grad);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--white);
    font-size: 14px;
}

.review-name {
    font-weight: 700;
    font-size: 13.5px;
}

.review-loc {
    font-size: 12px;
    color: var(--grey-500);
}

/* ============ INSTAGRAM ============ */
.insta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 6px;
}

.insta-item {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    cursor: pointer;
}

.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s var(--ease);
}

.insta-item:hover img {
    transform: scale(1.1);
}

.insta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-weight: 700;
    opacity: 0;
    transition: opacity .35s ease;
}

.insta-item:hover .insta-overlay {
    opacity: 1;
}

.insta-overlay svg {
    width: 18px;
    height: 18px;
}

/* ============ NEWSLETTER ============ */
.newsletter {
    padding: 60px 6vw 140px;
}

.newsletter-card {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background: var(--black);
    color: var(--white);
    border-radius: var(--radius-xl);
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
}

.newsletter-card::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: var(--grad);
    opacity: .15;
    filter: blur(120px);
    border-radius: 50%;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
}

.newsletter-card h2 {
    font-family: var(--font-display);
    font-size: clamp(30px, 4vw, 48px);
    position: relative;
}

.newsletter-card p {
    color: rgba(255, 255, 255, .6);
    margin: 14px 0 34px;
    position: relative;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

.field-wrap {
    position: relative;
    min-width: 280px;
}

.field-wrap input {
    width: 100%;
    padding: 17px 20px;
    border-radius: 100px;
    border: 1.5px solid rgba(255, 255, 255, .2);
    background: rgba(255, 255, 255, .06);
    color: var(--white);
    font-size: 14px;
    outline: none;
    transition: border-color .3s ease;
}

.field-wrap input:focus {
    border-color: var(--accent2);
}

.field-wrap label {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, .45);
    font-size: 14px;
    pointer-events: none;
    transition: all .25s ease;
}

.field-wrap input:focus+label,
.field-wrap input:not(:placeholder-shown)+label {
    top: -9px;
    left: 16px;
    font-size: 11px;
    background: var(--black);
    padding: 0 8px;
    color: var(--accent2);
}

.newsletter-note {
    margin-top: 16px;
    font-size: 13px;
    color: var(--accent2);
    min-height: 16px;
}

.crafted-in-india-bar {
    background: #FAF5EC;
       padding: 28px 6vw;
    display: flex;
    justify-content: center;
    /* Center align on all devices */
    align-items: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.crafted-in-india-bar span {
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 500;
    color: #3b3c54;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

@media (max-width: 768px) {
    .crafted-in-india-bar {
        justify-content: center;
        /* Center align on mobile */
        padding: 12px 6vw;
    }
}

/* ============ FOOTER ============ */
.footer {
    background-color: var(--yellow);
    background-image: url('assets/footer_bg_tile.png');
    background-repeat: repeat;
    background-blend-mode: multiply;
    color: var(--black);
    padding: 0px 0 60px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 52px;
    align-items: start;
    padding: 100px 6vw 64px 6vw;
}

.footer-brand-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-brand-col .nav-logo img {
    height: 48px;
    width: auto;
    margin-bottom: 0;
}

.footer-heading {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    font-family: var(--font-body);
    letter-spacing: 0.5px;
}

.footer-text {
    font-size: 14px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.7;
    margin-bottom: 28px;
}

.footer-link-email {
    color: rgba(0, 0, 0, 0.7);
    text-decoration: underline;
    transition: color 0.25s ease;
}

.footer-link-email:hover {
    color: #000;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-col a {
    display: block;
    color: rgba(0, 0, 0, 0.7);
    font-size: 14px;
    font-family: var(--font-body);
    font-weight: 400;
    margin-bottom: 12px;
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-col a:hover {
    color: #000;
    text-decoration: underline;
}

.footer-illustration {
    width: 100%;
    height: 120px;
    position: relative;
    display: flex;
    justify-content: center;
    margin: 40px 0 20px;
    overflow: visible;
}

.footer-illustration img {
    width: min(100%, 980px);
    height: auto;
    display: block;
    mix-blend-mode: multiply;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 8;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding: 18px 6vw 0 6vw;
    color: rgba(0, 0, 0, 0.6);
    font-size: 13px;
    font-family: var(--font-body);
    flex-wrap: wrap;
    gap: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

@media(max-width:860px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 26px 22px;
        padding-bottom: 48px;
    }

    .footer-illustration {
        height: 100px;
        margin: 30px 0 15px;
    }

    .footer-illustration img {
        width: min(100%, 760px);
    }
}

@media(max-width:520px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 18px;
        padding-bottom: 36px;
    }

    .footer-brand-col {
        gap: 10px;
    }

    .footer-brand-col .nav-logo img {
        margin-bottom: 0;
    }

    .footer-illustration {
        height: 80px;
        margin: 20px 0 10px;
    }

    .footer-bottom {
        padding-top: 14px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* ============ OVERLAYS ============ */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, .6);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s ease;
}

.overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.overlay-right {
    justify-content: flex-end;
    align-items: stretch;
}

.search-panel {
    margin-top: 100px;
    width: min(700px, 90%);
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    position: relative;
    transform: translateY(-30px);
    transition: transform .4s var(--ease);
    max-height: 70vh;
    display: flex;
    flex-direction: column;
}

.overlay.open .search-panel {
    transform: translateY(0);
}

#searchInput {
    width: 100%;
    padding: 18px 50px 18px 20px;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--grey-300);
    font-size: 16px;
    outline: none;
}

#searchInput:focus {
    border-color: var(--accent-ink);
}

.overlay-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--grey-100);
    font-size: 14px;
    transition: transform .3s ease, background .3s ease;
}

.overlay-close:hover {
    transform: rotate(90deg);
    background: var(--grey-300);
}

.search-results {
    margin-top: 16px;
    overflow-y: auto;
}

.sr-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px;
    border-radius: var(--radius-sm);
    transition: background .2s ease;
    cursor: pointer;
}

.sr-item:hover {
    background: var(--grey-100);
}

.sr-item img {
    width: 50px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.sr-name {
    font-weight: 700;
    font-size: 14px;
}

.sr-price {
    font-size: 12.5px;
    color: var(--grey-500);
}

.sr-empty {
    padding: 30px;
    text-align: center;
    color: var(--grey-500);
    font-size: 14px;
}

.side-panel {
    width: min(420px, 92vw);
    height: 100%;
    background: var(--white);
    padding: 30px;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform .45s var(--ease);
    overflow-y: auto;
}

.overlay-right.open .side-panel {
    transform: translateX(0);
}

.side-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.side-head h3 {
    font-family: var(--font-display);
    font-size: 24px;
}

.cart-items {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow-y: auto;
}

.cart-item {
    display: flex;
    gap: 14px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--grey-300);
}

.cart-item img {
    width: 66px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
}

.ci-info {
    flex: 1;
}

.ci-name {
    font-weight: 700;
    font-size: 14px;
}

.ci-meta {
    font-size: 12px;
    color: var(--grey-500);
    margin: 3px 0 8px;
}

.ci-qty {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ci-qty button {
    width: 24px;
    height: 24px;
    border: 1px solid var(--grey-300);
    border-radius: 6px;
    font-weight: 700;
}

.ci-price {
    font-weight: 800;
    font-size: 14px;
    white-space: nowrap;
}

.ci-remove {
    color: var(--accent-ink);
    font-size: 12px;
    font-weight: 700;
    margin-top: 8px;
    display: inline-block;
}

.cart-empty,
.wish-empty {
    padding: 60px 10px;
    text-align: center;
    color: var(--grey-500);
    font-size: 14px;
}

.cart-summary {
    border-top: 1px solid var(--grey-300);
    padding-top: 20px;
    margin-top: 16px;
}

.promo-row {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
}

.promo-row input {
    flex: 1;
    padding: 12px 14px;
    border-radius: 100px;
    border: 1.5px solid var(--grey-300);
    font-size: 13px;
    outline: none;
}

.promo-row input:focus {
    border-color: var(--accent-ink);
}

.btn-mini {
    padding: 12px 18px;
    border-radius: 100px;
    background: var(--black);
    color: var(--white);
    font-size: 12.5px;
    font-weight: 700;
}

.promo-msg {
    font-size: 12px;
    color: var(--accent-ink);
    min-height: 16px;
    margin-bottom: 10px;
}

.shipping-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13.5px;
    margin-bottom: 14px;
}

.shipping-row select {
    padding: 8px 10px;
    border-radius: 8px;
    border: 1.5px solid var(--grey-300);
    font-size: 12.5px;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    padding: 6px 0;
    color: var(--grey-500);
}

.summary-line.total {
    color: var(--black);
    font-weight: 800;
    font-size: 17px;
    border-top: 1px solid var(--grey-300);
    margin-top: 8px;
    padding-top: 14px;
}

.side-panel .btn {
    margin-top: 16px;
}

.qv-panel {
    margin: auto;
    width: min(860px, 92vw);
    max-height: 86vh;
    overflow-y: auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    transform: scale(.92);
    transition: transform .4s var(--ease);
    position: relative;
}

.overlay.open .qv-panel {
    transform: scale(1);
}

.qv-img {
    height: 100%;
    min-height: 340px;
    background-size: cover;
    background-position: center;
}

.qv-body {
    padding: 36px;
}

.qv-cat {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--grey-500);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.qv-name {
    font-family: var(--font-display);
    font-size: 30px;
    margin: 10px 0;
}

.qv-price {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 14px;
}

.qv-desc {
    color: var(--grey-500);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 22px;
}

.qv-label {
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: var(--grey-500);
}

.qv-sizes {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.qv-size {
    width: 42px;
    height: 42px;
    border: 1.5px solid var(--grey-300);
    border-radius: 10px;
    font-weight: 700;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .25s ease;
}

.qv-size:hover,
.qv-size.active {
    border-color: var(--black);
    background: var(--black);
    color: var(--white);
}

.qv-colors {
    display: flex;
    gap: 10px;
    margin-bottom: 26px;
}

.qv-color {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform .2s ease, border-color .2s ease;
}

.qv-color:hover,
.qv-color.active {
    transform: scale(1.15);
    border-color: var(--black);
}

.qv-qty {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.qv-qty button {
    width: 34px;
    height: 34px;
    border: 1.5px solid var(--grey-300);
    border-radius: 8px;
    font-weight: 800;
    font-size: 16px;
}

@media(max-width:700px) {
    .qv-panel {
        grid-template-columns: 1fr;
    }

    .qv-img {
        min-height: 260px;
    }
}

/* ============ TOAST ============ */
.toast {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translate(-50%, 30px);
    background: var(--black);
    color: var(--white);
    padding: 16px 26px;
    border-radius: 100px;
    font-size: 13.5px;
    font-weight: 600;
    z-index: 3000;
    opacity: 0;
    pointer-events: none;
    transition: all .4s var(--ease);
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 20px 40px -14px rgba(0, 0, 0, .5);
}

.toast.show {
    opacity: 1;
    transform: translate(-50%, 0);
}

.toast::before {
    content: '✓';
    color: var(--accent2);
    font-weight: 900;
}

/* ============ MAGNETIC ============ */
.magnetic {
    will-change: transform;
}

/* ============ RESPONSIVE TYPE ============ */
@media(max-width:640px) {
    .section {
        padding: 80px 6vw 20px;
    }

    .why {
        padding: 60px 6vw;
    }

    /* navbar border-radius override removed to keep full-width flat styling */
}

/* ============ REELS STYLES ============ */
/* ---- Instagram Bar under Reels Title ---- */
.reels-insta-bar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
    background: transparent;
    padding: 8px 16px;
    border-radius: 100px;
}

.reels-insta-left {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #111;
}

.reels-insta-left svg {
    stroke: #111;
}

.reels-insta-handle {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #111;
    text-transform: uppercase;
}

.reels-insta-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #111;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 6px 14px;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid #111;
}

.reels-insta-follow-btn:hover {
    background: #ffcc00;
    color: #111;
    border-color: #ffcc00;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .reels-heading {
        font-size: clamp(2rem, 8vw, 3.5rem);
        letter-spacing: -0.5px;
    }

    .reels-insta-bar {
        flex-direction: column;
        gap: 12px;
        padding: 12px 16px;
        border-radius: 16px;
    }

    .reels-insta-left {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }

    .reels-insta-handle {
        font-size: 18px;
        letter-spacing: 0.5px;
    }

    .reels-insta-follow-btn {
        width: 100%;
        justify-content: center;
        padding: 10px 20px;
        font-size: 13px;
    }
}

.reels-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 60px 0 80px;
}

.reels-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: max-content;
    gap: 24px;
    transition: transform 0.55s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

/* ============ REEL CARDS ============ */
.reel-card {
    width: 420px;
    flex-shrink: 0;
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    transition: transform 0.55s cubic-bezier(0.25, 1, 0.5, 1),
        opacity 0.55s ease;
    transform-origin: center center;
    opacity: 0.45;
    transform: scale(0.75);
    cursor: pointer;
    user-select: none;
    position: relative;
}

/* ACTIVE / centre card */
.reel-card.active {
    transform: scale(1);
    opacity: 1;
    z-index: 10;
}

/* Adjacent cards */
.reel-card.prev,
.reel-card.next {
    opacity: 0.7;
    transform: scale(0.75);
    z-index: 5;
}

/* Far cards */
.reel-card.far-prev,
.reel-card.far-next {
    opacity: 0.35;
    transform: scale(0.75);
}

.reel-video {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    border-radius: 22px;
    overflow: hidden;
    background: #111;
    box-shadow: 0 16px 40px rgba(0, 0, 0, .22);
}

/* Active card highlight ring */
.reel-card.active .reel-video {
    box-shadow: 0 24px 60px rgba(0, 0, 0, .32),
        0 0 0 2px rgba(251, 206, 7, .2);
    border-radius: 24px;
}

.reel-video-element {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #000;
    display: block;
    pointer-events: none;
}

/* Sound badge overlay on card */
.reel-sound-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 12;
    transition: all 0.2s ease;
    backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
}

.reel-card.active .reel-sound-btn {
    opacity: 1;
    pointer-events: auto;
}

.reel-sound-btn:hover {
    background: rgba(0, 0, 0, 0.85);
    transform: scale(1.1);
}

/* Nav buttons */
.reels-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .95);
    color: var(--black);
    box-shadow: 0 8px 28px rgba(0, 0, 0, .25);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    border: none;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.reels-nav-btn:hover {
    transform: translateY(-50%) scale(1.12);
    background: var(--black);
    color: var(--white);
    box-shadow: 0 12px 36px rgba(0, 0, 0, .4);
}

.reels-nav-btn svg {
    width: 20px;
    height: 20px;
}

.reels-nav-btn.prev {
    left: clamp(8px, 2vw, 32px);
}

.reels-nav-btn.next {
    right: clamp(8px, 2vw, 32px);
}

/* Clip overflow */
#reels {
    overflow: hidden;
}

/* Section title */
#reels .section-head {
    padding: 0 6vw;
    text-align: center;
    margin-bottom: 48px;
}


/* ============ SEPARATE REELS PAGE STYLES ============ */
.reels-page-hero {
    padding: 80px 6vw 40px;
    text-align: center;
    background: var(--white);
}

.reels-grid-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 80px;
}

.reels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media(max-width: 1024px) {
    .reels-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media(max-width: 600px) {
    .reels-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.reels-grid-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    position: relative;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease;
}

.reels-grid-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.reels-grid-video-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    background: #000;
}

.reels-grid-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Hover play badge indicator */
.reels-grid-play-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 10;
}

.reels-grid-card:hover .reels-grid-play-badge {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.reels-grid-play-badge svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.reels-grid-sound-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 12;
    transition: all 0.2s ease;
    backdrop-filter: blur(4px);
}

.reels-grid-sound-btn:hover {
    background: rgba(0, 0, 0, 0.85);
    transform: scale(1.1);
}


/* ============ FULLSCREEN REELS LIGHTBOX (IMMERSIVE VIEWER) ============ */
.reels-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

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

.lightbox-close-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10020;
    transition: background 0.2s, transform 0.2s;
}

.lightbox-close-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.lightbox-slider-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-wrapper {
    display: flex;
    align-items: center;
    height: 100%;
    width: max-content;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.lightbox-slide {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lightbox-video-frame {
    height: 85vh;
    aspect-ratio: 9 / 16;
    max-height: 85vh;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    background: #111;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.8);
}

@media(max-height: 700px) {
    .lightbox-video-frame {
        height: 75vh;
    }
}

.lightbox-video-element {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
}

.lightbox-sound-btn {
    position: absolute;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10010;
    transition: all 0.2s ease;
    backdrop-filter: blur(4px);
}

.lightbox-sound-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.lightbox-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10015;
    transition: all 0.2s ease;
}

.lightbox-nav-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-50%) scale(1.08);
}

.lightbox-nav-btn svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2.5;
}

.lightbox-nav-btn.prev {
    left: 40px;
}

.lightbox-nav-btn.next {
    right: 40px;
}

@media(max-width: 768px) {
    .lightbox-video-frame {
        height: 100vh;
        width: 100vw;
        border-radius: 0;
    }

    .lightbox-nav-btn {
        display: none;
        /* Swipe on mobile */
    }
}

/* Active nav-link styles */
.nav-link.active {
    color: var(--white);
}

.nav-link.active::after {
    transform: scaleX(1);
}

.mnav-link.active {
    background: rgba(255, 255, 255, .12);
    color: var(--accent);
}

@media(max-width: 768px) {
    .reels-slider-container {
        padding: 40px 0 50px;
    }

    .reel-card {
        width: 260px;
    }

    .reel-card.active {
        transform: scale(1);
    }

    .reel-card.prev,
    .reel-card.next {
        transform: scale(0.75);
    }

    .reels-nav-btn {
        width: 36px;
        height: 36px;
    }

    .reels-nav-btn svg {
        width: 15px;
        height: 15px;
    }
}

@media(max-width: 480px) {
    .reel-card {
        width: 200px;
    }
}

/*============Boys collection============*/
/* ==========================================
   BOYS COLLECTION
========================================== */

.boys-collection {
    width: 100%;
    padding: 90px 6%;
    background: #fff;
}

.boys-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 45px;
}

.boys-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: #111;
    margin: 0;
    position: relative;
    top: -50px
}

.boys-btn {
    display: block;
    width: fit-content;
    text-decoration: none;
    color: #111;
    border: 2px solid #111;
    padding: 14px 32px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: .35s;
    text-align: center;
    margin: 20px auto;
}

@media(min-width: 1024px) {
    .boys-btn {
        margin: 20px 6% 20px auto;
    }
}

.boys-btn:hover {
    background: #111;
    color: #fff;
}

.boys-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.boys-card {
    background: #f7f7f7;
    overflow: hidden;
    position: relative;
    transition: .4s;
}

.boys-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .12);
}

.boys-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: #111;
    color: #fff;
    padding: 8px 16px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 5;
}

.boys-card img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    transition: .5s;
}

.boys-card:hover img {
    transform: scale(1.08);
}

.boys-card h3 {
    margin: 22px 20px 10px;
    font-size: 18px;
    color: #111;
    font-weight: 700;
}

.boys-price {
    margin: 0 20px 20px;
    font-size: 20px;
    font-weight: 700;
    color: #111;
}

.boys-price span {
    margin-left: 10px;
    color: #999;
    font-size: 16px;
    text-decoration: line-through;
}

.boys-card button {
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    height: 50px;
    border: none;
    background: #111;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}

.boys-card button:hover {
    background: #333;
}

/* ==========================
   Tablet
========================== */

@media (max-width:992px) {

    .boys-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

/* ==========================
   Mobile
========================== */

@media (max-width:768px) {

    .boys-collection {
        padding: 70px 20px;
    }

    .boys-header {
        flex-direction: column;
        gap: 18px;
        text-align: center;
    }

    .boys-header h2 {
        font-size: 32px;
    }

    .boys-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .boys-btn {
        padding: 12px 26px;
    }

    .boys-card h3 {
        font-size: 17px;
    }

    .boys-price {
        font-size: 18px;
    }

}

/*============girls fashion cart========*/
.explore-girls-wrap {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    background: transparent;
    padding: 0;
    margin: 0;
    border: none;
    box-shadow: none;
    z-index: 10;
}

.explore-girls-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 34px;

    background: #ffb700;
    color: #000000;

    text-decoration: none;
    font-weight: 700;
    letter-spacing: .5px;

    border-radius: 8px;
    transition: .35s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
}

.explore-girls-btn:hover {
    background: #fefefd;
    color: #111;
}

.explore-girls-btn svg {
    transition: .3s;
}

.explore-girls-btn:hover svg {
    transform: translateX(5px);
}

.girls-collection {
    padding: 90px 6%;
    background: #fff;
}

.girls-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 45px;
}

.girls-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: #111;
    position: relative;
    top: -50px;
}

.girls-btn {
    display: block;
    width: fit-content;
    padding: 12px 28px;
    border: 2px solid #111;
    color: #111;
    text-decoration: none;
    font-weight: 700;
    transition: .35s;
    text-align: center;
    margin: 20px auto;
}

@media(min-width: 1024px) {
    .girls-btn {
        margin: 20px 6% 20px auto;
    }
}

.girls-btn:hover {
    background: #111;
    color: #fff;
}

.girls-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

.girls-card {
    position: relative;
    overflow: hidden;
    background: #f8f8f8;
    transition: .4s;
}

.girls-card:hover {
    transform: translateY(-10px);
}

.girls-card img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    transition: .5s;
}

.girls-card:hover img {
    transform: scale(1.08);
}

.girls-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: #111;
    color: #fff;
    padding: 7px 16px;
    font-size: 12px;
    letter-spacing: 1px;
    z-index: 2;
}

.girls-card h3 {
    padding: 22px 22px 10px;
    font-size: 20px;
    color: #111;
}

.girls-price {
    padding: 0 22px;
    color: #111;
    font-weight: 700;
    font-size: 20px;
}

.girls-price span {
    margin-left: 10px;
    color: #888;
    text-decoration: line-through;
    font-size: 16px;
}

.girls-card button {
    width: calc(100% - 44px);
    margin: 22px;
    height: 52px;
    border: none;
    background: #111;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
    transition: .35s;
}

.girls-card button:hover {
    background: #444;
}

@media(max-width:768px) {

    .girls-header {
        flex-direction: column;
        gap: 18px;
    }

    .girls-header h2 {
        font-size: 32px;
    }

}

/* ============ MOBILE NAVIGATION & HAMBURGER ============ */
/* Hamburger for mobile */
.hn-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
}

.hn-hamburger span {
    width: 20px;
    height: 2px;
    background: #000;
    border-radius: 2px;
    transition: transform .3s ease, opacity .3s ease;
}

.hn-hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hn-hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hn-hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Responsive */
@media (max-width: 1023px) {
    .hn-hamburger {
        display: flex;
    }
}


/* Mobile: hamburger | centred logo | actions */
@media (max-width: 768px) {
    .navbar {
        position: fixed;
        top: var(--marquee-h);
        left: 0;
        width: 100%;
        box-sizing: border-box;
    }

    /* Show hamburger */
    .hn-hamburger {
        display: flex;
        order: 1;
    }

    /* Absolutely centre the logo */
    .navbar .nav-logo {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .navbar .nav-logo img {
        height: 48px;
        width: auto;
    }

    /* Push icons to far right */
    .nav-actions {
        margin-left: auto;
        order: 3;
        gap: 2px;
        display: flex;
        align-items: center;
    }

    .search-box {
        width: 40px;
        height: 40px;
        justify-content: center;
        cursor: pointer;
        border-radius: 50%;
        transition: background .25s ease, transform .25s ease;
    }

    .search-box:hover {
        background: rgba(0, 0, 0, 0.05);
        transform: translateY(-2px);
    }

    .search-box input {
        display: none;
    }

    .search-box svg {
        position: static;
        width: 20px;
        height: 20px;
        stroke: #3b3c54;
        pointer-events: auto;
    }
}

@media (max-width: 480px) {
    .navbar .nav-logo img {
        height: 38px;
        width: auto;
    }
}

/* ============ ACCOUNT OVERLAY & LOGIN/SIGNUP CARD ============ */
#accountOverlay {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 0;
    overflow-y: auto;
    background: var(--white);
    --bg-card: #ffffff;
    --ink: #0a0a0a;
    --ink-soft: #6b6b6b;
    --yellow: #F5C518;
    --yellow-deep: #E0AE00;
    --line: #ececec;
    --shadow-sm: 0 2px 8px rgba(10, 10, 10, 0.05);
    --shadow-md: 0 12px 32px rgba(10, 10, 10, 0.08);
    --shadow-lg: 0 24px 60px rgba(10, 10, 10, 0.12);
    --radius: 16px;
    --ease: cubic-bezier(.22, .61, .36, 1);
}

#accountOverlay::before {
    content: none;
}

#accountOverlay .stage {
    position: relative;
    width: 100%;
    max-width: 440px;
    z-index: 1;
    margin: auto;
    padding: 40px 20px;
}

#accountOverlay .logo-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 28px;
    animation: dropIn .7s var(--ease) both;
}

#accountOverlay .logo-mark {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    margin-bottom: 14px;
    position: relative;
}

#accountOverlay .logo-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border-radius: inherit;
    padding: 6px;
}

#accountOverlay .logo-mark::after {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: 21px;
    border: 2px solid var(--yellow);
    opacity: .9;
}

#accountOverlay .logo-mark span {
    font-family: 'Georgia', serif;
    font-weight: 700;
    font-size: 26px;
    color: var(--yellow);
    letter-spacing: 1px;
    line-height: 1;
}

#accountOverlay .logo-name {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--ink);
}

#accountOverlay .logo-name em {
    font-style: normal;
    color: var(--yellow-deep);
}

#accountOverlay .card {
    background: var(--bg-card);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 40px 36px 32px;
    position: relative;
    overflow: hidden;
    animation: cardIn .6s var(--ease) both .1s;
    width: 100%;
}

@media (max-width: 480px) {
    #accountOverlay .card {
        padding: 32px 22px 26px;
    }
}

#accountOverlay .panel {
    display: none;
}

#accountOverlay .panel.active {
    display: block;
    animation: fadeSwap .45s var(--ease) both;
}

#accountOverlay .headline {
    font-size: 26px;
    font-weight: 700;
    text-align: center;
    margin: 0 0 6px;
    letter-spacing: -0.02em;
    color: var(--ink);
    /* Reset global gradient/animation */
    font-family: 'Inter', sans-serif;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
    animation: none;
    text-transform: none;
    font-style: normal;
}

#accountOverlay .subline {
    font-size: 14.5px;
    color: var(--ink-soft);
    text-align: center;
    margin: 0 0 28px;
    /* Reset global gradient/animation */
    font-family: 'Inter', sans-serif;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
    animation: none;
    text-transform: none;
    font-style: normal;
    font-weight: 400;
    letter-spacing: normal;
}

#accountOverlay .field {
    margin-bottom: 18px;
    position: relative;
}

#accountOverlay .field label {
    display: block;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: .02em;
    margin-bottom: 7px;
    color: var(--ink);
    text-align: left;
}

#accountOverlay .input-shell {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

#accountOverlay .field input {
    width: 100%;
    padding: 13px 16px;
    font-size: 14.5px;
    border-radius: 12px;
    border: 1.5px solid var(--line);
    background: #fbfbfb;
    color: var(--ink);
    outline: none;
    transition: border-color .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
    font-family: inherit;
}

#accountOverlay .field input::placeholder {
    color: #b7b7b7;
}

#accountOverlay .field input:focus {
    border-color: var(--yellow);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(245, 197, 24, 0.18);
}

#accountOverlay .field input.has-toggle {
    padding-right: 44px;
}

#accountOverlay .toggle-eye {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9a9a9a;
    transition: color .2s var(--ease);
}

#accountOverlay .toggle-eye:hover {
    color: var(--ink);
}

#accountOverlay .toggle-eye svg {
    width: 19px;
    height: 19px;
    fill: none;
}

#accountOverlay .row-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 2px 0 22px;
    font-size: 13px;
}

#accountOverlay .checkbox-line {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    cursor: pointer;
    user-select: none;
    color: var(--ink-soft);
    font-size: 13px;
    line-height: 1.5;
}

#accountOverlay .checkbox-line input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    min-width: 18px;
    border-radius: 5px;
    border: 1.6px solid #d3d3d3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color .2s var(--ease), background .2s var(--ease);
    position: relative;
    top: 1px;
    margin: 0;
}

#accountOverlay .checkbox-line input[type="checkbox"]:checked {
    background: var(--yellow);
    border-color: var(--yellow);
}

#accountOverlay .checkbox-line input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 1.5px;
    width: 5px;
    height: 9px;
    border: solid var(--ink);
    border-width: 0 2px 2px 0;
    transform: rotate(40deg);
}

#accountOverlay .link {
    color: var(--ink);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1.5px solid var(--yellow);
    padding-bottom: 1px;
    transition: opacity .2s var(--ease);
}

#accountOverlay .link:hover {
    opacity: .65;
}

#accountOverlay .terms-text a {
    color: var(--ink);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: var(--yellow);
    text-underline-offset: 2px;
}

#accountOverlay .btn-primary {
    width: 100%;
    padding: 14px 16px;
    border: none;
    border-radius: 12px;
    background: var(--ink);
    color: var(--yellow);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .02em;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
    position: relative;
    overflow: hidden;
    margin: 0;
}

#accountOverlay .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    background: #161616;
    color: var(--yellow);
}

#accountOverlay .btn-primary:active {
    transform: translateY(0);
}

#accountOverlay .divider {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 24px 0;
    color: #b7b7b7;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .12em;
}

#accountOverlay .divider::before,
#accountOverlay .divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--line);
}

#accountOverlay .btn-google {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12.5px 16px;
    border-radius: 12px;
    border: 1.5px solid var(--line);
    background: #fff;
    color: var(--ink);
    font-size: 14.5px;
    font-weight: 600;
    cursor: pointer;
    transition: border-color .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease);
}

#accountOverlay .btn-google:hover {
    border-color: #d8d8d8;
    box-shadow: var(--shadow-sm);
    transform: translateY(-1px);
}

#accountOverlay .btn-google svg {
    width: 18px;
    height: 18px;
}

#accountOverlay .switch-line {
    text-align: center;
    margin-top: 26px;
    font-size: 13.5px;
    color: var(--ink-soft);
}

#accountOverlay footer .foot-links a {
    color: #8a8a8a;
    text-decoration: none;
    margin: 0 4px;
    transition: color .2s var(--ease);
}

#accountOverlay footer .foot-links a:hover {
    color: var(--ink);
}

#accountOverlay footer .copyright {
    margin-top: 6px;
}

/* Keyframe definitions */
@keyframes cardIn {
    from {
        opacity: 0;
        transform: translateY(18px) scale(.985);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes dropIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeSwap {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============ REELS LUXURY HEADING ============ */
.reels-eyebrow {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent-ink);
    margin-bottom: 12px;
    opacity: 0.8;
}

.reels-heading {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 7vw, 6rem);
    font-weight: 400;
    letter-spacing: -1px;
    line-height: 1;
    text-transform: uppercase;
    background: linear-gradient(120deg,
            #8a6d00 0%,
            #FBCE07 30%,
            #FFE566 50%,
            #FBCE07 70%,
            #8a6d00 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: luxuryShimmer 4s linear infinite;
    position: relative;
    display: inline-block;
}

.reels-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--grad);
    border-radius: 2px;
    box-shadow: 0 0 12px rgba(251, 206, 7, 0.6);
    animation: luxuryLineGlow 2.5s ease-in-out infinite alternate;
}

@keyframes luxuryShimmer {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

@keyframes luxuryLineGlow {
    from {
        box-shadow: 0 0 8px rgba(251, 206, 7, 0.4);
        opacity: 0.7;
    }

    to {
        box-shadow: 0 0 22px rgba(251, 206, 7, 0.9);
        opacity: 1;
    }
}

.center {
    text-align: center;
    align-items: center;
}

.section-head {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
    padding: 0 20px;
}

/* ============ CATEGORIES SECTION ============ */
.categories-section {
    padding: 60px 4% 0 4%;
    background: var(--white);
    overflow: hidden;
}

.categories-header {
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.categories-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--black);
    text-transform: capitalize;
    margin-bottom: 8px;
}

.category-line {
    width: 60px;
    height: 1px;
    background: var(--black);
    opacity: 0.6;
    margin-bottom: 25px;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.cat-tab-btn {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    color: rgba(0, 0, 0, 0.4);
    padding: 8px 24px;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.cat-tab-btn.active {
    color: var(--black);
    border-color: var(--black);
}

.cat-tab-btn:hover {
    color: var(--black);
}

.categories-grid {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    width: 100%;
}

.categories-grid.active {
    display: grid;
    animation: fadeUpGrid 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes fadeUpGrid {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.category-card {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    cursor: pointer;
    background: var(--black);
    border-radius: var(--radius-md);
    /* Smooth rounded corners matching the design language */
}

.category-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 1.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.75) 0%,
            rgba(0, 0, 0, 0.25) 45%,
            rgba(0, 0, 0, 0) 100%);
    z-index: 1;
    transition: opacity 0.5s ease;
}

.category-content {
    position: absolute;
    bottom: 45px;
    left: 0;
    right: 0;
    text-align: center;
    color: var(--white);
    z-index: 2;
    padding: 0 20px;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.category-content h3 {
    font-family: var(--font-body);
    font-size: clamp(16px, 2.5vw, 21px);
    font-weight: 600;
    letter-spacing: 3px;
    margin: 0;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.category-content p {
    font-family: var(--font-body);
    font-size: clamp(10px, 1.5vw, 12px);
    font-weight: 500;
    letter-spacing: 2px;
    opacity: 0.9;
    text-transform: uppercase;
    color: var(--accent2);
    margin: 0;
}

.explore-link {
    font-family: var(--font-body);
    font-size: clamp(16px, 2.5vw, 21px);
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--white);
    text-decoration: none;
    border-bottom: 2px solid var(--white);
    padding-bottom: 4px;
    transition: all 0.4s ease;
    pointer-events: auto;
}

.explore-link:hover {
    color: var(--accent2);
    border-color: var(--accent2);
    letter-spacing: 4px;
}

/* Hover Zoom Effect */
.category-card:hover .category-img {
    transform: scale(1.06);
}

.category-card:hover .category-overlay {
    opacity: 0.85;
}

/* Responsive Rules */
@media (max-width: 900px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }

    .category-card {
        aspect-ratio: 4 / 5;
    }

    .categories-header {
        margin-bottom: 30px;
    }
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
}

.section2 {
    max-width: 1900px;
    margin: 0 auto;
    padding: 40px 40px 60px;
    position: relative;
}

.header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.header-row h2 {
    font-size: 32px;
    font-weight: 800;
    margin: 0;
    color: #111;
}

.shop-all-btn {
    border: 1px solid #111;
    background: #fff;
    padding: 10px 22px;
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 600;
    cursor: pointer;
}

.carousel-wrapper {
    position: relative;
}

.carousel-track {
    display: flex;
    gap: 24px;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.product-card {
    flex: 0 0 calc(20% - 20px);
    position: relative;
    text-align: left;
}

.badge {
    position: absolute;
    top: -9px;
    right: 0;
    background: #111;
    color: #fff;
    font-size: 11px;
    letter-spacing: -11px;
    font-weight: 600;
    padding: 6px 12px;
    z-index: 2;
}

.product-img-wrap {
    background: #f2f2f2;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    margin-bottom: 16px;
}

.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-title {
    font-size: 15px;
    color: #111;
    margin: 0 0 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.price-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.price-current {
    color: #c0392b;
    font-weight: 700;
    font-size: 15px;
}

.price-original {
    color: #999;
    text-decoration: line-through;
    font-size: 14px;
}

.discount-tag {
    background: #c0392b;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 3px 8px;
}

.add-to-cart {
    width: 100%;
    background: #111;
    color: #fff;
    border: none;
    padding: 14px 0;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.add-to-cart:hover {
    background: #333;
}

.nav-btn {
    position: absolute;
    top: calc(50% - 60px);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    border: none;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
}

.nav-prev {
    left: -10px;
}

.nav-next {
    right: -10px;
}

.dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 30px;
}

.dot {
    width: 20px;
    height: 4px;
    background: #ddd;
    cursor: pointer;
}

.dot.active {
    background: #111;
}

/*============ EDITORIAL SPLIT SECTION ============*/
.editorial-split {
    padding: 80px 4% 60px;
    background: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.editorial-intro {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
    width: 100%;
}

.editorial-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #111;
    margin-bottom: 18px;
}

.editorial-intro p {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 24px;
    line-height: 1.6;
    color: #2b2b2b;
    font-weight: 500;
    letter-spacing: 0.2px;
}

.editorial-grid-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    width: 100%;
    max-width: 1000px;
    align-items: stretch;
}

@media (max-width: 768px) {
    .editorial-grid-two {
        grid-template-columns: 1fr;
    }
}

.editorial-card {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    cursor: pointer;
    border-radius: 8px;
    align-self: stretch;
}

.editorial-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease);
}

.editorial-card:hover img {
    transform: scale(1.05);
}

.editorial-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.1) 40%, transparent 100%);
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.editorial-card-content {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 2;
    color: #ffffff;
}

.editorial-card-content h3 {
    font-family: var(--font-body);
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.editorial-shop-link {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #ffffff;
    text-decoration: none;
    border-bottom: 2px solid #ffffff;
    padding-bottom: 4px;
    display: inline-block;
    transition: border-color 0.3s ease, color 0.3s ease;
}

.editorial-card:hover .editorial-shop-link {
    color: var(--yellow);
    border-color: var(--yellow);
}

/* ============ RACING MARQUEE ============ */
.racing-marquee {
    width: 100%;
    background: #ffffff;
    border-top: 2px solid #000000;
    border-bottom: 2px solid #000000;
    overflow: hidden;
    padding: 22px 0;
    display: flex;
    align-items: center;
}

.racing-marquee-track {
    display: flex;
    width: max-content;
    animation: racingMarqueeScroll 28s linear infinite;
    gap: 80px;
    padding-right: 80px;
}

.racing-marquee-track span {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #111111;
    text-transform: uppercase;
    white-space: nowrap;
}

@keyframes racingMarqueeScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ============ NEWSLETTER SECTION ============ */
.newsletter-section {
    background: #ffffff;
    padding: 90px 8%;
    width: 100%;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.newsletter-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.newsletter-left {
    flex: 1;
    max-width: 500px;
}

.newsletter-eyebrow {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #888888;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.newsletter-heading {
    font-family: var(--font-body);
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    color: #111111;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.newsletter-heading .fancy-script {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 500;
}

.newsletter-subtext {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
    color: #666666;
}

.newsletter-right {
    flex: 1;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 30px;
}

.newsletter-form {
    width: 100%;
}

.newsletter-input-group {
    display: flex;
    width: 100%;
}

.newsletter-input-group input {
    flex: 1;
    padding: 18px 24px;
    border: 1.5px solid #111111;
    border-right: none;
    font-family: var(--font-body);
    font-size: 14px;
    color: #111111;
    outline: none;
    background: transparent;
    transition: border-color 0.3s ease;
}

.newsletter-input-group input::placeholder {
    color: #b7b7b7;
}

.newsletter-submit-btn {
    background: #111111;
    color: #ffffff;
    border: 1.5px solid #111111;
    padding: 0 36px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.newsletter-submit-btn:hover {
    background: #333333;
    border-color: #333333;
}

.newsletter-footer-text {
    font-family: var(--font-body);
    font-size: 12px;
    color: #888888;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.newsletter-footer-text a {
    color: #555555;
    text-decoration: underline;
}

.newsletter-footer-text a:hover {
    color: #111111;
}

.newsletter-note {
    font-family: var(--font-body);
    font-size: 13px;
    color: #27ae60;
    margin-top: 4px;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 900px) {
    .newsletter-container {
        flex-direction: column;
        align-items: stretch;
        gap: 30px;
        position: relative;
        margin-left: -14px;
    }

    .newsletter-left,
    .newsletter-right {
        max-width: 100%;
    }

    .newsletter-right {
        padding-top: 0;
    }
}

/* ============================================================
   VISIT OUR STORE SLIDE
============================================================ */
.visit-store-section {
    padding: 80px 24px;
    background: var(--white);
}

.visit-store-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* --- Image side --- */
.visit-store-image-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
}

.visit-store-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s var(--ease);
}

.visit-store-image-wrap:hover .visit-store-img {
    transform: scale(1.04);
}

.visit-store-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, transparent 55%, rgba(10, 10, 10, 0.22) 100%);
    pointer-events: none;
}

/* --- Info side --- */
.visit-store-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.visit-store-eyebrow {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 0.2em;
    color: var(--accent-ink);
    text-transform: uppercase;
    font-weight: 600;
}

.visit-store-heading {
    font-family: var(--font-body);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--ink);
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.visit-store-accent {
    color: var(--accent-ink);
    font-family: var(--font-body);
}

.visit-store-detail {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-family: var(--font-body);
}

.visit-store-icon {
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.visit-store-name {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--ink);
    text-transform: uppercase;
}

.visit-store-address {
    font-size: 14px;
    color: #444;
    line-height: 1.75;
}

.visit-store-hours {
    font-size: 14px;
    color: #555;
    font-weight: 500;
}

.visit-store-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
    padding: 14px 28px;
    background: var(--ink);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: var(--radius-sm);
    align-self: flex-start;
    transition: background 0.25s var(--ease), transform 0.2s var(--ease), gap 0.25s var(--ease);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}

.visit-store-btn:hover {
    background: var(--accent-ink);
    transform: translateY(-2px);
    gap: 16px;
}

/* --- Responsive --- */
@media (max-width: 860px) {
    .visit-store-container {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .visit-store-image-wrap {
        aspect-ratio: 16/9;
    }

    .visit-store-section {
        padding: 56px 20px;
    }
}

/* ============ PRODUCT DETAIL PAGE (PDP) ============ */
/* --- ZARA PDP LAYOUT --- */
.zara-pdp-container {
    display: grid;
    grid-template-columns: 60% 40%;
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 40px;
    gap: 50px;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #111;
}

/* Gallery */
.pdp-gallery {
    display: flex;
    gap: 20px;
}

.pdp-thumbnails {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 80px;
}

.pdp-thumbnails img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.6;
    transition: 0.3s;
}

.pdp-thumbnails img.active,
.pdp-thumbnails img:hover {
    opacity: 1;
}

.pdp-main-image {
    flex-grow: 1;
}

.pdp-main-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Details Section */
.pdp-title {
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.pdp-price-container {
    font-size: 22px;
    margin-bottom: 40px;
}

.pdp-compare-price {
    color: #999;
    text-decoration: line-through;
    margin-right: 15px;
    font-size: 18px;
}

/* Selectors (Sizes & Colors) */
.pdp-selector-section {
    margin-bottom: 30px;
}

.pdp-selector-header {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.pdp-link {
    color: #900;
    text-decoration: underline;
}

.pdp-grid-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.size-box {
    width: 50px;
    height: 50px;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    cursor: pointer;
    transition: 0.2s;
}

.size-box:hover,
.size-box.selected {
    border-color: #111;
    border-width: 2px;
    font-weight: 600;
}

/* Buttons */
.zara-btn-primary {
    width: 100%;
    background: #111;
    color: #fff;
    padding: 16px;
    font-size: 13px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.zara-btn-secondary {
    width: 100%;
    background: transparent;
    color: #111;
    border: 1px solid #111;
    padding: 16px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.pdp-description-wrapper h3 {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 15px;
}

.pdp-description-wrapper p {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
    .zara-pdp-container {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .pdp-gallery {
        flex-direction: column-reverse;
    }

    .pdp-thumbnails {
        flex-direction: row;
        width: 100%;
    }

    .pdp-thumbnails img {
        width: 60px;
    }
}

/* ============ ABOUT PAGE CUSTOM NAVBAR ============ */
.about-navbar {
    display: grid !important;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 6vw;
    height: 84px;
    background: var(--yellow);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.about-nav-logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.about-nav-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-nav-link {
     position: relative;
    color: #3b3c54;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    padding: 8px 12px;
    transition: color .25s ease;
    white-space: nowrap;
    flex-shrink: 1;
    min-width: 0;
    transition: opacity 0.25s ease;
}

.about-nav-link:hover {
    opacity: 0.7;
}

.about-nav-link.active {
    font-weight: 700;
    border-bottom: 2px solid var(--ink);
    padding-bottom: 4px;
}

.about-nav-logo {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 400;
    color: var(--ink);
    text-decoration: none;
    letter-spacing: 4px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-nav-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.back-to-home-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 1px solid var(--ink);
    border-radius: var(--radius-sm);
    color: rgb(26, 26, 26);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
}

.back-to-home-btn:hover {
    background: var(--ink);
    color: var(--white);
}

.back-to-home-btn svg {
    transition: transform 0.25s ease;
}

.back-to-home-btn:hover svg {
    transform: translateX(4px);
}

/* Responsive adjustment for about navbar */
@media (max-width: 768px) {
    .about-navbar {
        height: auto;
        padding: 18px 4vw;
        grid-template-columns: 1fr;
        gap: 16px;
        text-align: center;
    }

    .about-nav-left {
        justify-content: center;
        gap: 20px;
        order: 2;
    }

    .about-nav-logo {
        order: 1;
        font-size: 24px;
    }

    .about-nav-right {
        justify-content: center;
        order: 3;
    }
}

/* ============ ACCOUNT OVERLAY NAVBAR ============ */
.account-overlay-navbar {
    background: var(--yellow) !important;
    border-bottom: none !important;
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
}

.account-overlay-navbar .about-nav-logo img {
    height: 68px;
    width: auto;
    object-fit: contain;
}

/* ============ INNER PAGES SPACING & LAYOUT FIXES ============ */

/* About Page Spacing */
body.about-page {
    padding-top: 166px; /* 46px marquee + 120px about-navbar */
}

@media (max-width: 768px) {
    body.about-page {
        padding-top: 46px; /* marquee remains fixed at top: 0 */
    }
    body.about-page .about-navbar {
        position: relative;
        top: 0;
    }
}

/* Reels Page Spacing */
body.reels-page {
    padding-top: 130px; /* 46px marquee + 84px standard navbar */
}

/* ============ USER DASHBOARD & ORDER TRACKING STYLES ============ */
#accountOverlay.dashboard-active .stage {
    max-width: 680px; /* Increased from 520px to 680px */
    transition: max-width 0.4s var(--ease);
}

#panel-dashboard {
    text-align: left;
    max-height: 70vh;
    overflow-y: auto;
    padding-right: 8px;
}

#panel-dashboard::-webkit-scrollbar {
    width: 6px;
}
#panel-dashboard::-webkit-scrollbar-track {
    background: transparent;
}
#panel-dashboard::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.1);
}

.dash-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    padding-bottom: 16px;
    margin-bottom: 20px;
}

.dash-title {
    font-family: var(--font-body);
    font-size: 28px; /* Increased from 20px */
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.dash-logout-btn {
    font-family: var(--font-body);
    font-size: 12px; /* Increased from 11px */
    font-weight: 700;
    text-transform: uppercase;
    color: #cc0000;
    border: 1.5px solid #cc0000;
    padding: 8px 16px; /* Increased padding */
    border-radius: 0;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.dash-logout-btn:hover {
    background: #cc0000;
    color: var(--white);
}

.dash-profile-card {
    background: var(--accent2);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 0;
    padding: 24px; /* Increased padding */
    margin-bottom: 24px;
}

.dash-profile-top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.dash-avatar-wrapper {
    position: relative;
    width: 80px; /* Increased from 72px */
    height: 80px; /* Increased from 72px */
    border-radius: 0;
    overflow: hidden;
    border: 2px solid var(--yellow);
    cursor: pointer;
    background: var(--grey-300);
    display: flex;
    align-items: center;
    justify-content: center;
}

.dash-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dash-avatar-placeholder {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 32px; /* Increased from 28px */
    color: var(--ink);
}

.dash-avatar-upload-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    color: var(--white);
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-weight: 700;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dash-avatar-wrapper:hover .dash-avatar-upload-overlay {
    opacity: 1;
}

.dash-profile-meta {
    flex: 1;
    min-width: 0;
}

.dash-profile-name {
    font-size: 20px; /* Increased from 18px */
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dash-profile-email {
    font-size: 14px; /* Increased from 13px */
    color: #666;
    font-family: var(--font-mono);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dash-profile-fields {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.dash-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.dash-field label {
    font-size: 12px; /* Increased from 11px */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--grey-500);
}

.dash-input {
    width: 100%;
    padding: 12px 16px; /* Increased padding */
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 0;
    font-size: 14.5px; /* Increased from 13.5px */
    background: var(--white);
    color: var(--black);
    transition: border 0.3s ease;
}

.dash-input:focus {
    outline: none;
    border-color: var(--yellow);
}

.dash-textarea {
    resize: vertical;
    min-height: 80px; /* Increased from 60px */
    font-family: inherit;
}

.dash-save-btn {
    margin-top: 20px;
    width: 100%;
    background: var(--ink);
    color: var(--white);
    padding: 14px; /* Increased padding */
    border-radius: 0;
    font-weight: 700;
    font-size: 14.5px; /* Increased from 13px */
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.dash-save-btn:hover {
    background: var(--yellow);
    color: var(--ink);
}

/* Tracking Section */
.dash-tracking-title {
    font-family: var(--font-body);
    font-size: 22px; /* Increased from 16px */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
    color: var(--ink);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 8px;
    margin-top: 10px;
}

.dash-track-search {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.dash-track-search input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 0;
    font-size: 14px;
    background: var(--white);
}

.dash-track-search input:focus {
    outline: none;
    border-color: var(--yellow);
}

.dash-track-search-btn {
    background: var(--yellow);
    color: var(--ink);
    font-weight: 700;
    font-size: 13px;
    padding: 0 20px;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: opacity 0.3s ease;
}

.dash-track-search-btn:hover {
    opacity: 0.9;
}

.dash-orders-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.dash-order-card {
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 0;
    padding: 20px; /* Increased padding */
    background: var(--white);
    box-shadow: 0 4px 12px rgba(0,0,0,0.01);
}

.dash-order-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    flex-wrap: wrap;
    gap: 8px;
}

.dash-order-id-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dash-order-id {
    font-family: var(--font-mono);
    font-size: 14.5px; /* Increased from 13px */
    font-weight: 700;
    color: var(--ink);
}

.dash-order-platform {
    font-size: 11px; /* Increased from 10px */
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 10px; /* Increased padding */
    border-radius: 0;
    letter-spacing: 0.5px;
}

.dash-order-platform.shopify {
    background: rgba(150, 191, 72, 0.12);
    color: #6d8c2c;
    border: 1px solid rgba(150, 191, 72, 0.2);
}

.dash-order-platform.flipkart {
    background: rgba(40, 116, 240, 0.1);
    color: #2874f0;
    border: 1px solid rgba(40, 116, 240, 0.2);
}

.dash-order-platform.kappa {
    background: rgba(10, 10, 10, 0.06);
    color: #0a0a0a;
    border: 1px solid rgba(10, 10, 10, 0.12);
}

.dash-order-date {
    font-size: 13px; /* Increased from 12px */
    color: #888;
}

.dash-order-info {
    font-size: 14px; /* Increased from 13px */
    line-height: 1.5;
    color: #444;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.05);
}

.dash-order-track-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 12px;
}

.dash-order-track-steps::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: #eaeaea;
    z-index: 1;
}

.dash-order-track-progress-bar {
    position: absolute;
    top: 6px;
    left: 10%;
    height: 3px;
    background: var(--yellow);
    z-index: 2;
    transition: width 0.4s ease;
}

.dash-order-step-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 3;
    flex: 1;
}

.dash-order-step-dot {
    width: 14px;
    height: 14px;
    border-radius: 0;
    background: #eaeaea;
    border: 2px solid var(--white);
    margin-bottom: 6px;
    box-shadow: 0 0 0 1px #ccc;
    transition: all 0.3s ease;
}

.dash-order-step-node.active .dash-order-step-dot {
    background: var(--yellow);
    box-shadow: 0 0 0 2px var(--yellow);
}

.dash-order-step-label {
    font-size: 9px;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
}

.dash-order-step-node.active .dash-order-step-label {
    color: var(--ink);
    font-weight: 700;
}

.dash-order-status-desc {
    font-size: 13.5px; /* Increased from 12px */
    margin-top: 8px;
    color: #555;
    background: var(--accent2);
    padding: 10px 14px; /* Increased padding */
    border-radius: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dash-order-status-desc span {
    font-weight: 700;
    color: var(--ink);
}

/* ============ SQUARE SHAPE OVERRIDES FOR ACCOUNT SECTION ============ */
#accountOverlay,
#accountOverlay .card,
#accountOverlay .logo-mark,
#accountOverlay .logo-mark::after,
#accountOverlay .field input,
#accountOverlay .btn-primary,
#accountOverlay .btn-google,
#accountOverlay .dash-avatar-camera-btn {
    border-radius: 0 !important;
}

.dash-avatar-camera-btn {
    position: absolute;
    bottom: -6px;
    right: -6px;
    background: var(--yellow);
    color: var(--ink);
    border: 2px solid var(--white);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: transform 0.2s var(--ease), background 0.2s var(--ease);
}

.dash-avatar-camera-btn:hover {
    transform: scale(1.1);
    background: var(--yellow-deep);
}

/* ============ FLOATING WHATSAPP BUTTON ============ */
.floating-whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: var(--white);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
    z-index: 9999;
    border-radius: 50%;
    transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}

.floating-whatsapp-btn:hover {
    transform: scale(1.1) rotate(5deg);
    background: #20ba5a;
    color: var(--white);
}

.floating-whatsapp-btn svg {
    width: 32px;
    height: 32px;
    display: block;
}

/* Adjust on mobile so it doesn't overlap the bottom navigation bar */
@media (max-width: 768px) {
    .floating-whatsapp-btn {
        bottom: 85px; /* Shift up to clear the bottom nav bar height */
        right: 20px;
        width: 50px;
        height: 50px;
    }
    .floating-whatsapp-btn svg {
        width: 26px;
        height: 26px;
    }
}

/* ============ LOADER ============ */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--yellow); /* Brand yellow background */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 99999; /* Higher than everything else */
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-mark {
    width: 320px;
    height: 128px;
    background-image: url('https://cdn.corenexis.com/f/fRkaM2Pbrr7.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.05)); /* Keep original black logo with subtle shadow */
}

/* From Uiverse.io by satyamchaudharydev */ 
.loading {
 --speed-of-animation: 0.9s;
 --gap: 6px;
 --first-color: var(--black);
 --second-color: var(--black);
 --third-color: var(--black);
 --fourth-color: var(--black);
 --fifth-color: var(--black);
 display: flex;
 justify-content: center;
 align-items: center;
 width: 100px;
 gap: var(--gap);
 height: 100px;
}

.loading span {
 width: 4px;
 height: 50px;
 background: var(--first-color);
 animation: scale var(--speed-of-animation) ease-in-out infinite;
}

.loading span:nth-child(2) {
 background: var(--second-color);
 animation-delay: -0.8s;
}

.loading span:nth-child(3) {
 background: var(--third-color);
 animation-delay: -0.7s;
}

.loading span:nth-child(4) {
 background: var(--fourth-color);
 animation-delay: -0.6s;
}

.loading span:nth-child(5) {
 background: var(--fifth-color);
 animation-delay: -0.5s;
}

@keyframes scale {
 0%, 40%, 100% {
  transform: scaleY(0.05);
 }

 20% {
  transform: scaleY(1);
 }
}

