/* ═══════════════════════════════════════════════════════════
   ELEVADAS — Design System v2
   Desebia-inspired editorial minimalism + earth tones
   ═══════════════════════════════════════════════════════════ */

/* ── CSS Custom Properties ────────────────────────────── */
:root {
    --bg-cream: #FAF6F1;
    --bg-warm: #F0E8DF;
    --bg-warm-alpha: rgba(250, 246, 241, 0.97);

    /* Editorial Colors */
    --black: #111111;
    --charcoal: #333333;
    --sand: #C9C0B3;
    --taupe: #8C7B68;
    --gold: #C5A059;
    --gold-light: #E0C99E;
    --white: #FFFFFF;
    --gold-accent: #A89279;

    /* Typography */
    --ff-heading: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
    --ff-body: 'Outfit', 'Helvetica Neue', Helvetica, sans-serif;
    --ff-accent: 'Cormorant Garamond', Georgia, serif;

    --nav-height: 72px;
    --container-max: 1280px;

    --radius: 0px;

    --ease-smooth: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Reset & Base ─────────────────────────────────────── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--ff-body);
    font-weight: 300;
    color: var(--charcoal);
    background-color: var(--bg-cream);
    line-height: 1.7;
    overflow-x: hidden;
}

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

/* Fix native Tiendanube image stretching */
.js-item-image, .item-image, .product-image, .js-product-image, .modal-body img, .ajax-cart-item img {
    object-fit: cover !important;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s var(--ease-smooth);
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 32px;
}

/* ── Scrollbar ────────────────────────────────────────── */
::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: var(--bg-cream);
}

::-webkit-scrollbar-thumb {
    background: var(--sand);
    border-radius: 2px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--taupe);
}

/* ── Selection ────────────────────────────────────────── */
::selection {
    background: var(--gold-light);
    color: var(--black);
}


/* ══════════════════════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ff-body);
    font-weight: 400;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 15px 40px;
    border: none;
    cursor: pointer;
    transition: all 0.5s var(--ease-out-expo);
    position: relative;
    background: none;
}

.btn--hero {
    background: var(--white);
    color: var(--black);
    border: 1px solid var(--white);
}

.btn--hero:hover {
    background: transparent;
    color: var(--white);
}

.btn--outline {
    background: transparent;
    color: var(--black);
    border: 1px solid var(--black);
}

.btn--outline:hover {
    background: var(--black);
    color: var(--white);
}

/* ══════════════════════════════════════════════════════════
   SECTION HEADER
   ══════════════════════════════════════════════════════════ */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header__label {
    font-family: var(--ff-accent);
    font-style: italic;
    font-size: 1rem;
    color: var(--taupe);
    display: block;
    margin-bottom: 10px;
    letter-spacing: 0.03em;
}

.section-header__title {
    font-family: var(--ff-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 400;
    color: var(--black);
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.section-header__line {
    width: 32px;
    height: 1px;
    background: var(--black);
    margin: 0 auto;
}


/* ══════════════════════════════════════════════════════════
   NAVBAR — Desebia style: transparent → solid on scroll
   ══════════════════════════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    z-index: 2147483640 !important;
    transition: all 0.5s var(--ease-out-expo);
}

.navbar.scrolled,
.navbar.menu-open {
    background: var(--bg-warm-alpha);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}

/* Logo */
.navbar__logo {
    display: flex;
    align-items: center;
    z-index: 10001;
}

.navbar__logo-img {
    height: 32px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: all 0.5s var(--ease-out-expo);
}

.navbar.scrolled .navbar__logo-img,
.navbar.menu-open .navbar__logo-img {
    filter: brightness(0) invert(0.08);
}

/* Links */
.navbar__links {
    display: flex;
    gap: 48px;
}

.navbar__link {
    font-family: var(--ff-body);
    font-weight: 300;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--white);
    position: relative;
    padding: 4px 0;
    transition: all 0.4s var(--ease-smooth);
}

.navbar.scrolled .navbar__link {
    color: var(--black);
}

.navbar__link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width 0.4s var(--ease-out-expo);
}

.navbar__link:hover::after {
    width: 100%;
}

/* Hamburger — 2 lines, minimal */
.navbar__hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 10001;
    width: 44px;
    height: 44px;
    align-items: flex-end;
    justify-content: center;
}

.navbar__hamburger span {
    display: block;
    height: 1px;
    background: var(--white);
    transition: all 0.5s var(--ease-out-expo);
    transform-origin: center;
}

.navbar__hamburger span:first-child {
    width: 24px;
}

.navbar__hamburger span:last-child {
    width: 16px;
}

.navbar.scrolled .navbar__hamburger span,
.navbar.menu-open .navbar__hamburger span {
    background: var(--black);
}

/* Hamburger → X */
.navbar__hamburger.active span {
    background: var(--black);
}

.navbar__hamburger.active span:first-child {
    width: 20px;
    transform: translateY(3.5px) rotate(45deg);
}

.navbar__hamburger.active span:last-child {
    width: 20px;
    transform: translateY(-3.5px) rotate(-45deg);
}


/* ══════════════════════════════════════════════════════════
   MOBILE MENU — Fullscreen overlay (Desebia style)
   ══════════════════════════════════════════════════════════ */
.custom-mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--bg-cream);
    z-index: 2147483645 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s var(--ease-out-expo);
}

.custom-mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.custom-mobile-menu__content {
    text-align: center;
    width: 100%;
    transform: translateY(20px);
    transition: transform 0.6s var(--ease-out-expo) 0.1s;
}

.custom-mobile-menu.active .custom-mobile-menu__content {
    transform: translateY(0);
}

.custom-mobile-menu__links {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.custom-mobile-menu__link {
    font-family: var(--ff-heading);
    font-size: clamp(2rem, 8vw, 3.5rem);
    font-weight: 400;
    color: var(--black);
    letter-spacing: -0.01em;
    padding: 12px 0;
    display: block;
    transition: all 0.4s var(--ease-smooth);
    opacity: 0;
    transform: translateY(20px);
}

.custom-mobile-menu.active .custom-mobile-menu__link {
    opacity: 1;
    transform: translateY(0);
}

.custom-mobile-menu.active .custom-mobile-menu__links li:nth-child(1) .custom-mobile-menu__link { transition-delay: 0.15s; }
.custom-mobile-menu.active .custom-mobile-menu__links li:nth-child(2) .custom-mobile-menu__link { transition-delay: 0.2s; }
.custom-mobile-menu.active .custom-mobile-menu__links li:nth-child(3) .custom-mobile-menu__link { transition-delay: 0.25s; }
.custom-mobile-menu.active .custom-mobile-menu__links li:nth-child(4) .custom-mobile-menu__link { transition-delay: 0.3s; }

.custom-mobile-menu__link:hover {
    color: var(--taupe);
}

.custom-mobile-menu__footer {
    margin-top: 60px;
    display: flex;
    gap: 32px;
    justify-content: center;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s var(--ease-out-expo) 0.4s;
}

.custom-mobile-menu.active .custom-mobile-menu__footer {
    opacity: 1;
    transform: translateY(0);
}

.custom-mobile-menu__social {
    font-family: var(--ff-body);
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--taupe);
    transition: color 0.3s var(--ease-smooth);
}

.custom-mobile-menu__social:hover {
    color: var(--black);
}


/* ══════════════════════════════════════════════════════════
   HERO CAROUSEL
   ══════════════════════════════════════════════════════════ */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
}

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

.hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s var(--ease-smooth);
    z-index: 1;
}

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

.hero__slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    /* Subtle Ken Burns zoom on active slide */
    transform: scale(1);
    transition: transform 8s linear;
}

.hero__slide.active .hero__slide-img {
    transform: scale(1.05);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.35) 0%,
        rgba(0, 0, 0, 0.1) 50%,
        rgba(0, 0, 0, 0.5) 100%
    );
    z-index: 3;
    pointer-events: none;
}

.hero__content {
    position: absolute;
    bottom: 15%;
    left: 0;
    right: 0;
    z-index: 4;
    text-align: center;
    padding: 0 32px;
}

.hero__tagline {
    font-family: var(--ff-accent);
    font-style: italic;
    font-size: clamp(1.1rem, 3vw, 1.6rem);
    color: var(--white);
    margin-bottom: 32px;
    letter-spacing: 0.03em;
    opacity: 0.9;
}

/* Hero Dots */
.hero__dots {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 12px;
}

.hero__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.6);
    background: transparent;
    cursor: pointer;
    transition: all 0.4s var(--ease-smooth);
    padding: 0;
}

.hero__dot.active {
    background: var(--white);
    border-color: var(--white);
}

.hero__dot:hover {
    background: rgba(255, 255, 255, 0.5);
}


/* ══════════════════════════════════════════════════════════
   COLLECTION / PRODUCT GRID — CSS Grid (not masonry)
   ══════════════════════════════════════════════════════════ */
.collection {
    padding: 100px 0 80px;
    background: var(--bg-cream);
}

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



/* ── Product Card ──────────────────────────────────────── */
.product-card {
    background: transparent;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.product-card__image-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background-color: #e8e2da;
}

.product-card__image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center top !important;
    display: block !important;
    transition: opacity 0.35s var(--ease-smooth), transform 0.8s var(--ease-out-expo);
}

/* Multiple images for hover gallery */
.product-card__image-wrap .product-card__image:not(:first-child) {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    opacity: 0; /* No !important here to allow transition */
    z-index: 1;
}

.product-card__image-wrap .product-card__image.hover-active {
    opacity: 1;
    z-index: 2;
}

.product-card:hover .product-card__image:first-child {
    transform: scale(1.02);
}

/* Hover zones - invisible overlay for detecting mouse position */
.product-card__hover-zones {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    opacity: 0;
    transition: opacity 0.3s;
}

.product-card:hover .product-card__hover-zones {
    opacity: 1;
}

.product-card__hover-zone {
    flex: 1;
    cursor: pointer;
}

/* Hover dots indicator */
.product-card__hover-dots {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    gap: 4px;
    opacity: 0;
    transition: opacity 0.3s var(--ease-smooth);
}

.product-card:hover .product-card__hover-dots {
    opacity: 1;
}

.product-card__hover-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transition: background 0.2s;
}

.product-card__hover-dot.active {
    background: var(--white);
}

.product-card__info {
    padding: 16px 0 24px;
}

.product-card__name {
    font-family: var(--ff-body);
    font-size: 0.78rem;
    font-weight: 400;
    color: var(--black);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.product-card__price {
    font-family: var(--ff-body);
    font-weight: 300;
    font-size: 0.85rem;
    color: var(--taupe);
}

.collection__cta {
    text-align: center;
    margin-top: 64px;
}


/* ══════════════════════════════════════════════════════════
   ABOUT / NOSOTRAS
   ══════════════════════════════════════════════════════════ */
.about {
    padding: 100px 0;
    background: var(--bg-warm);
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about__image-wrap {
    position: relative;
    overflow: hidden;
}

.about__image {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.about__title {
    font-family: var(--ff-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 400;
    color: var(--black);
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.about__content .section-header__line {
    margin: 0 0 32px 0;
}

.about__text {
    font-size: 0.95rem;
    color: var(--charcoal);
    margin-bottom: 20px;
    line-height: 1.8;
    font-weight: 300;
}

.about__values {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 36px;
}

.about__value {
    display: flex;
    align-items: center;
    gap: 14px;
}

.about__value-icon {
    color: var(--gold);
    font-size: 0.9rem;
}

.about__value-text {
    font-family: var(--ff-body);
    font-weight: 300;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--charcoal);
}


/* ══════════════════════════════════════════════════════════
   INSTAGRAM CTA
   ══════════════════════════════════════════════════════════ */
.instagram-cta {
    padding: 120px 0;
    background: var(--bg-cream);
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.instagram-cta__label {
    font-family: var(--ff-accent);
    font-style: italic;
    font-size: 1rem;
    color: var(--taupe);
    display: block;
    margin-bottom: 12px;
}

.instagram-cta__title {
    font-family: var(--ff-heading);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 400;
    color: var(--black);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.instagram-cta__text {
    font-family: var(--ff-body);
    font-weight: 300;
    font-size: 0.95rem;
    color: var(--taupe);
    margin-bottom: 40px;
}


/* ══════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════ */
.footer {
    background: var(--bg-warm);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer__logo {
    width: 100px;
    margin-bottom: 20px;
}

.footer__desc {
    font-size: 0.88rem;
    color: var(--taupe);
    line-height: 1.7;
    font-weight: 300;
}

.footer__heading {
    font-family: var(--ff-body);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 20px;
}

.footer__list li {
    margin-bottom: 10px;
}

.footer__list a {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--taupe);
    transition: color 0.3s var(--ease-smooth);
}

.footer__list a:hover {
    color: var(--black);
}

.footer__bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 0.78rem;
    font-weight: 300;
    color: var(--taupe);
}

.footer__credit {
    margin-top: 6px;
    color: var(--gold);
    font-family: var(--ff-accent);
    font-style: italic;
    font-size: 0.88rem;
}


/* ══════════════════════════════════════════════════════════
   SCROLL REVEAL ANIMATION
   ══════════════════════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

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

/* stagger children in product grid */
.product-grid__item.reveal:nth-child(1) { transition-delay: 0.05s; }
.product-grid__item.reveal:nth-child(2) { transition-delay: 0.1s; }
.product-grid__item.reveal:nth-child(3) { transition-delay: 0.15s; }
.product-grid__item.reveal:nth-child(4) { transition-delay: 0.2s; }
.product-grid__item.reveal:nth-child(5) { transition-delay: 0.25s; }
.product-grid__item.reveal:nth-child(6) { transition-delay: 0.3s; }
.product-grid__item.reveal:nth-child(7) { transition-delay: 0.35s; }
.product-grid__item.reveal:nth-child(8) { transition-delay: 0.4s; }


/* ══════════════════════════════════════════════════════════
   SPARKLES (keeping the magic touch!)
   ══════════════════════════════════════════════════════════ */
.sparkle-mouse {
    position: fixed;
    width: 3px;
    height: 3px;
    background-color: var(--gold-light);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    box-shadow:
        0 0 6px 2px rgba(224, 201, 158, 0.5),
        0 0 12px 6px rgba(224, 201, 158, 0.1);
    animation: sparkleAnim 1.4s ease-out forwards;
    z-index: 9998;
}

@keyframes sparkleAnim {
    0% {
        opacity: 0;
        transform: translate(0, 0) scale(0);
    }
    12% {
        opacity: 0.7;
        transform: translate(calc(var(--dx) * 0.25), calc(var(--dy) * 0.25)) scale(1.3);
    }
    100% {
        opacity: 0;
        transform: translate(var(--dx), var(--dy)) scale(0);
    }
}


/* ══════════════════════════════════════════════════════════
   PRELOADER — simple & clean
   ══════════════════════════════════════════════════════════ */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--bg-cream);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s var(--ease-out-expo), visibility 0.8s var(--ease-out-expo);
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader__logo-wrap {
    width: 48px;
    height: auto;
    animation: preloaderPulse 1.8s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
}

.preloader__logo {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 2px 8px rgba(197, 160, 89, 0.25));
}

@keyframes preloaderPulse {
    0% {
        transform: scale(0.96);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.06);
        opacity: 1;
    }
}


/* ══════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .about__grid {
        gap: 48px;
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --nav-height: 64px;
    }

    .container {
        padding: 0 20px;
    }

    .navbar {
        padding: 0 20px;
        background: var(--bg-cream) !important;
        box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
    }

    .navbar__logo-img {
        filter: brightness(0) invert(0.08) !important;
    }

    .navbar__hamburger {
        display: flex;
    }

    .navbar__hamburger span {
        background: var(--black) !important;
    }

    .navbar__links {
        display: none !important;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /* Swipeable Image Gallery for Mobile */
    .product-card__image-wrap > a, .item-image > a {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }
    .product-card__image-wrap > a::-webkit-scrollbar, .item-image > a::-webkit-scrollbar {
        display: none;
    }
    .product-card__image-wrap .product-card__image, .item-image img {
        position: relative !important;
        flex: 0 0 100%;
        max-width: 100%;
        height: 100% !important;
        width: 100% !important;
        object-fit: cover !important;
        scroll-snap-align: start;
        opacity: 1 !important;
        z-index: 1 !important;
    }
    .product-card__hover-zones {
        display: none !important;
    }
    .product-card__hover-dots {
        opacity: 1;
    }

    .product-card__info {
        padding: 12px 0 20px;
    }

    .product-card__name {
        font-size: 0.7rem;
    }

    .product-card__price {
        font-size: 0.78rem;
    }

    .about__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about__image {
        height: 420px;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .hero__carousel {
        height: 100vh;
        height: 100dvh;
        width: 100vw;
    }

    .hero__slide-img {
        width: 100vw !important;
        height: 100vh !important;
        height: 100dvh !important;
        object-fit: cover !important;
        object-position: center center !important;
        max-width: none !important;
    }

    .hero__tagline {
        font-size: 1rem;
    }

    .hero__content {
        bottom: 12%;
    }

    .btn {
        padding: 14px 32px;
        font-size: 0.72rem;
    }

    .collection {
        padding: 60px 0;
    }

    .about {
        padding: 60px 0;
    }

    .instagram-cta {
        padding: 80px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }
}

/* Small phone */
@media (max-width: 480px) {
    .product-grid {
        gap: 10px;
    }

    .product-card__name {
        font-size: 0.65rem;
    }

    .product-card__price {
        font-size: 0.72rem;
    }

    .hero__dots {
        bottom: 24px;
    }

    .hero__dot {
        width: 6px;
        height: 6px;
    }
}


/* ═══════════════════════════════════════════ */
/* TIENDANUBE — NUCLEAR OVERRIDES              */
/* Kill ALL native UI so only our custom       */
/* navbar, menu, and footer are visible.       */
/* ═══════════════════════════════════════════ */

/* === Navigation === */
.js-nav-head,
.js-nav-head-main,
.js-nav-head-fixed,
.nav-head,
.nav-head-top,
.nav-head-main,
.nav-head-fixed,
.header-bar-top,
.header-bar-fixed,
.js-head-main,
.head-main,
.js-head-bar,
.head-bar,
.js-page-header,
.page-header,
.nav-toggle,
.nav-desktop,
.nav-desktop-list,
.desktop-nav,
.js-desktop-nav,
[data-store="head-desktop"],
[data-store="navigation"],

/* === Mobile Navigation (INICIO/PRODUCTOS/CARRITO) === */
.js-mobile-nav,
.mobile-nav,
.mobile-nav-first-row,
.mobile-nav-second-row,
.mobile-nav.move-down,
.js-mobile-nav.move-down,
.mobile-nav-tabs-container,
.mobile-nav-tabs,
.js-mobile-nav-tabs,
.mobile-nav-tab,
.mobile-nav-icon,
.mobile-nav-label,
.visible-xs .js-mobile-nav,
.p-relative.visible-xs,

/* === Hamburger Panel (native) === */
/* Removed so cart and modals can work */

/* === Search === */
/* keep active for AJAX cart panel or modales */
.js-mobile-search-row,
.mobile-search-input-container,
.js-search-container,
.desktop-search,
.js-search-suggest,
.search-suggest,

/* === Footer (native) === */
[data-store="footer"],
.js-footer-legal,
.footer-legal,
.footer-bottom,
.footer-main,
.social-networks,

/* === Misc Tiendanube chrome === */
.shape-container,
.background-shape,
.visible-when-content-ready.social-networks,
.banner-services-home,
.notification-floating,
.js-notification,
[data-store="head-adbar"],
.ad-bar,
.cookie-banner,
.js-cookie-banner,
.display-when-content-ready .nav-head-main,
.js-nav-container,
.nav-container {
    display: none !important;
    opacity: 0 !important;
    height: 0 !important;
    max-height: 0 !important;
    min-height: 0 !important;
    overflow: hidden !important;
    pointer-events: none !important;
    visibility: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    position: absolute !important;
    top: -9999px !important;
    left: -9999px !important;
}

/* Preloader kill */
#preloader,
.preloader,
.item-preloader-container {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    z-index: -9999 !important;
}

/* Body background */
body.user-background,
body.pattern-background {
    background-image: none !important;
    background-color: var(--bg-cream) !important;
}

/* Main content spacing fix */
.js-main-content.main-content,
.js-main-content {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Cart panel native */
/* Native cart widget and counter logic are needed for AJAX functions */

/* AJAX cart panel - keep functional but restyle */
.js-ajax-cart-panel {
    background: var(--bg-cream) !important;
    border-left: 1px solid rgba(0, 0, 0, 0.06) !important;
    font-family: var(--ff-body) !important;
    color: var(--charcoal) !important;
}

.js-ajax-cart-panel .cart-item-name {
    font-family: var(--ff-body) !important;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--black) !important;
}

.js-ajax-cart-panel .btn-primary, .js-ajax-cart-panel .btn-secondary {
    font-family: var(--ff-body) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    border-radius: 0 !important;
    background: var(--black) !important;
    color: var(--white) !important;
    border: none !important;
}

.js-ajax-cart-panel .btn-primary:hover, .js-ajax-cart-panel .btn-secondary:hover {
    background: var(--taupe) !important;
}

/* Ensure our custom elements always show */
.navbar,
#navbar,
#custom-navbar {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.mobile-menu,
#mobileMenu,
#custom-mobileMenu {
    /* Only show when active */
    visibility: hidden;
    opacity: 0;
}

.mobile-menu.active,
#mobileMenu.active,
#custom-mobileMenu.active {
    visibility: visible !important;
    opacity: 1 !important;
    display: flex !important;
}