/* =========================================================
   STEV BOUTIQUE
   PREMIUM RESPONSIVE STYLESHEET
========================================================= */

/* =========================================================
   ROOT
========================================================= */

:root {
    --black: #080808;
    --black-soft: #111111;
    --black-light: #181818;

    --cream: #f6f1e8;
    --cream-dark: #e8e0d3;

    --white: #ffffff;
    --muted: #a7a7a7;
    --muted-dark: #707070;

    --gold: #c7a66a;
    --gold-light: #dfc48d;

    --green: #25d366;
    --green-dark: #128c7e;

    --border: rgba(255, 255, 255, 0.10);
    --border-dark: rgba(0, 0, 0, 0.10);

    --shadow:
        0 20px 60px rgba(0, 0, 0, 0.18);

    --shadow-heavy:
        0 30px 100px rgba(0, 0, 0, 0.35);

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;

    --container: 1240px;

    --font-body: "DM Sans", sans-serif;
    --font-display: "Playfair Display", serif;

    --transition:
        300ms cubic-bezier(.2, .8, .2, 1);
}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

body.modal-open {
    overflow: hidden;
}

img {
    display: block;
    width: 100%;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    border: 0;
    cursor: pointer;
}

ul,
ol {
    list-style: none;
}


/* =========================================================
   CONTAINER
========================================================= */

.container {
    width: min(
        calc(100% - 40px),
        var(--container)
    );

    margin-inline: auto;
}


/* =========================================================
   PAGE LOADER
========================================================= */

.page-loader {
    position: fixed;
    inset: 0;

    z-index: 99999;

    display: grid;
    place-items: center;

    background: var(--black);

    transition:
        opacity 500ms ease,
        visibility 500ms ease;
}

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    font-family: var(--font-display);
    font-size: 46px;
    letter-spacing: 8px;
}

.loader-line {
    width: 90px;
    height: 1px;

    background: var(--gold);

    margin: 15px auto;
}

.loader-content span {
    color: var(--muted);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    border-bottom: 1px solid transparent;

    transition:
        background var(--transition),
        border-color var(--transition),
        backdrop-filter var(--transition);
}

.site-header.scrolled {
    background: rgba(8, 8, 8, 0.88);
    border-color: var(--border);
    backdrop-filter: blur(18px);
}

.header-inner {
    height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


/* =========================================================
   BRAND
========================================================= */

.brand {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;

    flex-shrink: 0;
}

.brand-main {
    font-family: var(--font-display);
    font-size: 25px;
    line-height: 1;

    letter-spacing: 4px;
}

.brand-sub {
    margin-top: 5px;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 5px;
    color: var(--gold);
}


/* =========================================================
   NAVIGATION
========================================================= */

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    position: relative;

    color: rgba(255,255,255,.72);

    font-size: 12px;
    font-weight: 600;

    transition: color var(--transition);
}

.nav-link::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -8px;

    width: 0;
    height: 1px;

    background: var(--gold);

    transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}


/* =========================================================
   HEADER ACTIONS
========================================================= */

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.header-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 10px 15px;

    border: 1px solid rgba(37, 211, 102, .35);
    border-radius: 999px;

    color: var(--green);

    font-size: 11px;
    font-weight: 700;

    transition:
        background var(--transition),
        transform var(--transition);
}

.header-whatsapp:hover {
    background: rgba(37, 211, 102, .08);
    transform: translateY(-2px);
}

.header-whatsapp i {
    font-size: 17px;
}


/* =========================================================
   MOBILE MENU
========================================================= */

.mobile-menu {
    display: none;

    width: 44px;
    height: 44px;

    align-items: center;
    justify-content: center;
    flex-direction: column;

    gap: 5px;

    background: transparent;
}

.mobile-menu span {
    width: 22px;
    height: 1px;

    background: var(--white);

    transition:
        transform var(--transition),
        opacity var(--transition);
}

.mobile-menu.open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.mobile-menu.open span:nth-child(2) {
    opacity: 0;
}

.mobile-menu.open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;

    min-height: 100svh;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: #050505;
}

.hero-slider {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;

    opacity: 0;

    background-size: cover;
    background-position: center;

    transform: scale(1.04);

    transition:
        opacity 1000ms ease,
        transform 7000ms ease;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.88) 0%,
            rgba(0,0,0,.60) 48%,
            rgba(0,0,0,.22) 100%
        ),
        linear-gradient(
            0deg,
            rgba(0,0,0,.70),
            transparent 40%
        );
}

.hero-content {
    position: relative;

    z-index: 2;

    padding-top: 90px;

    max-width: 850px;
}

.hero-kicker,
.section-eyebrow,
.location-label {
    display: block;

    color: var(--gold);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 4px;
    text-transform: uppercase;
}

.hero h1 {
    margin-top: 18px;

    font-family: var(--font-display);

    font-size: clamp(
        48px,
        7vw,
        100px
    );

    line-height: .95;

    letter-spacing: -3px;
}

.hero-title {
    margin-top: 28px;

    font-family: var(--font-display);

    font-size: clamp(
        28px,
        4vw,
        55px
    );

    line-height: 1.1;
}

.hero-title span {
    color: var(--gold-light);
}

.hero-description {
    max-width: 620px;

    margin-top: 20px;

    color: rgba(255,255,255,.72);

    font-size: 16px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 13px;

    margin-top: 34px;
}



/* =========================================
   HERO MEDIA
========================================= */

.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: #080808;
}

.hero-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 1.2s ease,
        visibility 1.2s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-slide img,
.hero-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Subtle zoom effect on images */
.hero-slide.active img {
    animation: heroZoom 7s ease forwards;
}

@keyframes heroZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.06);
    }
}


/* =========================================
   HERO OVERLAY
========================================= */

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.82) 0%,
            rgba(0, 0, 0, 0.58) 42%,
            rgba(0, 0, 0, 0.25) 75%,
            rgba(0, 0, 0, 0.42) 100%
        );
}


/* =========================================
   HERO CONTENT
========================================= */

.hero-content {
    position: relative;
    z-index: 3;

    width: min(1200px, 92%);
    margin: 0 auto;

    padding-top: 80px;
}

.hero-eyebrow {
    display: inline-block;

    margin-bottom: 20px;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.25em;

    color: #d6b46a;
}

.hero-content h1 {
    max-width: 850px;

    margin: 0;

    font-size: clamp(42px, 7vw, 88px);
    line-height: 0.98;
    font-weight: 800;
    letter-spacing: -0.04em;

    color: #ffffff;
}

.hero-content h1 span {
    display: block;
    color: #d6b46a;
}

.hero-title {
    margin: 28px 0 10px;

    font-size: clamp(22px, 3vw, 34px);
    font-weight: 600;

    color: #ffffff;
}

.hero-description {
    max-width: 570px;

    margin: 0 0 34px;

    font-size: 17px;
    line-height: 1.8;

    color: rgba(255, 255, 255, 0.78);
}


/* =========================================
   HERO BUTTONS
========================================= */

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    min-height: 54px;
    padding: 0 26px;

    border-radius: 999px;

    text-decoration: none;

    font-size: 14px;
    font-weight: 700;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    color: #111;
    background: #d6b46a;
}

.btn-primary:hover {
    background: #e5c681;
}

.btn-whatsapp {
    color: #ffffff;

    background: rgba(255, 255, 255, 0.08);

    border: 1px solid rgba(255, 255, 255, 0.3);

    backdrop-filter: blur(12px);
}

.btn-whatsapp:hover {
    background: rgba(255, 255, 255, 0.16);
}


/* =========================================
   HERO CONTROLS
========================================= */

.hero-controls {
    position: absolute;

    z-index: 5;

    left: 50%;
    bottom: 35px;

    transform: translateX(-50%);

    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-control {
    width: 32px;
    height: 3px;

    padding: 0;

    border: 0;
    border-radius: 20px;

    background: rgba(255, 255, 255, 0.35);

    cursor: pointer;

    transition:
        width 0.3s ease,
        background 0.3s ease;
}

.hero-control.active {
    width: 55px;
    background: #d6b46a;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .hero {
        min-height: 90vh;
    }

    .hero-content {
        padding-top: 70px;
    }

    .hero-content h1 {
        font-size: clamp(42px, 12vw, 64px);
    }

    .hero-description {
        font-size: 15px;
        line-height: 1.7;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        max-width: 320px;
    }

    .btn {
        width: 100%;
    }

    .hero-controls {
        bottom: 25px;
    }
}


/* =========================================================
   BUTTONS
========================================================= */

.btn {
    min-height: 52px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 11px;

    padding: 0 22px;

    border-radius: 999px;

    font-size: 12px;
    font-weight: 700;

    transition:
        transform var(--transition),
        background var(--transition),
        border-color var(--transition);
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    background: var(--cream);
    color: var(--black);
}

.btn-primary:hover {
    background: var(--white);
}

.btn-whatsapp {
    background: var(--green);
    color: #071109;
}

.btn-whatsapp:hover {
    background: #49e57e;
}

.btn-outline {
    border: 1px solid rgba(255,255,255,.18);
    color: var(--white);
    background: transparent;
}

.btn-outline:hover {
    border-color: var(--gold);
}


/* =========================================================
   HERO INDICATORS
========================================================= */

.hero-indicators {
    position: absolute;

    z-index: 3;

    left: 50%;
    bottom: 42px;

    transform: translateX(-50%);

    display: flex;
    gap: 8px;
}

.hero-dot {
    width: 28px;
    height: 2px;

    background: rgba(255,255,255,.35);

    transition: background var(--transition);
}

.hero-dot.active {
    background: var(--gold);
}


/* =========================================================
   HERO SCROLL
========================================================= */

.hero-scroll {
    position: absolute;

    z-index: 3;

    right: 30px;
    bottom: 35px;

    display: flex;
    align-items: center;
    gap: 12px;

    color: rgba(255,255,255,.55);

    font-size: 9px;

    letter-spacing: 2px;
    text-transform: uppercase;

    writing-mode: vertical-rl;
}

.hero-scroll i {
    color: var(--gold);
}


/* =========================================================
   GENERAL SECTIONS
========================================================= */

.section {
    position: relative;

    padding: 110px 0;
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 40px;

    margin-bottom: 55px;
}

.section-heading.centered {
    display: block;

    max-width: 700px;

    margin-left: auto;
    margin-right: auto;

    text-align: center;
}

.section-heading h2 {
    margin-top: 13px;

    font-family: var(--font-display);

    font-size: clamp(
        38px,
        5vw,
        64px
    );

    line-height: 1.05;

    letter-spacing: -2px;
}

.section-heading h2 span,
.about-content h2 span,
.location-content h3 span,
.contact-intro h2 span {
    color: var(--gold);
}

.section-heading > p {
    max-width: 390px;

    color: var(--muted);

    font-size: 14px;
}


/* =========================================================
   TRENDING
========================================================= */

.trending-section {
    background: var(--cream);
    color: var(--black);

    overflow: hidden;
}

.trending-section .section-heading > p {
    color: #686868;
}

.trending-marquee {
    width: 100%;
    overflow: hidden;
}

.trending-track {
    display: flex;

    width: max-content;

    gap: 16px;

    animation:
        trendingMarquee 42s linear infinite;
}

.trending-track:hover {
    animation-play-state: paused;
}

@keyframes trendingMarquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.trending-card {
    position: relative;

    width: 290px;
    height: 390px;

    flex-shrink: 0;

    overflow: hidden;

    background: #ddd;
}

.trending-card img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 700ms ease;
}

.trending-card:hover img {
    transform: scale(1.06);
}

.trending-card-overlay {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: flex-end;

    padding: 24px;

    background:
        linear-gradient(
            transparent 35%,
            rgba(0,0,0,.75)
        );
}

.trending-card-info {
    color: white;
}

.trending-card-category {
    color: var(--gold-light);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 2px;
    text-transform: uppercase;
}

.trending-card-title {
    margin-top: 5px;

    font-family: var(--font-display);

    font-size: 23px;
}


/* =========================================================
   NEW ARRIVALS
========================================================= */

.new-arrivals-section {
    background: var(--black);
}

.products-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 18px;
}

.product-card {
    position: relative;

    overflow: hidden;

    background: var(--black-soft);

    border: 1px solid var(--border);

    transition:
        transform var(--transition),
        border-color var(--transition);
}

.product-card:hover {
    transform: translateY(-6px);

    border-color:
        rgba(199,166,106,.45);
}

.product-image {
    position: relative;

    aspect-ratio: 4 / 5;

    overflow: hidden;

    background: #171717;
}

.product-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 700ms cubic-bezier(.2,.8,.2,1);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;

    top: 14px;
    left: 14px;

    padding: 6px 9px;

    background: var(--cream);
    color: var(--black);

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 1px;
    text-transform: uppercase;
}

.product-info {
    padding: 19px;
}

.product-category {
    color: var(--gold);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 2px;
    text-transform: uppercase;
}

.product-name {
    margin-top: 7px;

    font-family: var(--font-display);

    font-size: 20px;
}

.product-actions {
    display: flex;

    margin-top: 16px;
}

.product-whatsapp {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    min-height: 43px;

    border: 1px solid rgba(37,211,102,.25);

    color: var(--green);

    font-size: 10px;
    font-weight: 700;

    transition:
        background var(--transition),
        color var(--transition);
}

.product-whatsapp:hover {
    background: var(--green);
    color: #061008;
}

.section-footer {
    margin-top: 40px;

    text-align: center;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: var(--gold);

    font-size: 11px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 1.5px;
}


/* =========================================================
   CATEGORIES
========================================================= */

.categories-section {
    background: #0d0d0d;
}

.categories-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 14px;
}

.category-card {
    position: relative;

    min-height: 250px;

    overflow: hidden;

    cursor: pointer;

    background: #151515;

    border: 1px solid var(--border);

    transition:
        transform var(--transition),
        border-color var(--transition);
}

.category-card:hover {
    transform: translateY(-5px);

    border-color:
        rgba(199,166,106,.45);
}

.category-card-image {
    position: absolute;
    inset: 0;
}

.category-card-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 800ms ease;
}

.category-card:hover img {
    transform: scale(1.08);
}

.category-card::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            0deg,
            rgba(0,0,0,.90),
            rgba(0,0,0,.10)
        );
}

.category-card-content {
    position: absolute;

    z-index: 2;

    left: 20px;
    right: 20px;
    bottom: 20px;
}

.category-number {
    color: var(--gold);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 2px;
}

.category-name {
    margin-top: 4px;

    font-family: var(--font-display);

    font-size: 27px;
}

.category-count {
    margin-top: 3px;

    color: rgba(255,255,255,.6);

    font-size: 10px;
}


/* =========================================================
   ABOUT
========================================================= */

.about-section {
    background: var(--cream);
    color: var(--black);
}

.about-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 80px;

    align-items: center;
}

.about-image {
    position: relative;

    min-height: 600px;

    overflow: hidden;
}

.about-image > img {
    width: 100%;
    height: 100%;

    min-height: 600px;

    object-fit: cover;
}

.about-image-badge {
    position: absolute;

    right: 25px;
    bottom: 25px;

    padding: 18px 20px;

    background: rgba(8,8,8,.88);
    color: white;

    backdrop-filter: blur(12px);
}

.about-image-badge span {
    display: block;

    font-family: var(--font-display);

    font-size: 22px;

    letter-spacing: 3px;
}

.about-image-badge small {
    color: var(--gold-light);

    font-size: 8px;

    letter-spacing: 2px;
    text-transform: uppercase;
}

.about-content h2 {
    margin-top: 13px;

    font-family: var(--font-display);

    font-size: clamp(40px, 5vw, 65px);

    line-height: 1;
}

.about-content > p {
    max-width: 600px;

    margin-top: 22px;

    color: #5f5f5f;

    font-size: 15px;
}

.about-features {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 20px;

    margin-top: 35px;
}

.about-feature {
    display: flex;

    gap: 14px;
}

.feature-icon {
    width: 44px;
    height: 44px;

    flex-shrink: 0;

    display: grid;
    place-items: center;

    background: var(--black);
    color: var(--gold);

    border-radius: 50%;
}

.about-feature h3 {
    font-size: 13px;
}

.about-feature p {
    margin-top: 5px;

    color: #737373;

    font-size: 11px;
}


/* =========================================================
   SERVICES
========================================================= */

.services-section {
    background: var(--black);
}

.services-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 16px;
}

.service-card {
    padding: 35px;

    background: #111;

    border: 1px solid var(--border);

    transition:
        transform var(--transition),
        border-color var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);

    border-color:
        rgba(199,166,106,.4);
}

.service-card-highlight {
    background:
        linear-gradient(
            145deg,
            #171717,
            #0d0d0d
        );
}

.service-icon {
    width: 55px;
    height: 55px;

    display: grid;
    place-items: center;

    margin-bottom: 25px;

    border-radius: 50%;

    background: rgba(199,166,106,.08);

    color: var(--gold);

    font-size: 21px;
}

.service-card h3 {
    font-family: var(--font-display);

    font-size: 25px;
}

.service-card p {
    margin-top: 12px;

    color: var(--muted);

    font-size: 13px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-top: 22px;

    color: var(--gold);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1px;
    text-transform: uppercase;
}


/* =========================================================
   LOCATION
========================================================= */

.location-section {
    background: #0d0d0d;
}

.location-grid {
    display: grid;

    grid-template-columns:
        1.1fr .9fr;

    gap: 35px;

    align-items: stretch;
}

.location-map {
    min-height: 500px;

    overflow: hidden;

    border: 1px solid var(--border);

    background: #151515;
}

.location-map iframe {
    display: block;

    width: 100%;
    height: 100%;

    min-height: 500px;

    filter:
        grayscale(100%)
        contrast(1.05);
}

.location-content {
    padding: 38px;

    background: #111;

    border: 1px solid var(--border);
}

.location-content h3 {
    margin-top: 14px;

    font-family: var(--font-display);

    font-size: clamp(
        35px,
        4vw,
        55px
    );

    line-height: 1.05;
}

.location-details {
    margin-top: 35px;

    display: grid;

    gap: 22px;
}

.location-detail {
    display: flex;

    gap: 15px;
}

.location-detail-icon {
    width: 42px;
    height: 42px;

    flex-shrink: 0;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: rgba(199,166,106,.08);

    color: var(--gold);
}

.location-detail span {
    display: block;

    color: var(--muted-dark);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.location-detail strong {
    display: block;

    margin-top: 4px;

    color: var(--white);

    font-size: 12px;

    line-height: 1.6;
}

.location-detail a:hover {
    color: var(--gold);
}

.location-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 10px;

    margin-top: 35px;
}


/* =========================================================
   WHATSAPP CTA
========================================================= */

.whatsapp-cta {
    position: relative;

    overflow: hidden;

    background: var(--green);

    color: #061008;
}

.whatsapp-cta-background {
    position: absolute;
    inset: 0;

    opacity: .08;

    background:
        radial-gradient(
            circle at 15% 50%,
            #fff 0,
            transparent 25%
        ),
        radial-gradient(
            circle at 85% 30%,
            #fff 0,
            transparent 25%
        );
}

.whatsapp-cta-inner {
    position: relative;

    min-height: 340px;

    display: grid;

    grid-template-columns:
        auto 1fr auto;

    align-items: center;

    gap: 35px;
}

.whatsapp-cta-icon {
    width: 80px;
    height: 80px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: rgba(0,0,0,.10);

    font-size: 35px;
}

.whatsapp-cta-content > span {
    font-size: 9px;
    font-weight: 800;

    letter-spacing: 2px;
}

.whatsapp-cta-content h2 {
    margin-top: 6px;

    font-family: var(--font-display);

    font-size: clamp(
        38px,
        5vw,
        70px
    );

    line-height: .95;
}

.whatsapp-cta-content h2 em {
    font-weight: 500;
}

.whatsapp-cta-content p {
    max-width: 550px;

    margin-top: 15px;

    font-size: 14px;

    opacity: .75;
}

.whatsapp-main-btn {
    min-width: 220px;

    min-height: 58px;

    padding: 0 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    border-radius: 999px;

    background: var(--black);
    color: white;

    font-size: 12px;
    font-weight: 700;

    transition:
        transform var(--transition);
}

.whatsapp-main-btn:hover {
    transform: translateY(-4px);
}

.whatsapp-main-btn span {
    display: flex;
    align-items: center;
    gap: 9px;
}


/* =========================================================
   CONTACT
========================================================= */

.contact-section {
    background: var(--cream);
    color: var(--black);
}

.contact-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 90px;

    align-items: center;
}

.contact-intro h2 {
    margin-top: 13px;

    font-family: var(--font-display);

    font-size: clamp(
        45px,
        5vw,
        70px
    );

    line-height: 1;
}

.contact-intro > p {
    max-width: 520px;

    margin-top: 20px;

   color: var(--black);

    font-size: 14px;
}

.contact-whatsapp {
    max-width: 430px;

    display: flex;
    align-items: center;

    gap: 15px;

    margin-top: 30px;

    padding: 16px 18px;

    background: var(--black);
    color: white;

    transition:
        transform var(--transition);
}

.contact-whatsapp:hover {
    transform: translateY(-4px);
}

.contact-whatsapp > i:first-child {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--green);
    color: #061008;

    font-size: 19px;
}

.contact-whatsapp div {
    flex: 1;
}

.contact-whatsapp small {
    display: block;

    color: var(--muted);

    font-size: 8px;

    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-whatsapp strong {
    display: block;

    margin-top: 2px;

    font-size: 13px;
}

.contact-whatsapp > i:last-child {
    color: var(--gold);
}

.contact-info {
    display: grid;

    gap: 28px;
}

.contact-item {
    display: flex;

    gap: 15px;

    padding-bottom: 25px;

    border-bottom: 1px solid rgba(0,0,0,.10);
}

.contact-item-icon {
    width: 45px;
    height: 45px;

    flex-shrink: 0;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--black);
    color: var(--gold);
}

.contact-item span {
    display: block;

    color: #888;

    font-size: 9px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.contact-item p,
.contact-item a {
    display: block;

    margin-top: 5px;

    color: #222;

    font-size: 13px;
}

.contact-item a:hover {
    color: var(--gold);
}


/* =========================================================
   CATALOGUE OVERLAY
========================================================= */

.catalogue-overlay {
    position: fixed;
    inset: 0;

    z-index: 3000;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 25px;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 300ms ease,
        visibility 300ms ease;
}

.catalogue-overlay.open {
    opacity: 1;
    visibility: visible;
}

.catalogue-backdrop {
    position: absolute;
    inset: 0;

    background: rgba(0,0,0,.82);

    backdrop-filter: blur(15px);
}

.catalogue-modal {
    position: relative;

    z-index: 2;

    width: min(
        1100px,
        100%
    );

    max-height: 90vh;

    overflow-y: auto;

    padding: 40px;

    background: #111;

    border: 1px solid var(--border);

    box-shadow: var(--shadow-heavy);

    transform:
        translateY(25px)
        scale(.97);

    transition:
        transform 350ms cubic-bezier(.2,.8,.2,1);
}

.catalogue-overlay.open .catalogue-modal {
    transform:
        translateY(0)
        scale(1);
}

.catalogue-close {
    position: sticky;

    float: right;

    top: 0;

    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: rgba(255,255,255,.07);
    color: white;

    font-size: 16px;

    z-index: 5;
}

.catalogue-close:hover {
    background: var(--gold);
    color: var(--black);
}

.catalogue-header {
    padding-right: 50px;

    margin-bottom: 30px;
}

.catalogue-header h2 {
    margin-top: 10px;

    font-family: var(--font-display);

    font-size: clamp(
        40px,
        5vw,
        62px
    );
}

.catalogue-header p {
    margin-top: 8px;

    color: var(--muted);

    font-size: 13px;
}

.catalogue-products {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 14px;
}

.catalogue-footer {
    margin-top: 30px;

    padding-top: 25px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    border-top: 1px solid var(--border);
}

.catalogue-footer p {
    color: var(--muted);

    font-size: 12px;
}


/* =========================================================
   LIGHTBOX
========================================================= */

.product-lightbox {
    position: fixed;
    inset: 0;

    z-index: 5000;

    display: grid;
    place-items: center;

    padding: 20px;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 300ms ease,
        visibility 300ms ease;
}

.product-lightbox.open {
    opacity: 1;
    visibility: visible;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;

    background: rgba(0,0,0,.92);
}

.lightbox-content {
    position: relative;

    z-index: 2;

    max-width: 900px;
    max-height: 90vh;
}

.lightbox-content img {
    max-height: 85vh;

    object-fit: contain;
}

.lightbox-close {
    position: absolute;

    right: -15px;
    top: -15px;

    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: white;
    color: black;

    z-index: 3;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    background: #050505;

    border-top: 1px solid var(--border);
}

.footer-main {
    display: grid;

    grid-template-columns:
        1.5fr
        1fr
        1.2fr
        1.3fr;

    gap: 45px;

    padding: 70px 0;
}

.footer-brand > p {
    margin-top: 18px;

    max-width: 230px;

    color: var(--muted);

    font-size: 12px;
}

.footer-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-top: 20px;

    color: var(--green);

    font-size: 10px;
    font-weight: 700;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 11px;
}

.footer-column h3 {
    margin-bottom: 7px;

    color: var(--white);

    font-size: 10px;

    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-column a,
.footer-column span {
    color: var(--muted);

    font-size: 11px;

    line-height: 1.6;

    transition: color var(--transition);
}

.footer-column a:hover {
    color: var(--gold);
}

.footer-location span {
    display: block;
}

.footer-directions {
    display: inline-flex !important;

    align-items: center;
    gap: 7px;

    margin-top: 5px;

    color: var(--gold) !important;

    font-weight: 700;
}

.footer-bottom {
    min-height: 75px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    border-top: 1px solid var(--border);
}

.footer-bottom p {
    color: #666;

    font-size: 10px;
}

.footer-socials {
    display: flex;
    gap: 8px;
}

.footer-socials a {
    width: 34px;
    height: 34px;

    display: grid;
    place-items: center;

    border: 1px solid var(--border);

    color: var(--muted);

    border-radius: 50%;

    transition:
        background var(--transition),
        color var(--transition);
}

.footer-socials a:hover {
    background: var(--gold);
    color: var(--black);
}


/* =========================================================
   BACK TO TOP
========================================================= */

.back-to-top {
    position: fixed;

    right: 25px;
    bottom: 25px;

    z-index: 900;

    width: 45px;
    height: 45px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--cream);
    color: var(--black);

    opacity: 0;
    visibility: hidden;

    transform: translateY(15px);

    transition:
        opacity var(--transition),
        visibility var(--transition),
        transform var(--transition);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--gold);
}


/* =========================================================
   REVEAL ANIMATION
========================================================= */

.reveal {
    opacity: 0;

    transform: translateY(25px);

    transition:
        opacity 800ms ease,
        transform 800ms ease;
}

.reveal.revealed {
    opacity: 1;

    transform: translateY(0);
}


/* =========================================================
   FOCUS STATES
========================================================= */

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 4px;
}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1050px) {

    .main-nav {
        gap: 18px;
    }

    .nav-link {
        font-size: 11px;
    }

    .products-grid {
        grid-template-columns:
            repeat(3, 1fr);
    }

    .categories-grid {
        grid-template-columns:
            repeat(3, 1fr);
    }

    .about-grid {
        gap: 45px;
    }

    .footer-main {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .whatsapp-cta-inner {
        grid-template-columns:
            auto 1fr;
    }

    .whatsapp-main-btn {
        grid-column: 2;
    }
}


/* =========================================================
   RESPONSIVE — MOBILE NAV
========================================================= */

@media (max-width: 800px) {

    .container {
        width: min(
            calc(100% - 28px),
            var(--container)
        );
    }

    .header-inner {
        height: 72px;
    }

    .header-whatsapp {
        display: none;
    }

    .mobile-menu {
        display: flex;
    }

    .main-nav {
        position: fixed;

        top: 72px;
        left: 14px;
        right: 14px;

        display: flex;
        flex-direction: column;
        align-items: stretch;

        gap: 0;

        padding: 10px;

        background:
            rgba(10,10,10,.97);

        border: 1px solid var(--border);

        box-shadow: var(--shadow-heavy);

        opacity: 0;
        visibility: hidden;

        transform: translateY(-10px);

        transition:
            opacity var(--transition),
            visibility var(--transition),
            transform var(--transition);
    }

    .main-nav.open {
        opacity: 1;
        visibility: visible;

        transform: translateY(0);
    }

    .nav-link {
        padding: 15px;

        border-bottom: 1px solid var(--border);

        font-size: 12px;
    }

    .nav-link:last-child {
        border-bottom: 0;
    }

    .nav-link::after {
        display: none;
    }

    .section {
        padding: 80px 0;
    }

    .section-heading {
        display: block;

        margin-bottom: 35px;
    }

    .section-heading > p {
        margin-top: 15px;
    }

    .hero-content {
        padding-top: 70px;
    }

    .hero h1 {
        letter-spacing: -1.5px;
    }

    .hero-scroll {
        display: none;
    }

    .products-grid {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 10px;
    }

    .categories-grid {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 10px;
    }

    .category-card {
        min-height: 210px;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .about-image,
    .about-image > img {
        min-height: 480px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .location-grid {
        grid-template-columns: 1fr;
    }

    .location-map,
    .location-map iframe {
        min-height: 400px;
    }

    .whatsapp-cta-inner {
        grid-template-columns: 1fr;

        padding: 65px 0;

        gap: 20px;
    }

    .whatsapp-main-btn {
        grid-column: auto;

        width: 100%;
    }

    .catalogue-modal {
        padding: 25px 18px;
    }

    .catalogue-products {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .catalogue-footer {
        align-items: flex-start;
        flex-direction: column;
    }
}


/* =========================================================
   RESPONSIVE — SMALL MOBILE
========================================================= */

@media (max-width: 520px) {

    .brand-main {
        font-size: 22px;
    }

    .hero {
        min-height: 750px;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-description {
        font-size: 13px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-indicators {
        bottom: 25px;
    }

    .trending-card {
        width: 245px;
        height: 335px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-image {
        aspect-ratio: 1 / 1.15;
    }

    .categories-grid {
        grid-template-columns: 1fr 1fr;
    }

    .category-card {
        min-height: 180px;
    }

    .category-name {
        font-size: 21px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .about-image,
    .about-image > img {
        min-height: 400px;
    }

    .location-content {
        padding: 25px 20px;
    }

    .location-actions {
        flex-direction: column;
    }

    .location-actions .btn {
        width: 100%;
    }

    .catalogue-overlay {
        padding: 10px;
    }

    .catalogue-modal {
        max-height: 94vh;
    }

    .catalogue-products {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr;

        gap: 35px;

        padding: 55px 0;
    }

    .footer-bottom {
        align-items: flex-start;

        flex-direction: column;

        padding: 20px 0;
    }

    .back-to-top {
        right: 15px;
        bottom: 15px;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .trending-track {
        animation: none;
    }
}






/* =========================================================
   MOBILE HERO FIX
========================================================= */

@media (max-width: 600px) {

    .hero {
        min-height: 100svh;
        height: 100svh;
        overflow: hidden;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
        padding: 0 22px;
        box-sizing: border-box;
    }

    .hero-eyebrow {
        font-size: 0.7rem;
        letter-spacing: 0.12em;
        margin-bottom: 10px;
    }

    .hero-title,
    .hero h1 {
        font-size: clamp(2.2rem, 11vw, 3.4rem);
        line-height: 0.98;
        letter-spacing: -0.04em;
        max-width: 100%;
        word-break: normal;
        overflow-wrap: normal;
    }

    .hero-description {
        font-size: 0.82rem;
        line-height: 1.5;
        max-width: 100%;
        margin-top: 14px;
    }

    .hero-buttons,
    .hero-actions {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 22px;
    }

    .hero-buttons .btn,
    .hero-actions .btn {
        width: 100%;
        min-height: 50px;
        justify-content: center;
    }

    .hero-video-slide video,
    .hero-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

}

/* =========================================================
   STEVE'S BOUTIQUE — PREMIUM POLISH
   Final override layer
========================================================= */

/* ---------- Premium global feel ---------- */

::selection {
    background: var(--gold);
    color: var(--black);
}

body {
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.container {
    width: min(calc(100% - 32px), var(--container));
}

/* ---------- Header ---------- */

.site-header {
    transition:
        background 400ms ease,
        border-color 400ms ease,
        box-shadow 400ms ease,
        backdrop-filter 400ms ease;
}

.site-header.scrolled {
    box-shadow: 0 12px 40px rgba(0, 0, 0, .18);
}

.brand-main {
    transition: letter-spacing 300ms ease, transform 300ms ease;
}

.brand:hover .brand-main {
    letter-spacing: 5px;
}

/* ---------- Hero ---------- */

.hero {
    isolation: isolate;
}

.hero-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, .90) 0%,
            rgba(0, 0, 0, .64) 42%,
            rgba(0, 0, 0, .28) 76%,
            rgba(0, 0, 0, .48) 100%
        ),
        linear-gradient(
            0deg,
            rgba(0, 0, 0, .72),
            transparent 52%
        );
}

.hero-content {
    max-width: 900px;
}

.hero-eyebrow {
    position: relative;
    padding-left: 42px;
}

.hero-eyebrow::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 30px;
    height: 1px;
    background: var(--gold);
}

.hero-content h1 {
    max-width: 820px;
    font-weight: 600;
    letter-spacing: -.055em;
}

.hero-description {
    max-width: 560px;
}

.hero-buttons .btn {
    box-shadow: 0 12px 35px rgba(0, 0, 0, .18);
}

.btn-primary {
    box-shadow: 0 12px 35px rgba(199, 166, 106, .14);
}

.btn-whatsapp {
    background: var(--green) !important;
    color: #fff !important;
    border-color: var(--green) !important;
    backdrop-filter: none;
}

.btn-whatsapp i {
    color: #fff !important;
}

.btn-whatsapp:hover {
    background: var(--green-dark) !important;
    color: #fff !important;
    border-color: var(--green-dark) !important;
}

/* ---------- Section headings ---------- */

.section {
    padding: 120px 0;
}

.section-heading h2 {
    font-weight: 500;
}

.section-heading.centered > p,
.trending-section .section-heading > p {
    max-width: 650px;
    margin: 15px auto 0;
    line-height: 1.8;
}

/* ---------- Trending ---------- */

.trending-section {
    position: relative;
}

.trending-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(199, 166, 106, .12),
            transparent 24%
        );
}

.trending-card {
    border-radius: 2px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, .10);
}

.trending-card img {
    filter: saturate(.92);
}

/* ---------- Product cards ---------- */

.product-card {
    border-radius: 4px;
    background:
        linear-gradient(
            145deg,
            #151515,
            #0c0c0c
        );
    box-shadow: 0 16px 45px rgba(0, 0, 0, .16);
}

.product-card:hover {
    box-shadow: 0 25px 60px rgba(0, 0, 0, .24);
}

.product-image {
    background: #121212;
}

.product-whatsapp {
    background: var(--green);
    color: #fff;
    border-color: var(--green);
}

.product-whatsapp i {
    color: #fff;
}

.product-whatsapp:hover {
    background: var(--green-dark);
    color: #fff;
}

/* ---------- Categories ---------- */

.categories-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.category-card {
    min-height: 290px;
    border-radius: 4px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, .18);
}

.category-card::after {
    background:
        linear-gradient(
            0deg,
            rgba(0, 0, 0, .94),
            rgba(0, 0, 0, .08) 70%
        );
}

.category-card-content {
    left: 24px;
    right: 24px;
    bottom: 24px;
}

.category-name {
    font-weight: 500;
}

/* ---------- About / services ---------- */

.about-image,
.location-map,
.location-content,
.service-card {
    box-shadow: 0 18px 55px rgba(0, 0, 0, .12);
}

.service-card {
    border-radius: 4px;
}

/* ---------- WhatsApp CTA ---------- */

.whatsapp-cta {
    color: #fff;
}

.whatsapp-main-btn {
    background: #080808;
    color: #fff;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .20);
}

/* ---------- Contact ---------- */

.contact-whatsapp {
    background: var(--green);
    color: #fff;
    box-shadow: 0 16px 45px rgba(37, 211, 102, .16);
}

.contact-whatsapp small,
.contact-whatsapp strong {
    color: #fff;
}

.contact-whatsapp > i:first-child {
    background: rgba(255, 255, 255, .18);
    color: #fff;
}

/* ---------- Catalogue ---------- */

.catalogue-modal {
    border-radius: 6px;
}

.catalogue-close {
    border: 1px solid rgba(255,255,255,.08);
}

/* ---------- Footer ---------- */

.site-footer {
    background:
        radial-gradient(
            circle at 80% 10%,
            rgba(199,166,106,.05),
            transparent 25%
        ),
        #050505;
}

/* =========================================================
   PREMIUM MOBILE EXPERIENCE
========================================================= */

@media (max-width: 800px) {

    .section {
        padding: 82px 0;
    }

    .header-inner {
        height: 70px;
    }

    .brand-main {
        font-size: 21px;
        letter-spacing: 3px;
    }

    .brand-sub {
        font-size: 7px;
        letter-spacing: 4px;
    }

    .main-nav {
        top: 70px;
        left: 12px;
        right: 12px;
        border-radius: 14px;
        padding: 8px;
    }

    .nav-link {
        padding: 16px 14px;
    }

    .hero {
        min-height: 100svh;
        height: 100svh;
    }

    .hero-content {
        width: min(100% - 36px, 560px);
        padding-top: 62px;
    }

    .hero-eyebrow {
        margin-bottom: 15px;
        padding-left: 34px;
        font-size: 9px;
        letter-spacing: .18em;
    }

    .hero-eyebrow::before {
        width: 24px;
    }

    .hero-content h1 {
        max-width: 100%;
        font-size: clamp(42px, 13vw, 62px);
        line-height: .94;
        letter-spacing: -.045em;
    }

    .hero-title {
        margin-top: 17px;
        font-size: 20px;
    }

    .hero-description {
        margin-top: 12px;
        max-width: 100%;
        font-size: 14px;
        line-height: 1.65;
    }

    .hero-buttons {
        margin-top: 24px;
        gap: 9px;
        max-width: 100%;
    }

    .hero-buttons .btn {
        min-height: 52px;
        width: 100%;
    }

    .hero-indicators {
        bottom: 25px;
    }

    .trending-card {
        width: 245px;
        height: 335px;
    }

    .categories-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .category-card {
        min-height: 205px;
    }

    .category-card-content {
        left: 16px;
        right: 16px;
        bottom: 16px;
    }

    .category-name {
        font-size: 20px;
    }

    .catalogue-modal {
        border-radius: 14px;
    }
}

/* ---------- Small phones ---------- */

@media (max-width: 520px) {

    .container {
        width: min(calc(100% - 24px), var(--container));
    }

    .hero-content {
        width: calc(100% - 28px);
        padding-top: 54px;
    }

    .hero-content h1 {
        font-size: clamp(38px, 12vw, 52px);
    }

    .hero-title {
        font-size: 18px;
    }

    .hero-description {
        font-size: 13px;
        line-height: 1.55;
    }

    .hero-buttons .btn {
        min-height: 50px;
        font-size: 11px;
    }

    .categories-grid {
        grid-template-columns: 1fr 1fr;
    }

    .category-card {
        min-height: 175px;
    }

    .category-name {
        font-size: 18px;
    }

    .product-info {
        padding: 14px;
    }

    .product-name {
        font-size: 17px;
    }
}

/* ---------- Extra-small phones ---------- */

@media (max-width: 380px) {

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-description {
        font-size: 12px;
    }

    .category-card {
        min-height: 155px;
    }
}


/* =========================================================
   FINAL STEVE’S BOUTIQUE POLISH
========================================================= */
@media (max-width: 992px) {
.main-nav.mobile-menu.open {
        display: flex;
    }

    .mobile-menu {
        display: grid;
    }
}
/* Luxury category grid */
.categories-grid {
    align-items: stretch;
}

.category-card {
    overflow: hidden;
    isolation: isolate;
}

.category-card .category-image img {
    transition: transform 900ms cubic-bezier(.2,.65,.2,1), filter 500ms ease;
}

.category-card:hover .category-image img {
    transform: scale(1.06);
    filter: saturate(.9) contrast(1.04);
}

.category-card-content .category-eyebrow {
    display: block;
    margin-bottom: 6px;
    color: rgba(255,255,255,.62);
    font-size: .58rem;
    letter-spacing: .16em;
    text-transform: uppercase;
}

/* Product card image refinement */
.product-card .product-image img,
.catalogue-product-image img {
    transition: transform 700ms cubic-bezier(.2,.65,.2,1);
}

.product-card:hover .product-image img,
.catalogue-product:hover .catalogue-product-image img {
    transform: scale(1.035);
}

/* Make every WhatsApp action unmistakably premium */
.header-whatsapp,
.btn-whatsapp,
.product-whatsapp-btn,
.catalogue-product-whatsapp,
.contact-whatsapp {
    -webkit-tap-highlight-color: transparent;
}

.btn-whatsapp,
.header-whatsapp {
    background: #25d366 !important;
    color: #fff !important;
}

.btn-whatsapp i,
.header-whatsapp i {
    color: #fff !important;
}

.btn-whatsapp:hover,
.header-whatsapp:hover {
    background: #128c7e !important;
    color: #fff !important;
}

/* Mobile hero — specifically tuned for 412px devices */
@media (max-width: 600px) {
    .hero {
        min-height: 100svh;
        height: 100svh;
    }

    .hero-content {
        width: calc(100% - 28px);
        max-width: 560px;
        padding: 48px 0 70px;
    }

    .hero-content h1 {
        font-size: clamp(38px, 12vw, 54px);
        line-height: .94;
        max-width: 100%;
        overflow-wrap: normal;
    }

    .hero-description {
        max-width: 100%;
        font-size: 13px;
        line-height: 1.55;
    }

    .hero-buttons {
        width: 100%;
        max-width: 420px;
        flex-direction: column;
        gap: 9px;
    }

    .hero-buttons .btn {
        width: 100%;
        min-height: 50px;
    }

    .categories-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .category-card {
        min-height: 190px;
    }

    .product-card .product-image {
        aspect-ratio: 4 / 5;
    }
}

@media (max-width: 380px) {
    .hero-content h1 {
        font-size: 35px;
    }

    .hero-description {
        font-size: 12px;
    }

    .category-card {
        min-height: 165px;
    }
}
/* =========================================================
   STEVE'S BOUTIQUE — MOBILE HEADER UPDATE
========================================================= */

@media (max-width: 800px) {
    .site-header {
        background: #ffffff !important;
        border-bottom: 1px solid rgba(0,0,0,.10);
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
    .site-header.scrolled {
        background: #ffffff !important;
        border-color: rgba(0,0,0,.10);
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
    .header-inner { height: 64px; padding: 0; }
    .brand-main { color: #111 !important; font-size: 20px; letter-spacing: 3px; }
    .brand-sub { color: var(--gold); font-size: 7px; letter-spacing: 4px; }
    .header-actions { display:flex !important; align-items:center; justify-content:center; gap:17px; margin-left:auto; }
    .header-whatsapp { display:none !important; }
.mobile-menu { display:flex !important; width:22px; height:22px; padding:0; gap:4px; background:transparent !important; align-items:center; justify-content:center; flex-direction:column; }
    .mobile-menu span { display:block; width:13px; height:1px; background:#222 !important; transition:transform 300ms ease, opacity 300ms ease; }
    .mobile-menu.open span:nth-child(1) { transform:translateY(5px) rotate(45deg); }
    .mobile-menu.open span:nth-child(2) { opacity:0; }
    .mobile-menu.open span:nth-child(3) { transform:translateY(-5px) rotate(-45deg); }
    .main-nav { top:64px; left:0; right:0; padding:8px 18px; background:#fff; border:0; border-top:1px solid rgba(0,0,0,.08); box-shadow:0 15px 35px rgba(0,0,0,.10); }
    .nav-link { color:#222 !important; padding:16px 5px; border-bottom:1px solid rgba(0,0,0,.08); font-size:12px; }
    .nav-link:hover, .nav-link.active { color:#000 !important; }
}

@media (max-width:520px) {
    .header-inner { height:62px; }
    .brand-main { font-size:18px; letter-spacing:2.5px; }
    .brand-sub { font-size:6px; letter-spacing:3.5px; }
    .header-actions { gap:15px; }
.mobile-menu { width:20px; height:20px; }
    .mobile-menu span { width:12px; }
    .main-nav { top:62px; }
}
/* =========================================================
   STEVE'S BOUTIQUE — FINAL CLEAN OVERRIDES
   Keep this section last so it controls the final appearance.
========================================================= */

/* ---------- Hero: image slider only ---------- */

.hero-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slide video,
.hero-video-slide,
.hero-video {
    display: none !important;
}

/* ---------- Mobile header: hamburger only ---------- */

@media (max-width: 800px) {

    .site-header {
        background: #fff !important;
        border-bottom: 1px solid rgba(0, 0, 0, .08) !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    .site-header.scrolled {
        background: #fff !important;
        border-bottom-color: rgba(0, 0, 0, .08) !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    .header-inner {
        height: 64px;
        padding: 0;
    }

    .brand-main {
        color: #111 !important;
        font-size: 20px;
        letter-spacing: 3px;
    }

    .brand-sub {
        color: var(--gold);
        font-size: 7px;
        letter-spacing: 4px;
    }

    .header-actions {
        display: flex !important;
        align-items: center;
        justify-content: center;
        margin-left: auto;
        gap: 0;
    }

    .header-whatsapp {
        display: none !important;
    }

    /* No search icon, no pseudo-element, hamburger only. */
    .header-actions::before {
        content: none !important;
        display: none !important;
    }

    .mobile-menu {
        display: flex !important;
        width: 24px;
        height: 24px;
        padding: 0;
        margin: 0;
        background: transparent !important;
        border: 0 !important;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 4px;
    }

    .mobile-menu span {
        display: block;
        width: 15px;
        height: 1px;
        background: #111 !important;
        transition:
            transform .3s ease,
            opacity .3s ease;
    }

    .mobile-menu.open span:nth-child(1) {
        transform: translateY(5px) rotate(45deg);
    }

    .mobile-menu.open span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu.open span:nth-child(3) {
        transform: translateY(-5px) rotate(-45deg);
    }

    .main-nav {
        top: 64px;
        left: 0;
        right: 0;
        padding: 8px 18px;
        background: #fff !important;
        border: 0;
        border-top: 1px solid rgba(0, 0, 0, .08);
        border-radius: 0;
        box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
    }

    .nav-link {
        color: #222 !important;
        padding: 16px 5px;
        border-bottom: 1px solid rgba(0, 0, 0, .08);
        font-size: 12px;
    }

    .nav-link:hover,
    .nav-link.active {
        color: #000 !important;
    }
}

@media (max-width: 520px) {

    .header-inner {
        height: 62px;
    }

    .brand-main {
        font-size: 18px;
        letter-spacing: 2.5px;
    }

    .brand-sub {
        font-size: 6px;
        letter-spacing: 3.5px;
    }

    .mobile-menu {
        width: 22px;
        height: 22px;
    }

    .mobile-menu span {
        width: 14px;
    }

    .main-nav {
        top: 62px;
    }
}

/* ---------- Final WhatsApp treatment ---------- */

.btn-whatsapp,
.product-whatsapp,
.contact-whatsapp,
.whatsapp-main-btn {
    -webkit-tap-highlight-color: transparent;
}

.btn-whatsapp,
.product-whatsapp {
    background: var(--green);
    color: #fff;
}

.btn-whatsapp:hover,
.product-whatsapp:hover {
    background: var(--green-dark);
    color: #fff;
}

/* ---------- Responsive safety ---------- */

@media (max-width: 800px) {
    .hero {
        min-height: 100svh;
    }

    .hero-content {
        width: min(calc(100% - 28px), 560px);
    }
}

/* ---------- Accessibility ---------- */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

    .trending-track {
        animation: none !important;
    }
}



/* =========================================================
   STEVE'S BOUTIQUE — SOCIAL MEDIA ICONS
========================================================= */

.footer-socials {
    display: flex !important;
    align-items: center;
    gap: 12px;
    visibility: visible !important;
    opacity: 1 !important;
}

.footer-socials a {
    width: 42px;
    height: 42px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.06);
    text-decoration: none;
    visibility: visible !important;
    opacity: 1 !important;
    transition:
        transform 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease;
}

.footer-socials a i {
    display: block !important;
    font-size: 16px;
    color: #ffffff !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.footer-socials a:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.4);
}


/* Mobile */

@media (max-width: 800px) {

    .footer-socials {
        display: flex !important;
        justify-content: flex-start;
        gap: 10px;
        margin-top: 20px;
    }

    .footer-socials a {
        width: 40px;
        height: 40px;
    }

    .footer-socials a i {
        font-size: 15px;
    }

}


/* =========================================
   BACK TO TOP — KEEP AWAY FROM SOCIAL ICONS
========================================= */

.back-to-top {
    right: 28px;
    bottom: 28px;
    z-index: 1000;
}

/* Desktop */
@media (min-width: 801px) {
    .back-to-top {
        right: 30px;
        bottom: 30px;
    }
}

/* Mobile */
@media (max-width: 800px) {
    .back-to-top {
        right: 18px;
        bottom: 18px;
    }
}

/* =========================================
   BACK TO TOP — ABOVE SOCIAL ICONS
========================================= */

.back-to-top {
    right: 28px;
    bottom: 95px;
    z-index: 1000;
}

@media (max-width: 800px) {
    .back-to-top {
        right: 18px;
        bottom: 85px;
    }
}

/* =========================================================
   STEVE'S BOUTIQUE — FINAL OVERRIDES
   Added to resolve the latest hero, social, mobile and
   back-to-top styling without changing the HTML structure.
========================================================= */

/* ---------- HERO EYEBROW: REMOVE DECORATIVE LINE ---------- */
.hero-eyebrow {
    padding-left: 0 !important;
    position: relative;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
    display: none !important;
    content: none !important;
}

/* ---------- HERO: IMAGE SLIDER ONLY ---------- */
.hero-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slide video,
.hero-video,
.hero-video-slide {
    display: none !important;
}

/* ---------- MOBILE HEADER: HAMBURGER ONLY ---------- */
@media (max-width: 800px) {
    .site-header,
    .site-header.scrolled {
        background: #fff !important;
        border-bottom: 1px solid rgba(0, 0, 0, .08) !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    .header-inner {
        height: 64px;
        padding: 0;
    }

    .brand-main {
        color: #111 !important;
        font-size: 20px;
        letter-spacing: 3px;
    }

    .brand-sub {
        color: var(--gold) !important;
        font-size: 7px;
        letter-spacing: 4px;
    }

    .header-actions {
        display: flex !important;
        align-items: center;
        justify-content: center;
        margin-left: auto;
        gap: 0;
    }

    .header-whatsapp {
        display: none !important;
    }

    .mobile-menu {
        display: flex !important;
        width: 24px;
        height: 24px;
        padding: 0;
        margin: 0;
        background: transparent !important;
        border: 0 !important;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 4px;
    }

    .mobile-menu span {
        display: block;
        width: 15px;
        height: 1px;
        background: #111 !important;
    }

    .main-nav {
        top: 64px;
        left: 0;
        right: 0;
        padding: 8px 18px;
        background: #fff !important;
        border: 0;
        border-top: 1px solid rgba(0, 0, 0, .08);
        border-radius: 0;
        box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
    }

    .nav-link {
        color: #222 !important;
        padding: 16px 5px;
        border-bottom: 1px solid rgba(0, 0, 0, .08);
        font-size: 12px;
    }

    .nav-link:hover,
    .nav-link.active {
        color: #000 !important;
    }
}

@media (max-width: 520px) {
    .header-inner {
        height: 62px;
    }

    .brand-main {
        font-size: 18px;
        letter-spacing: 2.5px;
    }

    .brand-sub {
        font-size: 6px;
        letter-spacing: 3.5px;
    }

    .mobile-menu {
        width: 22px;
        height: 22px;
    }

    .mobile-menu span {
        width: 14px;
    }

    .main-nav {
        top: 62px;
    }
}

/* ---------- WHATSAPP BUTTONS ---------- */
.btn-whatsapp,
.product-whatsapp,
.contact-whatsapp,
.whatsapp-main-btn {
    -webkit-tap-highlight-color: transparent;
}

.btn-whatsapp,
.product-whatsapp {
    background: var(--green) !important;
    color: #fff !important;
}

.btn-whatsapp:hover,
.product-whatsapp:hover {
    background: var(--green-dark) !important;
    color: #fff !important;
}

/* ---------- SOCIAL ICONS ---------- */
.footer-socials {
    display: flex !important;
    align-items: center;
    gap: 10px;
    visibility: visible !important;
    opacity: 1 !important;
}

.footer-socials a {
    width: 42px;
    height: 42px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    color: #fff !important;
    background: rgba(255, 255, 255, .06);
    text-decoration: none;
    visibility: visible !important;
    opacity: 1 !important;
    transition: transform .3s ease, background .3s ease, border-color .3s ease;
}

.footer-socials a i {
    display: block !important;
    font-size: 16px;
    color: #fff !important;
}

.footer-socials a:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, .14);
    border-color: rgba(255, 255, 255, .4);
}

/* ---------- BACK TO TOP: ABOVE SOCIAL ICONS ---------- */
.back-to-top {
    right: 28px !important;
    bottom: 95px !important;
    z-index: 1000 !important;
}

@media (max-width: 800px) {
    .footer-socials {
        justify-content: flex-start;
        gap: 10px;
        margin-top: 20px;
    }

    .footer-socials a {
        width: 40px;
        height: 40px;
    }

    .footer-socials a i {
        font-size: 15px;
    }

    .back-to-top {
        right: 18px !important;
        bottom: 85px !important;
    }
}

/* ---------- RESPONSIVE SAFETY ---------- */
@media (max-width: 800px) {
    .hero {
        min-height: 100svh;
    }

    .hero-content {
        width: min(calc(100% - 28px), 560px);
    }
}

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

    .trending-track {
        animation: none !important;
    }
}
