/* ══════════════════════════════════════════
   SPICY MARTINI — Design System & Styles
   ══════════════════════════════════════════ */

/* ── CSS Variables ── */
:root {
    --white: #FFFFFF;
    --cream: #F5F5F5;
    --red: #111111;
    --red-light: rgba(0,0,0,0.08);
    --red-hover: #333333;
    --dark: #1A1A1A;
    --gray: #888;
    --gray-light: #E5E5E5;
    --whatsapp: #25D366;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --font-mono: 'Space Mono', monospace;
    --font-condensed: 'Barlow Condensed', sans-serif;
    --nav-h: 110px;
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-body);
    color: var(--dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ── Loading Screen ── */
/* ── Loading Screen: estilos inline en index.html ── */

/* ── Cookie Banner ── */
.cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 9000;
    background: var(--dark); color: var(--white);
    padding: 16px 24px; display: flex; align-items: center; justify-content: center; gap: 20px;
    font-size: 14px; transform: translateY(100%); transition: transform 0.5s var(--ease-out);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner.hidden { display: none; }
.btn-cookie {
    background: #111111; color: var(--white);
    padding: 8px 24px; border-radius: 4px; font-weight: 600;
    font-size: 13px; letter-spacing: 1px; transition: background 0.3s;
}
.btn-cookie:hover { background: var(--red-hover); }

/* ── Custom Cursor ── */
.custom-cursor {
    width: 10px; height: 10px; border-radius: 50%; background: #111111;
    position: fixed; top: 0; left: 0; pointer-events: none; z-index: 99999;
    transition: width 0.2s, height 0.2s, margin 0.2s;
    margin: -5px 0 0 -5px; mix-blend-mode: difference;
}
.custom-cursor.hover { width: 40px; height: 40px; margin: -20px 0 0 -20px; background: rgba(0,0,0,0.25); }
.custom-cursor-follower {
    width: 30px; height: 30px; border-radius: 50%;
    border: 1.5px solid var(--red); opacity: 0.4;
    position: fixed; top: 0; left: 0; pointer-events: none; z-index: 99998;
    margin: -15px 0 0 -15px; transition: opacity 0.3s;
}
/* ── Custom Cursor (Disabled) ── */
.custom-cursor, .custom-cursor-follower { display: none !important; }
* { cursor: default; }
a, button, [role="button"], .carousel-card, .product-card, .collection-card, .insta-item { cursor: pointer; }

/* ── Navigation ── */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 8000;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: transform 0.35s ease, background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.site-header.header-hidden {
    transform: translateY(-100%);
}
.site-header.scrolled {
    background: rgba(255,255,255,0.98); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border-bottom-color: #111111; box-shadow: 0 2px 20px rgba(0,0,0,0.04);
}
.site-header.scrolled .nav-link { color: #111111; }
.site-header.scrolled .nav-link:hover, .site-header.scrolled .nav-link.active { color: #B63432; }
.site-header.scrolled .nav-icon-btn { color: var(--dark); }
.site-header.scrolled .hamburger span { background: var(--dark); }
.nav-container {
    max-width: 1400px; margin: 0 auto;
    padding: 0 40px; height: var(--nav-h); min-height: 110px;
    display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
    perspective: 1000px;
}
.nav-logo {
    position: relative; display: inline-block; perspective: 800px; text-align: center; margin: 0 auto;
}
.nav-logo img {
    width: 90px; height: 90px; object-fit: contain; border-radius: 50%;
    display: block;
    transform-style: preserve-3d;
    animation: coin-flip 8s linear infinite;
    will-change: transform;
}
@keyframes coin-flip {
    0%   { transform: rotateY(0deg);   }
    100% { transform: rotateY(360deg); }
}
.nav-links { display: flex; gap: 24px; justify-content: flex-start; }
.nav-link {
    font-family: var(--font-condensed); font-weight: 500;
    font-size: 13px; letter-spacing: 0.1em; color: #FFFFFF;
    position: relative; padding: 4px 0; transition: color 0.3s;
}
.nav-link::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0; height: 2px; background: #B63432;
    transition: width 0.3s var(--ease);
}
.nav-link:hover, .nav-link.active { color: #B63432; }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 12px; justify-content: flex-end; }
.nav-icon-btn {
    width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
    border-radius: 50%; color: var(--white); transition: background 0.3s, color 0.3s;
}
.nav-icon-btn:hover { background: rgba(182,52,50,0.15); color: #B63432; }
.site-header.scrolled .nav-icon-btn:hover { background: rgba(182,52,50,0.1); color: #B63432; }
.cart-btn { position: relative; }
.cart-count {
    position: absolute; top: 2px; right: 2px;
    background: #111111; color: var(--white);
    font-size: 10px; font-weight: 700; width: 18px; height: 18px;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    opacity: 0; transform: scale(0); transition: all 0.3s var(--ease-out);
}
.cart-count.show { opacity: 1; transform: scale(1); }

/* ── Hamburger ── */
.hamburger { display: none; flex-direction: column; gap: 5px; width: 24px; }
.hamburger span { display: block; width: 100%; height: 2px; background: var(--white); transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Search Overlay ── */
.search-overlay {
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: var(--white); z-index: 7999;
    padding: 24px 40px; border-bottom: 1px solid var(--gray-light);
    transform: translateY(-100%); opacity: 0; visibility: hidden;
    transition: all 0.4s var(--ease-out);
}
.search-overlay.open { transform: translateY(0); opacity: 1; visibility: visible; }
.search-container { max-width: 800px; margin: 0 auto; display: flex; gap: 16px; align-items: center; }
.search-input {
    flex: 1; border: none; border-bottom: 2px solid var(--dark);
    padding: 12px 0; font-size: 20px; font-family: var(--font-display);
    background: transparent; outline: none;
}
.search-input:focus { border-color: #111111; }
.search-close-btn { font-size: 28px; color: var(--dark); padding: 8px; }
.search-results { max-width: 800px; margin: 16px auto 0; }
.search-result-item {
    display: flex; align-items: center; gap: 16px; padding: 12px 0;
    border-bottom: 1px solid var(--gray-light); cursor: pointer; transition: background 0.2s;
}
.search-result-item:hover { background: var(--cream); margin: 0 -12px; padding: 12px; border-radius: 8px; }
.search-result-img { width: 50px; height: 60px; object-fit: cover; border-radius: 4px; }
.search-result-info h4 { font-size: 14px; font-weight: 600; }
.search-result-info p { font-size: 13px; color: var(--gray); }

/* ── Mobile Menu ── */
.mobile-menu {
    position: fixed; inset: 0; z-index: 7998;
    background: rgba(26,26,26,0.96);
    display: flex; align-items: center; justify-content: center; flex-direction: column;
    opacity: 0; visibility: hidden; transition: all 0.4s var(--ease);
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu-logo { margin-bottom: 40px; }
.mobile-menu-logo img { width: 60px; height: 60px; border-radius: 50%; }
.mobile-menu-content { text-align: center; }
.mobile-menu-link {
    display: block; font-family: var(--font-display); font-size: 36px;
    font-weight: 700; padding: 12px 0; color: var(--white);
    opacity: 0; transform: translateY(20px);
    transition: color 0.3s;
}
.mobile-menu.open .mobile-menu-link {
    opacity: 1; transform: translateY(0);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.mobile-menu-link:hover { color: #111111; }
.mobile-menu-social { margin-top: 40px; font-family: var(--font-mono); font-size: 14px; letter-spacing: 2px; }
.mobile-menu-social a { color: #111111; }

/* ── Cart Drawer ── */
.cart-overlay {
    position: fixed; inset: 0; z-index: 8500;
    background: rgba(0,0,0,0.5); opacity: 0; visibility: hidden;
    transition: all 0.3s;
}
.cart-overlay.open { opacity: 1; visibility: visible; }
.cart-drawer {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: 420px; max-width: 90vw; z-index: 8501;
    background: var(--white); display: flex; flex-direction: column;
    transform: translateX(100%); transition: transform 0.4s var(--ease-out);
    box-shadow: -4px 0 30px rgba(0,0,0,0.1);
}
.cart-drawer.open { transform: translateX(0); }
.cart-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 24px; border-bottom: 1px solid var(--gray-light);
}
.cart-header h2 { font-family: var(--font-condensed); font-size: 18px; letter-spacing: 3px; }
.cart-close-btn { font-size: 28px; }
.cart-items { flex: 1; overflow-y: auto; padding: 16px 24px; }
.cart-empty { text-align: center; color: var(--gray); padding: 60px 0; font-size: 14px; }
.cart-item {
    display: flex; gap: 16px; padding: 16px 0;
    border-bottom: 1px solid var(--gray-light);
}
.cart-item-img { width: 80px; height: 100px; object-fit: cover; border-radius: 6px; }
.cart-item-info { flex: 1; }
.cart-item-info h4 { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.cart-item-info .cart-item-size { font-size: 12px; color: var(--gray); margin-bottom: 8px; }
.cart-item-info .cart-item-price { font-weight: 700; color: var(--dark); }
.cart-item-qty { display: flex; align-items: center; gap: 12px; margin-top: 8px; }
.cart-item-qty button {
    width: 28px; height: 28px; border: 1px solid var(--gray-light);
    border-radius: 4px; display: flex; align-items: center; justify-content: center;
    font-size: 16px; transition: all 0.2s;
}
.cart-item-qty button:hover { border-color: #111111; color: #111111; }
.cart-item-qty span { font-weight: 600; }
.cart-item-remove { font-size: 12px; color: var(--gray); text-decoration: underline; cursor: pointer; margin-top: 4px; }
.cart-item-remove:hover { color: #111111; }
.cart-footer { padding: 20px 24px; border-top: 1px solid var(--gray-light); }
.cart-shipping-bar { height: 4px; background: var(--gray-light); border-radius: 4px; overflow: hidden; margin-bottom: 8px; }
.shipping-bar-fill { height: 100%; background: #111111; border-radius: 4px; transition: width 0.4s; }
.shipping-msg { font-size: 12px; color: var(--gray); margin-bottom: 16px; text-align: center; }
.cart-total { display: flex; justify-content: space-between; font-weight: 700; font-size: 18px; margin-bottom: 16px; }
.cart-checkout-btn { width: 100%; margin-bottom: 10px; }
.btn-whatsapp-checkout {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    width: 100%; padding: 12px; background: var(--whatsapp); color: var(--white);
    border-radius: 8px; font-weight: 600; font-size: 13px; letter-spacing: 1px;
    transition: opacity 0.3s;
}
.btn-whatsapp-checkout:hover { opacity: 0.9; }

/* ── Buttons ── */
.btn-primary {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 36px; background: var(--white); color: var(--dark);
    font-family: var(--font-condensed); font-weight: 700; border: 1.5px solid var(--dark);
    font-size: 14px; letter-spacing: 2px; border-radius: 6px;
    transition: background 0.2s ease, color 0.2s ease; overflow: hidden;
}
.btn-primary:hover, .btn-primary:focus { background: var(--dark); color: var(--white); border-color: var(--dark); }
.btn-primary:active { background: #000000; color: var(--white); }

.btn-outline {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 32px; border: 1.5px solid var(--dark); color: var(--dark); background: var(--white);
    font-family: var(--font-condensed); font-weight: 600;
    font-size: 13px; letter-spacing: 2px; border-radius: 6px;
    transition: background 0.2s ease, color 0.2s ease;
}
.btn-outline:hover, .btn-outline:focus { background: var(--dark); color: var(--white); border-color: var(--dark); }
.btn-outline:active { background: #000000; color: var(--white); }

/* ── Marquee ── */
.marquee {
    overflow: hidden; white-space: nowrap; padding: 12px 0;
    font-family: var(--font-condensed); font-weight: 700;
    font-size: 13px; letter-spacing: 0.15em;
}
.marquee-sep {
    display: inline-block; padding: 0 40px; margin-right: 80px; letter-spacing: 0.15em;
}
.marquee-inner {
    display: inline-flex; 
    animation-name: marquee;
    animation-duration: 180s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-play-state: running !important;
}
.marquee-inner span { padding: 0 40px; }
.marquee.reverse .marquee-inner { animation-direction: reverse; }
.marquee.red-bg { background: #B63432; color: #111111; border-top: 2px solid #111111; border-bottom: 2px solid #111111; }
.marquee.cream-red { background: #F5F5F5; color: #B63432; border-top: 2px solid #B63432; border-bottom: 2px solid #B63432; }
.marquee.black-bg { background: var(--dark); color: var(--white); }
.marquee.cream-bg { background: var(--cream); color: #111111; }

/* ── Hero Section ── */
.hero {
    position: relative; width: 100%; height: 100vh; display: flex; align-items: center;
    justify-content: center; overflow: hidden; background: var(--dark);
    margin-top: 0; padding: 0;
}
.hero-video {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; object-position: center center;
}
.hero-gradient {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.2) 100%);
    z-index: 1;
}
.hero-content {
    position: relative; z-index: 2; text-align: center; padding: 40px;
    transition: opacity 1.2s ease;
}
.hero-content.faded { opacity: 0; pointer-events: none; }
.hero-title {
    font-family: var(--font-display); font-size: clamp(52px, 8vw, 100px);
    font-weight: 700; color: var(--white); line-height: 0.9;
    margin-bottom: 16px; letter-spacing: -0.02em;
}
.hero-title .char { display: inline-block; opacity: 0; }
.hero-subtitle {
    font-family: var(--font-body); font-size: clamp(11px, 1.2vw, 14px);
    letter-spacing: 0.25em; color: var(--white); font-weight: 400;
    margin-top: 16px; text-transform: uppercase;
}
.hero-cta-wrap {
    position: absolute; bottom: 15%; left: 50%; transform: translateX(-50%); z-index: 3;
}
.hero-cta-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    background: transparent; color: #FFFFFF; border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); letter-spacing: 0.2em;
    font-size: 0.8rem; padding: 14px 36px; transition: all 0.3s ease;
    font-family: var(--font-condensed); text-transform: uppercase; text-decoration: none; border-radius: 6px;
}
.hero-cta-btn:hover, .hero-cta-btn:focus { background: rgba(255, 255, 255, 0.15); border: 1px solid rgba(255, 255, 255, 0.8); color: #FFFFFF; }
/* Hero Stats Bar */
.hero-stats {
    position: absolute; bottom: 0; left: 0; width: 100%; z-index: 3;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
    padding: 60px 20px 24px; display: flex; justify-content: center; align-items: center; gap: 48px;
    margin: 0;
}
.hero-stats .hs-item { color: var(--white); font-family: var(--font-condensed); font-size: 14px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; text-shadow: 0 2px 4px rgba(0,0,0,0.5); text-align: center; }
.hero-stats .hs-divider { width: 1px; height: 16px; background: rgba(255,255,255,0.4); }
/* Scroll Indicator removed */

/* ── Section Basics ── */
.section { padding: 100px 40px; max-width: 1400px; margin: 0 auto; }
.section-full { padding: 100px 0; }
.section-title {
    font-family: var(--font-display); font-size: clamp(32px, 5vw, 56px);
    font-weight: 800; margin-bottom: 16px; line-height: 1.1;
}
.section-subtitle {
    font-family: var(--font-condensed); font-size: 14px; letter-spacing: 4px;
    color: var(--gray); text-transform: uppercase; margin-bottom: 48px;
}
.section-label {
    font-family: var(--font-mono); font-size: 11px; letter-spacing: 3px;
    color: #111111; margin-bottom: 12px; display: block;
}

/* ── Product Cards ── */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.product-card {
    position: relative; cursor: default !important; pointer-events: auto !important;
    border-radius: 12px; overflow: hidden;
    transition: transform 0.4s var(--ease), box-shadow 0.4s;
    z-index: 1;
}
.product-card *, .carousel-card * { pointer-events: none !important; cursor: default !important; }
/* Admin buttons must override the global pointer-events: none */
.admin-btn, .admin-btn *, .btn-primary, .btn-primary * { pointer-events: all !important; cursor: pointer !important; }
.product-card:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 16px 40px rgba(0,0,0,0.08); }
.product-card-img {
    position: relative; width: 100%; aspect-ratio: 3/4;
    overflow: hidden; background: transparent; pointer-events: auto !important;
}
.product-image-link {
    display: block; position: absolute; top: 0; left: 0; z-index: 2; pointer-events: all !important; cursor: pointer !important; width: 100%; height: 100%;
}
.product-image-link img { pointer-events: none !important; }
.product-card-img img {
    width: 100%; height: 100%; object-fit: cover; object-position: center top;
    display: block; transition: opacity 0.4s var(--ease);
}
.product-card-img .img-back {
    position: absolute; inset: 0; opacity: 0;
}
.product-card:hover .img-front { opacity: 0; }
.product-card:hover .img-back { opacity: 1; }
.product-card-badge {
    position: absolute; top: 12px; left: 12px; z-index: 2; pointer-events: none;
    background: #111111; color: var(--white);
    font-family: var(--font-mono); font-size: 10px; font-weight: 700;
    padding: 4px 10px; border-radius: 4px; letter-spacing: 1px;
}
.product-card-badge.sold-out { background: var(--dark); }

/* ── Card Choose Button ── */
.card-choose-btn {
    position: absolute; bottom: 12px; right: 12px; left: auto; top: auto; z-index: 10;
    display: flex; align-items: center; gap: 6px; 
    pointer-events: all !important; cursor: pointer !important;
    background: #ffffff; border: 1px solid #e0e0e0;
    border-radius: 999px; height: 36px; padding: 0 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    color: var(--dark);
    overflow: hidden; width: 36px; transition: width 0.25s var(--ease), background 0.2s;
}
.card-choose-btn *, .card-choose-btn svg, .card-choose-btn span { pointer-events: none !important; cursor: pointer !important; }
.card-choose-btn span { font-family: var(--font-condensed); font-weight: 700; letter-spacing: 1px; font-size: 13px; white-space: nowrap; opacity: 0; transition: opacity 0.25s; }
.card-choose-btn svg { flex-shrink: 0; }
.card-choose-btn:hover { width: 90px; background: #ffffff; }
.card-choose-btn:hover span { opacity: 1; }

.product-card-info { position: relative; z-index: 2; pointer-events: auto !important; padding: 16px 4px 8px; cursor: default !important; }
.product-card-name { font-weight: 600; font-size: 15px; margin-bottom: 4px; }
.product-card-collection { font-size: 11px; color: var(--gray); font-family: var(--font-mono); letter-spacing: 1px; margin-bottom: 6px; pointer-events: none; cursor: default; }
.product-card-price { font-weight: 700; color: var(--dark); font-size: 16px; pointer-events: none; cursor: default; }
.product-card-price .original { text-decoration: line-through; color: var(--gray); font-weight: 400; margin-left: 8px; font-size: 13px; pointer-events: none; cursor: default; }

/* ── Collection Cards ── */
.collections-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.collection-card {
    position: relative; border-radius: 16px; overflow: hidden;
    aspect-ratio: 4/5; cursor: pointer;
}
.collection-card-img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s var(--ease);
}
.collection-card:hover .collection-card-img { transform: scale(1.05); }
.collection-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(26,26,26,0.8) 0%, transparent 60%);
    display: flex; flex-direction: column; justify-content: flex-end; padding: 32px;
    transition: background 0.4s;
}
.collection-card:hover .collection-card-overlay { background: linear-gradient(to top, rgba(201,3,9,0.55) 0%, rgba(201,3,9,0.05) 40%, transparent 70%); }
.collection-card-name {
    font-family: var(--font-display); font-size: 28px;
    font-weight: 800; color: var(--white); margin-bottom: 4px;
}
.collection-card-count { font-family: var(--font-mono); font-size: 12px; color: rgba(255,255,255,0.7); letter-spacing: 2px; }
.collection-card-border {
    position: absolute; inset: 8px; border: 2px solid transparent;
    border-radius: 12px; transition: border-color 0.4s;
}
.collection-card:hover .collection-card-border { border-color: var(--white); }

/* ── Editorial / Lookbook ── */
.editorial-section {
    position: relative; height: 80vh; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    margin: 60px 0;
}
.editorial-bg {
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.editorial-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(26,26,26,0.6) 0%, rgba(0,0,0,0.25) 100%);
}
.editorial-content { position: relative; z-index: 1; text-align: center; color: var(--white); padding: 40px; }
.editorial-label { font-family: var(--font-mono); font-size: 12px; letter-spacing: 4px; margin-bottom: 16px; }
.editorial-title { font-family: var(--font-display); font-size: clamp(36px, 6vw, 72px); font-weight: 900; margin-bottom: 24px; line-height: 1; }

/* ── Horizontal Lookbook ── */
.lookbook-section { overflow: hidden; padding: 80px 0; }
.lookbook-title-wrap { padding: 0 40px; margin-bottom: 40px; }
.lookbook-track {
    display: flex; gap: 20px; padding: 0 40px;
    width: max-content;
}
.lookbook-slide {
    position: relative; width: 55vw; min-width: 400px; height: 75vh;
    border-radius: 16px; overflow: hidden; flex-shrink: 0;
}
.lookbook-slide img { width: 100%; height: 100%; object-fit: cover; }
.lookbook-slide-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
    display: flex; flex-direction: column; justify-content: flex-end; padding: 40px;
}
.lookbook-slide-title { font-family: var(--font-display); font-size: 32px; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.lookbook-slide-cta { font-family: var(--font-condensed); font-size: 14px; letter-spacing: 3px; color: rgba(255,255,255,0.8); }

/* ── Stats Bar ── */
.stats-bar {
    background: var(--dark); padding: 60px 40px;
    display: flex; justify-content: center; gap: 80px; flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-number {
    font-family: var(--font-display); font-size: 48px; font-weight: 900; color: var(--white);
}
.stat-label { font-family: var(--font-condensed); font-size: 13px; letter-spacing: 3px; color: rgba(255,255,255,0.5); margin-top: 8px; }

/* ── Brand Story ── */
.brand-story { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.brand-story-img { border-radius: 16px; overflow: hidden; aspect-ratio: 4/5; }
.brand-story-img img { width: 100%; height: 100%; object-fit: cover; }
.brand-story-content { position: relative; }
.brand-story-content h2 { font-family: var(--font-display); font-size: 42px; font-weight: 800; margin-bottom: 24px; line-height: 1.1; }
.brand-story-content p { color: var(--gray); line-height: 1.8; margin-bottom: 16px; font-size: 15px; }

/* ── Instagram Grid ── */
.insta-section { background: var(--cream); padding: 80px 40px; text-align: center; }
.insta-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; max-width: 900px; margin: 0 auto 32px; border-radius: 16px; overflow: hidden; }
/* padding-bottom: 100% garantiza celdas CUADRADAS en todos los browsers sin depender de aspect-ratio */
.insta-item { position: relative; display: block; width: 100%; height: 0; padding-bottom: 100%; overflow: hidden; cursor: pointer; }
.insta-item img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; object-position: center center; display: block; transition: transform 0.4s; }
.insta-item:hover img { transform: scale(1.08); }
.insta-item-overlay {
    position: absolute; inset: 0; background: rgba(182,52,50,0.6);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.3s;
}
.insta-item:hover .insta-item-overlay { opacity: 1; }
.insta-item-overlay svg { color: var(--white); }

/* ── Newsletter ── */
.newsletter-section { background: var(--cream); padding: 80px 40px; text-align: center; }
.newsletter-form { display: flex; max-width: 500px; margin: 0 auto; gap: 0; border-radius: 8px; overflow: hidden; border: 2px solid var(--dark); }
.newsletter-input { flex: 1; padding: 14px 20px; border: none; background: var(--white); font-size: 14px; outline: none; }
.newsletter-btn { padding: 14px 28px; background: var(--white); color: var(--dark); font-family: var(--font-condensed); font-weight: 700; font-size: 13px; letter-spacing: 2px; border: 1.5px solid var(--dark); transition: background 0.2s ease, color 0.2s ease; border-radius: 6px; }
.newsletter-btn:hover, .newsletter-btn:focus { background: var(--dark); color: var(--white); }
.newsletter-btn:active { background: #000000; color: var(--white); }

/* ── Footer ── */
.site-footer { border-top: none; padding: 60px 40px 32px; background: var(--white); }
.footer-grid { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand img { width: 80px; height: 80px; border-radius: 50%; object-fit: contain; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: var(--gray); line-height: 1.6; }
.footer-col h4 { font-family: var(--font-condensed); font-size: 13px; letter-spacing: 3px; margin-bottom: 20px; color: var(--dark); }
.footer-col a { display: block; font-size: 14px; color: var(--gray); padding: 4px 0; transition: color 0.3s; }
.footer-col a:hover { color: #111111; }
.footer-bottom { border-top: 1px solid var(--gray-light); padding-top: 24px; text-align: center; font-size: 12px; color: var(--gray); max-width: 1400px; margin: 0 auto; }

/* ── WhatsApp Float ── */
.whatsapp-float {
    position: fixed; bottom: 28px; right: 28px; z-index: 8000;
    width: 56px; height: 56px; border-radius: 50%;
    background: var(--whatsapp); display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: transform 0.3s, box-shadow 0.3s;
    animation: waPulse 3s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,0.5); }
.whatsapp-tooltip {
    position: absolute; right: 68px; top: 50%; transform: translateY(-50%);
    background: var(--dark); color: var(--white);
    padding: 6px 14px; border-radius: 6px; font-size: 12px; font-weight: 600;
    white-space: nowrap; opacity: 0; transition: opacity 0.3s; pointer-events: none;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* ── Toast ── */
.toast {
    position: fixed; bottom: 28px; left: 28px; z-index: 9500;
    background: var(--dark); color: var(--white);
    padding: 16px 24px; border-radius: 12px; font-size: 14px; font-weight: 500;
    transform: translateY(120%); opacity: 0; transition: all 0.5s var(--ease-out);
    max-width: 360px; box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    border-left: 4px solid var(--red);
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ── Modal ── */
.modal-overlay {
    position: fixed; inset: 0; z-index: 9600;
    background: rgba(0,0,0,0.6); display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: all 0.3s;
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal-content {
    background: var(--white); border-radius: 16px; padding: 40px;
    max-width: 500px; width: 90%; max-height: 80vh; overflow-y: auto;
    transform: translateY(20px); transition: transform 0.3s var(--ease-out);
}
.modal-overlay.open .modal-content { transform: translateY(0); }
.modal-close { position: absolute; top: 16px; right: 20px; font-size: 28px; color: var(--dark); }
.modal-content { position: relative; }
.modal-content h2 { font-family: var(--font-display); font-size: 28px; margin-bottom: 8px; }
.modal-subtitle { color: var(--gray); font-size: 13px; margin-bottom: 24px; }
.size-table { width: 100%; border-collapse: collapse; }
.size-table th, .size-table td { padding: 10px 16px; text-align: center; border-bottom: 1px solid var(--gray-light); font-size: 14px; }
.size-table th { font-family: var(--font-condensed); font-weight: 700; letter-spacing: 1px; background: var(--cream); }

/* ── Quick View Modal ── */
.qv-overlay {
    position: fixed; inset: 0; z-index: 9700;
    background: rgba(0,0,0,0.6); display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: all 0.3s; padding: 20px;
}
.qv-overlay.open { opacity: 1; visibility: visible; }
.qv-content {
    position: relative; background: var(--white); border-radius: 16px;
    width: 100%; max-width: 700px; max-height: 90vh; overflow-y: auto;
    transform: translateY(20px) scale(0.95); transition: all 0.3s var(--ease-out);
}
.qv-overlay.open .qv-content { transform: translateY(0) scale(1); }
.qv-close { position: absolute; top: 12px; right: 16px; font-size: 28px; color: var(--dark); background: none; border: none; z-index: 2; transition: color 0.2s; }
.qv-close:hover { color: #111111; }
.qv-grid { display: flex; flex-direction: column; }
@media(min-width: 600px) { .qv-grid { flex-direction: row; } }
.qv-img-wrap { flex: 1; background: var(--cream); overflow: hidden; display: flex; align-items: center; justify-content: center; }
.qv-img-wrap img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3/4; }
.qv-info { flex: 1; padding: 32px 24px; display: flex; flex-direction: column; justify-content: center; }
.qv-col { font-family: var(--font-mono); font-size: 11px; color: var(--gray); letter-spacing: 1px; margin-bottom: 8px; }
.qv-name { font-family: var(--font-display); font-size: 24px; font-weight: 800; margin-bottom: 8px; line-height: 1.1; }
.qv-price { color: var(--dark); font-weight: 700; font-size: 20px; margin-bottom: 24px; }
.qv-label { display: block; font-family: var(--font-condensed); font-size: 12px; letter-spacing: 2px; margin-bottom: 8px; }
.qv-sizes { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.qv-sizes .size-btn { min-width: 40px; height: 40px; border: 2px solid var(--gray-light); border-radius: 6px; font-size: 13px; font-weight: 600; cursor: pointer; transition: all 0.2s; background: none; }
.qv-sizes .size-btn.selected, .qv-sizes .size-btn:hover { border-color: var(--dark); background: var(--dark); color: var(--white); }
.qv-btn-add { width: 100%; margin-bottom: 12px; padding: 14px; }
.qv-btn-add:disabled { opacity: 0.5; pointer-events: none; }
.qv-btn-full { width: 100%; padding: 14px; }

/* ── Product Detail Page ── */
.product-page { padding-top: calc(var(--nav-h) + 40px); }
.product-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; max-width: 1200px; margin: 0 auto; padding: 0 40px 80px; }
.product-gallery { position: relative; }
.product-main-image { width: 100%; aspect-ratio: 3/4; border-radius: 16px; overflow: hidden; background: var(--cream); margin-bottom: 12px; cursor: zoom-in; }
.product-main-image img { width: 100%; height: 100%; object-fit: cover; transition: opacity 0.4s; }
.product-thumbs { display: flex; gap: 8px; }
.product-thumb { width: 70px; height: 90px; border-radius: 8px; overflow: hidden; border: 2px solid transparent; cursor: pointer; transition: border-color 0.3s; }
.product-thumb.active, .product-thumb:hover { border-color: #111111; }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-details { position: relative; }
.product-breadcrumb { font-size: 12px; color: var(--gray); margin-bottom: 16px; font-family: var(--font-mono); letter-spacing: 1px; }
.product-breadcrumb a { transition: color 0.3s; }
.product-breadcrumb a:hover { color: #111111; }
.product-name { font-family: var(--font-display); font-size: 36px; font-weight: 800; margin-bottom: 12px; line-height: 1.1; }
.product-price-tag { font-size: 28px; font-weight: 700; color: var(--dark); margin-bottom: 24px; }
.product-price-tag .original-price { text-decoration: line-through; color: var(--gray); font-weight: 400; font-size: 18px; margin-left: 12px; }
.product-badge-wrap { margin-bottom: 20px; }
.product-badge { display: inline-block; background: #111111; color: var(--white); font-family: var(--font-mono); font-size: 11px; padding: 4px 12px; border-radius: 4px; letter-spacing: 1px; }
.product-sizes { margin-bottom: 24px; }
.product-sizes label { display: block; font-family: var(--font-condensed); font-size: 13px; letter-spacing: 2px; margin-bottom: 10px; }
.sizes-wrap { display: flex; gap: 8px; flex-wrap: wrap; }
.size-btn {
    min-width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
    border: 2px solid var(--dark); border-radius: 8px;
    font-weight: 600; font-size: 13px; transition: all 0.2s;
}
.size-btn:hover, .size-btn.selected { background: var(--dark); color: var(--white); border-color: var(--dark); }
.size-btn.disabled { opacity: 0.3; pointer-events: none; }
.size-guide-link { font-size: 12px; color: var(--gray); text-decoration: underline; cursor: pointer; margin-top: 8px; display: inline-block; }
.size-guide-link:hover { color: #111111; }
.product-actions { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.btn-add-cart { width: 100%; padding: 16px; font-size: 15px; }
.btn-whatsapp-order {
    width: 100%; padding: 14px; background: var(--whatsapp); color: var(--white);
    border-radius: 8px; font-family: var(--font-condensed); font-weight: 700;
    font-size: 14px; letter-spacing: 1px; display: flex; align-items: center; justify-content: center; gap: 8px;
    transition: opacity 0.3s;
}
.btn-whatsapp-order:hover { opacity: 0.9; }
.stock-indicator { font-size: 13px; color: #111111; font-weight: 600; margin-bottom: 24px; }
.product-description { margin-bottom: 24px; color: var(--gray); line-height: 1.8; font-size: 14px; }
.product-accordion { border-top: 1px solid var(--gray-light); }
.accordion-item { border-bottom: 1px solid var(--gray-light); }
.accordion-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 16px 0; cursor: pointer; font-family: var(--font-condensed);
    font-weight: 600; font-size: 14px; letter-spacing: 1px;
}
.accordion-header::after { content: '+'; font-size: 20px; transition: transform 0.3s; }
.accordion-item.open .accordion-header::after { transform: rotate(45deg); }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.accordion-item.open .accordion-body { max-height: 300px; }
.accordion-body-inner { padding: 0 0 16px; font-size: 14px; color: var(--gray); line-height: 1.7; }

/* ── Info Pages ── */
.info-page { padding-top: calc(var(--nav-h) + 60px); padding-bottom: 80px; }
.info-page-header { text-align: center; margin-bottom: 60px; padding: 0 40px; }
.info-page-content { max-width: 900px; margin: 0 auto; padding: 0 40px; }
.info-card { background: var(--cream); border-radius: 16px; padding: 32px; margin-bottom: 24px; }
.info-card h3 { font-family: var(--font-display); font-size: 22px; margin-bottom: 12px; }
.info-card p { color: var(--gray); line-height: 1.7; font-size: 14px; }

/* ── Contact Form ── */
.contact-layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; max-width: 1100px; margin: 0 auto; padding: 0 40px; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group label {
    display: block; font-family: var(--font-condensed); font-size: 13px;
    letter-spacing: 2px; margin-bottom: 8px;
}
.form-group input, .form-group textarea, .form-group select {
    width: 100%; padding: 14px 16px; border: 2px solid var(--gray-light);
    border-radius: 8px; font-size: 14px; transition: border-color 0.3s;
    background: var(--white);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: #111111; outline: none; }
.form-group textarea { resize: vertical; min-height: 120px; }
.contact-info-side { position: relative; }
.contact-method { display: flex; align-items: center; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--gray-light); }
.contact-method-icon {
    width: 48px; height: 48px; border-radius: 50%; background: var(--cream);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-method h4 { font-size: 14px; margin-bottom: 2px; }
.contact-method p { font-size: 13px; color: var(--gray); }

/* ── 404 Page ── */
.page-404 { min-height: 80vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 40px; padding-top: var(--nav-h); }
.page-404 h1 { font-family: var(--font-display); font-size: 120px; font-weight: 900; color: #111111; line-height: 1; }
.page-404 p { font-size: 18px; color: var(--gray); margin: 16px 0 32px; }

/* ── Countdown Timer ── */
.countdown { display: flex; gap: 12px; justify-content: center; margin: 16px 0; }
.countdown-unit { text-align: center; }
.countdown-number { font-family: var(--font-display); font-size: 32px; font-weight: 800; color: #111111; }
.countdown-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 2px; color: var(--gray); }

/* ── Sales Badge ── */
.sale-flash { position: relative; overflow: hidden; }
.sale-flash::before {
    content: 'OFERTA'; position: absolute; top: 20px; right: -30px;
    background: #111111; color: var(--white);
    font-family: var(--font-mono); font-size: 10px; font-weight: 700;
    padding: 4px 40px; transform: rotate(45deg); z-index: 3; letter-spacing: 2px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .product-layout { grid-template-columns: 1fr; gap: 40px; }
    .brand-story { grid-template-columns: 1fr; gap: 40px; }
    .contact-layout { grid-template-columns: 1fr; }
    .stats-bar { gap: 40px; }
    .lookbook-slide { width: 70vw; min-width: 300px; }
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .nav-container { display: flex; padding: 0 20px; justify-content: space-between; align-items: center; }
    .section { padding: 60px 20px; }
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .collections-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .stats-bar { gap: 24px; padding: 40px 20px; }
    .stat-number { font-size: 32px; }
    .hero-title { font-size: 13vw; letter-spacing: -0.01em; word-break: keep-all; white-space: nowrap; }
    .hero-subtitle { letter-spacing: 4px; font-size: 12px; }
    .hero-video { object-fit: cover; object-position: center center; }
    
    .hero-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        padding: 40px 20px 20px;
        background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
    }
    .hero-stats .hs-divider { display: none; }
    .hero-stats .hs-item { font-size: 12px; }
    .insta-grid { grid-template-columns: repeat(3, 1fr); }
    .lookbook-slide { width: 85vw; min-width: 280px; height: 60vh; }
    .product-layout { padding: 0 20px 60px; }
    .product-name { font-size: 28px; }
    .info-page-content, .info-page-header { padding: 0 20px; }
    .contact-layout { padding: 0 20px; }
    .editorial-section { height: 60vh; }
    .search-overlay { padding: 16px 20px; }
    .cart-drawer { width: 100%; max-width: 100%; }
}
@media (max-width: 480px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .collections-grid { grid-template-columns: 1fr; }
    .product-card-info { padding: 10px 2px 6px; }
    .product-card-name { font-size: 13px; }
    .product-card-price { font-size: 14px; }
}

/* ═══ SECTION: NEWSLETTER POPUP ═══ */
.nl-popup-overlay {
    position: fixed; inset: 0; z-index: 9800;
    background: rgba(0,0,0,0.5); backdrop-filter: blur(4px);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: opacity 0.4s ease-out, visibility 0.4s;
}
.nl-popup-overlay.active { opacity: 1; visibility: visible; }
.nl-popup {
    background: var(--white); max-width: 480px; width: 90%; padding: 48px 40px;
    position: relative; text-align: center;
    transform: scale(0.92); opacity: 0; transition: transform 0.4s ease-out, opacity 0.4s ease-out;
}
.nl-popup-overlay.active .nl-popup { transform: scale(1); opacity: 1; }
.nl-popup-close { position: absolute; top: 16px; right: 20px; font-size: 20px; color: var(--dark); cursor: pointer; background: none; border: none; }
.nl-popup-logo { width: 40px; height: 40px; border-radius: 50%; margin: 0 auto 20px; }
.nl-popup h2 { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.nl-popup .nl-sub { font-size: 13px; color: #666; margin-bottom: 24px; line-height: 1.5; }
.nl-popup input[type="email"] { width: 100%; border: 1px solid var(--dark); padding: 14px 16px; font-size: 14px; margin-bottom: 12px; outline: none; }
.nl-popup input[type="email"]:focus { border-color: #111111; }
.nl-popup .nl-btn { width: 100%; padding: 16px; background: var(--white); color: var(--dark); border: 1.5px solid var(--dark); border-radius: 6px; font-family: var(--font-condensed); font-weight: 700; font-size: 14px; letter-spacing: 0.1em; cursor: pointer; transition: background 0.2s ease, color 0.2s ease; }
.nl-popup .nl-btn:hover, .nl-popup .nl-btn:focus { background: var(--dark); color: var(--white); }
.nl-popup .nl-btn:active { background: #000000; color: var(--white); }
.nl-popup .nl-dismiss { display: block; margin-top: 16px; color: #999; font-size: 12px; cursor: pointer; background: none; border: none; transition: color 0.3s; }
.nl-popup .nl-dismiss:hover { color: var(--dark); text-decoration: underline; }
.nl-popup .nl-success { display: none; padding: 40px 0; }
.nl-popup .nl-success.show { display: block; }
.nl-popup .nl-success .check { font-size: 48px; margin-bottom: 16px; }

/* ═══ SECTION: PRODUCT CAROUSEL ═══ */
.drops-section { padding: 100px 0; }
.drops-section .ds-header { text-align: center; padding: 0 40px; margin-bottom: 48px; }
.drops-section .ds-label { color: #111111; font-family: var(--font-condensed); font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 8px; }
.drops-section .ds-title { font-family: var(--font-display); font-size: clamp(36px,5vw,64px); font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.drops-section .ds-sub { color: #999; font-family: var(--font-condensed); font-size: 12.65px; letter-spacing: 0.15em; text-transform: uppercase; }
.drops-section .ds-sub .no-resupply { font-weight: 700; letter-spacing: 0.15em; }
.carousel-wrap { position: relative; overflow: hidden; }
.carousel-track { display: flex; gap: 0; transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1); cursor: grab; user-select: none; }
.carousel-track:active { cursor: grabbing; }
.carousel-card { flex: 0 0 30vw; min-width: 280px; padding: 0 12px; position: relative; z-index: 1; pointer-events: auto !important; cursor: default !important; }
.carousel-card-img { position: relative; aspect-ratio: 3/4; overflow: hidden; background: transparent; }
.carousel-card-img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; transition: opacity 0.4s; }
.carousel-card-img .img-back { position: absolute; inset: 0; opacity: 0; }
.carousel-card:hover .img-front { opacity: 0; }
.carousel-card:hover .img-back { opacity: 1; }
.carousel-card-badge { position: absolute; top: 12px; left: 12px; z-index: 2; pointer-events: none; background: #111111; color: var(--white); font-family: var(--font-mono); font-size: 10px; padding: 4px 10px; letter-spacing: 0.05em; }
.carousel-card-info { position: relative; z-index: 2; pointer-events: auto !important; padding: 16px 4px 8px; cursor: default !important; }
.carousel-card-info .cc-col { color: #111111; font-family: var(--font-condensed); font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; }
.carousel-card-info .cc-name { font-weight: 600; font-size: 16px; margin-top: 4px; color: var(--dark); }
.carousel-card-info .cc-price { color: var(--dark); font-weight: 700; font-size: 16px; margin-top: 2px; }
.carousel-nav { position: absolute; top: 50%; transform: translateY(-100%); width: 48px; height: 48px; border-radius: 50%; background: var(--white); border: 1px solid var(--dark); display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 5; transition: all 0.3s; }
.carousel-nav:hover { background: var(--dark); color: var(--white); }
.carousel-nav.prev { left: 16px; }
.carousel-nav.next { right: 16px; }
.carousel-dots { display: none !important; }

/* ═══ SECTION: THREE-IMAGE EDITORIAL ═══ */
.editorial-grid,
.editorial-grid * {
    box-sizing: border-box;
}
.editorial-grid { 
    width: 100vw; 
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw; 
    margin-right: -50vw; 
    background: #000000; 
    overflow: hidden;
    padding: 0; 
    display: flex; 
    flex-direction: column; 
    gap: 1px; 
}
.editorial-grid-top { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; }
.editorial-img-wrap { 
    position: relative; 
    overflow: hidden; 
    background: #000000; 
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
}
.editorial-grid-top .editorial-img-wrap { height: auto; min-height: 300px; padding: 80px 40px; }
.editorial-grid-bottom { position: relative; width: 100%; }
.editorial-grid-bottom .editorial-img-wrap { height: auto; min-height: 220px; padding: 80px 40px; }
.editorial-grid-top .brand-img { width: auto; max-width: 180px; max-height: 160px; object-fit: contain; cursor: pointer; transition: opacity 0.25s ease; }
.editorial-grid-bottom .brand-img { width: auto; max-width: 300px; max-height: 120px; object-fit: contain; cursor: pointer; transition: opacity 0.25s ease; }
.brand-img:hover { opacity: 0.75; }

.editorial-divider {
    width: 100%;
    text-align: center;
    padding: 40px 0;
    background: #000000;
    color: rgba(255,255,255,0.25);
    font-size: 0.7rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    font-family: var(--font-mono);
}

/* ═══ SECTION: PRODUCTOS DESTACADOS ═══ */
.destacados-section { background: #FFFFFF; padding: 100px 0; }
.destacados-section .ds-header { text-align: center; padding: 0 40px; margin-bottom: 48px; }
.destacados-section .ds-title { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(36px,5vw,64px); font-weight: 700; color: #111111; margin-bottom: 8px; }
.destacados-section .carousel-card { flex: 0 0 19vw; min-width: 250px; }
.destacados-section .ds-link { display: inline-block; float: right; padding: 4px 40px 4px 0; margin-top: 24px; color: #111111; font-family: var(--font-condensed); font-size: 13px; letter-spacing: 0.1em; text-decoration: none; transition: text-decoration 0.3s; }
.destacados-section .ds-link:hover { text-decoration: underline; }

/* ═══ SECTION: SHOP THE LOOK ═══ */
.stl-section { background: #E8E8E8; color: #1A1A1A; padding: 60px 0; overflow: hidden; }
.stl-title { text-align: center; font-family: var(--font-display); font-size: clamp(36px,5vw,64px); font-weight: 700; color: #1A1A1A; margin-bottom: 8px; }

.stl-inner { display: grid; grid-template-columns: 80px 1fr 1fr 80px; align-items: center; max-width: 1200px; margin: 0 auto; gap: 0; }

.stl-nav-handle { display: flex; align-items: center; justify-content: center; z-index: 10; }
.stl-prev, .stl-next { width: 48px; height: 48px; border-radius: 50%; background: rgba(0,0,0,0.08); border: 1px solid rgba(0,0,0,0.15); color: #1A1A1A; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.3s ease; }
.stl-prev:hover, .stl-next:hover { background: rgba(0,0,0,0.15); border-color: rgba(0,0,0,0.3); }

.stl-image-panel { position: relative; height: 600px; overflow: hidden; background: #111; }
.stl-image-panel img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

.stl-hotspot { position: absolute; width: 20px; height: 20px; border-radius: 50%; background: rgba(255,255,255,0.9); border: 2px solid #FFFFFF; box-shadow: 0 0 0 4px rgba(255,255,255,0.2); cursor: pointer; z-index: 5; transition: all 0.3s; }
.stl-hotspot:hover, .stl-hotspot.active { transform: scale(1.2); background: #FFFFFF; box-shadow: 0 0 15px rgba(255,255,255,0.8); }

.stl-product-panel { background: #FFFFFF; height: 600px; border: 1px solid rgba(0,0,0,0.1); border-left: none; }
.stl-info { height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 40px; text-align: center; background: #FFFFFF; color: #1A1A1A; }
.stl-info img { width: 280px; height: 280px; object-fit: contain; margin-bottom: 24px; transition: opacity 0.3s; }
.stl-p-name { color: #1A1A1A; font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 8px; }
.stl-p-price { color: #1A1A1A; font-size: 1.2rem; font-weight: 400; margin-bottom: 24px; }
.stl-p-btn { display: inline-flex; align-items: center; justify-content: center; padding: 14px 36px; background: transparent; color: #1A1A1A; border: 1px solid rgba(0,0,0,0.2); border-radius: 6px; font-family: var(--font-condensed); font-size: 13px; letter-spacing: 0.15em; text-transform: uppercase; text-decoration: none; transition: all 0.3s ease; }
.stl-p-btn:hover { background: rgba(0,0,0,0.05); border-color: #1A1A1A; }

.stl-product-tag {
  display: inline-block;
  background: #111111;
  color: var(--white);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  padding: 3px 8px;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 700;
  font-family: var(--font-display);
}

/* Swiper Fixes */
.shop-the-look-swiper { width: 100%; height: 600px; border: 1px solid rgba(0,0,0,0.1); border-right: none; }
.shop-the-look-swiper .swiper-slide { height: 100%; }

/* ═══ SECTION: FEATURED PRODUCT SHOWCASE ═══ */
.featured-section { display: flex; width: 100%; padding: 80px 40px; max-width: 1200px; margin: 0 auto; align-items: center; gap: 48px; }
.featured-left { height: 680px; width: 40%; display: flex; flex-direction: column; justify-content: center; flex: 1; padding: 60px; background: var(--white); }
.featured-left .fl-label { color: #111111; font-family: var(--font-condensed); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 12px; }
.featured-left .fl-name { font-family: var(--font-display); font-size: clamp(32px,4vw,64px); font-weight: 900; line-height: 1; color: var(--dark); margin-bottom: 12px; }
.featured-left .fl-subtitle { font-family: var(--font-condensed); font-size: 14px; letter-spacing: 0.1em; color: var(--gray); margin-bottom: 16px; }
.featured-left .fl-desc { font-size: 14px; color: #666; line-height: 1.7; margin-bottom: 24px; }
.featured-left .fl-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.featured-left .fl-btn { padding: 14px 28px; font-family: var(--font-condensed); font-weight: 600; font-size: 13px; letter-spacing: 0.1em; cursor: pointer; transition: background 0.2s ease, color 0.2s ease; text-decoration: none; text-transform: uppercase; border-radius: 6px; }
.featured-left .fl-btn.primary { background: var(--white); color: var(--dark); border: 1.5px solid var(--dark); }
.featured-left .fl-btn.primary:hover, .featured-left .fl-btn.primary:focus { background: var(--dark); color: var(--white); }
.featured-left .fl-btn.primary:active { background: #000000; color: var(--white); }
.featured-left .fl-btn.outline { background: var(--white); color: var(--dark); border: 1.5px solid var(--dark); }
.featured-left .fl-btn.outline:hover, .featured-left .fl-btn.outline:focus { background: var(--dark); color: var(--white); }
.featured-left .fl-btn.outline:active { background: #000000; color: var(--white); }

.featured-right { height: 680px !important; max-height: 680px !important; min-height: 300px !important; border-radius: 4px; overflow: hidden; box-shadow: 0 8px 40px rgba(0,0,0,0.12); flex: 1 !important; width: auto !important; position: relative; }
.fr-slider-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fr-slider-handle { position: absolute !important; left: 50% !important; transform: translate(-50%, -50%) !important; z-index: 10 !important; cursor: ns-resize !important; }
.fr-slider-handle:hover { border-color: #111111 !important; }

/* ═══ RESPONSIVE: NEW SECTIONS ═══ */
@media (max-width: 1024px) {
    .carousel-card { flex: 0 0 45vw; }
    .destacados-section .carousel-card { flex: 0 0 31vw; min-width: 200px; }
    .stl-wrap { grid-template-columns: 1fr; }
    .featured-section { flex-direction: column; height: auto; padding: 60px 40px; }
    .featured-left, .featured-right { width: 100% !important; flex: none !important; }
    .featured-left { padding: 60px 40px; height: auto; }
    .featured-right { height: 680px !important; }
}
@media (max-width: 768px) {
    .carousel-card { flex: 0 0 80vw; }
    .destacados-section .carousel-card { flex: 0 0 56vw; min-width: 180px; }
    .carousel-nav { display: none; }
    .editorial-grid-top { grid-template-columns: 1fr; }
    .editorial-grid-top .editorial-grid-item { height: 40vh; }
    .editorial-grid-bottom { height: 50vh; }
    .hero-stats { flex-wrap: wrap; gap: 16px; padding: 12px 20px; }
    .hero-stats .hs-divider { display: none; }
    .hero-stats .hs-item { flex: 0 0 45%; text-align: center; font-size: 11px; }
    .hero-scroll-indicator { display: none; }
    .stl-section { padding: 60px 20px; }
    .featured-section { flex-direction: column; padding: 40px 20px; }
    .featured-left { height: auto; min-height: unset; padding: 40px 20px; }
    .featured-right { height: 460px !important; max-height: 460px !important; width: 100% !important; flex: none !important; }
    .nl-popup { padding: 32px 24px; }
}

/* ── Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
    .marquee-inner { animation: none !important; }
}

/* ── Admin Image Upload ── */
.img-upload-label {
    display: block;
    cursor: pointer;
}
.img-upload-input {
    display: none;
}
.img-preview {
    width: 100%;
    height: 160px;
    border: 2px dashed #E0E0E0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FAFAFA;
    transition: border-color 0.2s ease;
}
.img-preview:hover {
    border-color: #111111;
}
.galeria-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}
.galeria-thumb {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 6px;
    overflow: hidden;
}
.galeria-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.galeria-thumb-remove {
    position: absolute;
    top: 2px; right: 2px;
    background: rgba(0,0,0,0.6);
    color: white;
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
}
/* ── Admin Switch Toggle ── */
.admin-switch-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #F9F9F9;
    padding: 16px;
    border-radius: 8px;
    border: 1px solid #EEE;
    margin-bottom: 20px;
}
.switch-label-text h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 2px;
}
.switch-label-text p {
    font-size: 12px;
    color: #888;
}
.admin-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
    flex-shrink: 0;
}
.admin-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.admin-slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}
.admin-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}
.admin-switch input:checked + .admin-slider {
    background-color: #111111;
}
.admin-switch input:checked + .admin-slider:before {
    transform: translateX(24px);
}



/* ── Nav rojo solo en página de producto ── */
.product-page-header .nav-link { color: #B63432 !important; }
.product-page-header .nav-icon-btn { color: #B63432 !important; }
.product-page-header .hamburger span { background: #B63432 !important; }

/* ═══ CAROUSEL MÓVIL — CSS Scroll Snap nativo ═══ */
@media (max-width: 768px) {
    .carousel-wrap {
        overflow: visible;
    }
    .carousel-track {
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        transform: none !important;
        transition: none !important;
        cursor: default;
        /* Ocultar scrollbar */
        -ms-overflow-style: none;
        scrollbar-width: none;
        padding-bottom: 4px;
    }
    .carousel-track::-webkit-scrollbar { display: none; }
    .carousel-card {
        scroll-snap-align: start;
        flex: 0 0 80vw;
        min-width: 0;
    }
    /* Ocultar flechas en móvil — el scroll nativo las reemplaza */
    .carousel-nav { display: none !important; }
    /* Dots de progreso en móvil */
    .carousel-dots { 
        display: flex !important; 
        justify-content: center; 
        gap: 6px; 
        margin-top: 16px;
    }
    .carousel-dots .dot {
        width: 6px; height: 6px; border-radius: 50%;
        background: #ccc; transition: background 0.3s, transform 0.3s;
    }
    .carousel-dots .dot.active { background: #111111; transform: scale(1.3); }
}

/* ── Card choose btn: solo ícono en móvil, sin animación ── */
@media (max-width: 768px) {
    .card-choose-btn {
        width: 36px !important;
        transition: none !important;
    }
    .card-choose-btn span { display: none !important; }
    .card-choose-btn:hover { width: 36px !important; }
}

/* ── Modal close: siempre visible con contorno blanco ── */
.modal-close {
    position: absolute; top: 16px; right: 20px; font-size: 28px;
    color: #FFFFFF !important;
    text-shadow: 0 0 4px rgba(0,0,0,0.8), 0 0 8px rgba(0,0,0,0.6);
    font-weight: 700; z-index: 100;
    background: rgba(0,0,0,0.35);
    border-radius: 50%;
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    line-height: 1;
}
.modal-close:hover { background: rgba(0,0,0,0.6); }

/* ── Fix 1: Prevenir scroll horizontal en móvil ── */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden !important;
        max-width: 100vw !important;
        overscroll-behavior-x: none !important;
    }
    #main-content, .admin-layout {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }
}

/* ── Fix 2: Mini carrito — mitad derecha en móvil ── */
@media (max-width: 768px) {
    .cart-drawer {
        width: 82vw !important;
        max-width: 82vw !important;
        box-shadow: -8px 0 32px rgba(0,0,0,0.25) !important;
    }
    .cart-header h2 { font-size: 14px; }
    .cart-item-img { width: 60px; height: 75px; }
    .cart-item-info h4 { font-size: 13px; }
    .cart-item-info .cart-item-price { font-size: 13px; }
    .cart-total { font-size: 15px; }
}

/* STL móvil: oculto en desktop */
.stl-mobile-track, .stl-mobile-dots { display: none; }

/* ═══ SHOP THE LOOK — MÓVIL ═══ */
@media (max-width: 768px) {
    /* Ocultar layout desktop */
    .stl-inner { display: none !important; }

    /* Track scroll-snap */
    .stl-mobile-track {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        -ms-overflow-style: none;
        scrollbar-width: none;
        padding: 0 16px;
        gap: 12px;
    }
    .stl-mobile-track::-webkit-scrollbar { display: none; }

    /* Tarjeta: imagen izquierda + info derecha — igual que PC */
    .stl-mobile-card {
        flex: 0 0 92vw;
        scroll-snap-align: center;
        display: flex;
        flex-direction: row;
        background: #fff;
        border: 1px solid rgba(0,0,0,0.1);
        border-radius: 0;
        overflow: hidden;
        min-height: 300px;
    }

    /* Imagen modelo — mitad izquierda */
    .stl-mobile-img-wrap {
        flex: 0 0 52%;
        overflow: hidden;
        background: #111;
    }
    .stl-mobile-img {
        width: 100%;
        height: 100%;
        min-height: 300px;
        object-fit: cover;
        object-position: center top;
        display: block;
    }

    /* Info producto — mitad derecha */
    .stl-mobile-info {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 20px 14px;
        text-align: center;
        gap: 8px;
    }
    .stl-mobile-prod-img {
        width: 100%;
        max-width: 140px;
        aspect-ratio: 1;
        object-fit: contain;
        margin-bottom: 8px;
    }
    .stl-mobile-name {
        font-family: var(--font-condensed);
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: #111;
        line-height: 1.3;
    }
    .stl-mobile-price {
        font-size: 14px;
        font-weight: 600;
        color: #111;
    }
    .stl-mobile-btn {
        display: inline-block;
        margin-top: 6px;
        padding: 8px 16px;
        border: 1px solid #111;
        font-family: var(--font-condensed);
        font-size: 11px;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        text-decoration: none;
        color: #111;
        background: transparent;
        transition: background 0.2s, color 0.2s;
    }
    .stl-mobile-btn:active { background: #111; color: #fff; }

    /* Dots */
    .stl-mobile-dots {
        display: flex;
        justify-content: center;
        gap: 6px;
        margin-top: 20px;
    }
    .stl-mobile-dots .dot {
        width: 6px; height: 6px; border-radius: 50%;
        background: #ccc; transition: background 0.3s, transform 0.3s;
    }
    .stl-mobile-dots .dot.active { background: #111; transform: scale(1.3); }
}

/* ── Instagram section: mismo fondo en móvil que PC ── */
@media (max-width: 768px) {
    .insta-section {
        background: #FFFFFF;
        padding: 60px 16px;
    }
    .insta-grid {
        max-width: 100%;
        border-radius: 8px;
        gap: 3px;
    }
}

/* ══════════════════════════════════════════
   ADMIN PANEL — Fix interactividad de botones
   Al final del archivo para máxima prioridad
   ══════════════════════════════════════════ */
.admin-layout button,
.admin-layout a,
.admin-login button,
.admin-login a {
    cursor: pointer !important;
    pointer-events: all !important;
    user-select: none !important;
    -webkit-user-select: none !important;
}