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

        :root {
            --border: #e8e8e8;
            --text:   #111;
            --muted:  #999;
            --bg:     #fff;
        }

        html { scroll-behavior: smooth; overflow-x: hidden; }
        body {
            font-family: 'Inter', system-ui, sans-serif;
            background: var(--bg);
            color: var(--text);
            overflow-x: hidden;
        }

        /* ══════════════════════════════
           HEADER STICKY
        ══════════════════════════════ */
        .sticky-header {
            position: sticky;
            top: 0;
            z-index: 500;
            background: #fff;
            border-bottom: 1px solid var(--border);
        }

        .brand-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 40px;
            height: 68px;
            border-bottom: 1px solid var(--border);
        }
        .brand-bar-side {
            display: flex;
            align-items: center;
            gap: 20px;
            min-width: 220px;
        }
        .brand-bar-side.right { justify-content: flex-end; }

        .bar-link {
            font-size: 0.68rem;
            color: var(--muted);
            text-decoration: none;
            letter-spacing: 1px;
            background: none;
            border: none;
            cursor: pointer;
            transition: color 0.2s;
            white-space: nowrap;
            font-family: inherit;
        }
        .bar-link:hover { color: var(--text); }

        .brand-name {
            font-family: 'Cormorant Garant', Georgia, serif;
            font-size: 1.8rem;
            font-weight: 700;
            letter-spacing: 10px;
            text-transform: uppercase;
            color: var(--text);
            text-decoration: none;
            cursor: pointer;
            user-select: none;
            display: block;
            line-height: 1;
        }
        .brand-center-wrap {
            display: flex; flex-direction: column; align-items: center;
            cursor: pointer; user-select: none; text-align: center;
        }
        .brand-roman {
            font-family: 'Cormorant Garant', Georgia, serif;
            font-size: 0.7rem; letter-spacing: 7px; text-transform: uppercase;
            color: #999; margin-top: 4px; display: block;
        }
        .cart-label {
            font-size: 0.68rem; letter-spacing: 1px; text-transform: uppercase;
            vertical-align: middle; margin-right: 2px;
        }
        .search-btn-home { background: none; border: none; cursor: pointer; color: #999; padding: 6px; display: flex; align-items: center; transition: color 0.2s; }
        .search-btn-home:hover { color: #111; }
        .search-bar-home {
            display: none; align-items: center; gap: 10px;
            padding: 0 24px; height: 46px;
            border-bottom: 1px solid var(--border); background: #fafafa;
        }
        .search-bar-home.active { display: flex; }
        .search-inp-home {
            flex: 1; border: none; outline: none;
            font-size: 0.9rem; font-family: inherit;
            background: transparent; color: #111; min-width: 0;
        }
        .search-inp-home::placeholder { color: #ccc; font-size: 0.75rem; letter-spacing: 1.5px; }
        .search-close-home { background: none; border: none; cursor: pointer; color: #bbb; font-size: 1.1rem; padding: 4px 8px; transition: color 0.2s; line-height: 1; }
        .search-close-home:hover { color: #111; }

        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.3rem;
            cursor: pointer;
            color: var(--text);
        }
        .hamburger-left { display: none; }

        /* ── Categorías ── */
        .cat-nav {
            display: flex;
            justify-content: center;
            align-items: stretch;
        }
        .cat-item { position: relative; }
        .cat-trigger {
            display: flex;
            align-items: center;
            gap: 5px;
            padding: 0 20px;
            height: 46px;
            font-size: 0.68rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--text);
            text-decoration: none;
            background: none;
            border: none;
            border-bottom: 2px solid transparent;
            cursor: pointer;
            transition: border-color 0.2s;
            white-space: nowrap;
            font-family: inherit;
        }
        .cat-trigger:hover,
        .cat-item:hover .cat-trigger { border-bottom-color: var(--text); }
        .chevron { font-size: 0.55rem; }

        /* ── Dropdown ── */
        .dropdown {
            position: absolute;
            top: 100%; left: 50%;
            transform: translateX(-50%);
            background: #fff;
            border-top: 2px solid var(--text);
            box-shadow: 0 12px 40px rgba(0,0,0,0.1);
            padding: 32px 40px;
            min-width: 440px;
            display: none;
            gap: 48px;
            z-index: 600;
        }
        .cat-item:hover .dropdown { display: flex; }

        .drop-col h3 {
            font-size: 0.58rem;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: #bbb;
            margin-bottom: 14px;
            font-weight: 500;
        }
        .drop-col a {
            display: block;
            font-size: 0.82rem;
            color: #555;
            text-decoration: none;
            margin-bottom: 10px;
            transition: color 0.2s;
        }
        .drop-col a:hover { color: var(--text); }
        .nav-drop-wave {
            margin-left: 6px; font-size: 0.65rem; color: #444;
            vertical-align: middle; letter-spacing: 0;
        }
        .drop-col a:hover .nav-drop-wave { color: #888; }

        /* ══════════════════════════════
           MENÚ MOBILE
        ══════════════════════════════ */
        .mobile-menu {
            display: none;
            position: fixed;
            inset: 0;
            background: #fff;
            z-index: 900;
            flex-direction: column;
            padding: 60px 32px 40px;
            overflow-y: auto;
        }
        .mobile-menu.open { display: flex; }
        .mobile-close {
            position: absolute;
            top: 20px; right: 24px;
            background: none; border: none;
            font-size: 1.5rem; cursor: pointer; color: #999;
        }
        .mobile-menu a,
        .mobile-menu button {
            font-size: 1.1rem;
            font-weight: 700;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--text);
            text-decoration: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 16px 0;
            border-bottom: 1px solid var(--border);
            text-align: left;
            font-family: inherit;
        }
        .mob-search-wrap {
            position: relative; padding: 6px 0 20px; margin-bottom: 4px;
        }
        .mob-search-inp {
            width: 100%; box-sizing: border-box; border: none;
            border-bottom: 1.5px solid #ddd; padding: 10px 36px 10px 0;
            font-size: 0.9rem; font-family: inherit; letter-spacing: 2px;
            text-transform: uppercase; background: transparent; outline: none; color: #111;
        }
        .mob-search-inp::placeholder { color: #ccc; }
        .mob-search-inp:focus { border-bottom-color: #111; }
        .mob-search-btn {
            position: absolute; right: 0; top: 50%; transform: translateY(-50%);
            background: none !important; border: none !important; border-bottom: none !important;
            padding: 6px !important; cursor: pointer; color: #999; font-size: 0;
        }

        /* ══════════════════════════════
           HERO SLIDER
        ══════════════════════════════ */
        .hero {
            position: relative;
            height: 92vh;
            min-height: 520px;
            overflow: hidden;
            background: #222;
        }

        /* slides */
        .hero-slide {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1.2s ease;
        }
        .hero-slide.active { opacity: 1; }

        /* overlay gradiente para legibilidad del texto */
        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(
                to top,
                rgba(0,0,0,0.72) 0%,
                rgba(0,0,0,0.15) 55%,
                rgba(0,0,0,0.05) 100%
            );
            z-index: 1;
            pointer-events: none;
        }

        /* texto abajo-izquierda */
        .hero-content {
            position: absolute;
            bottom: 56px;
            left: 48px;
            z-index: 2;
        }
        .hero h1 {
            font-family: 'Cormorant Garant', Georgia, serif;
            font-size: clamp(4rem, 10vw, 9.5rem);
            font-weight: 700;
            letter-spacing: 10px;
            line-height: 1;
            text-transform: uppercase;
            color: #fff;
            margin-bottom: 8px;
        }
        .hero-subtitle {
            display: block;
            font-family: 'Cormorant Garant', Georgia, serif;
            font-size: clamp(0.75rem, 1.5vw, 1rem);
            font-weight: 300;
            letter-spacing: 10px;
            text-transform: uppercase;
            color: rgba(255,255,255,0.7);
            margin-bottom: 36px;
            text-align: center;
        }
        .btn-shop {
            display: inline-block;
            padding: 14px 44px;
            background: #fff;
            color: #000;
            font-weight: 700;
            font-size: 0.68rem;
            letter-spacing: 4px;
            text-transform: uppercase;
            text-decoration: none;
            border: 2px solid #fff;
            transition: 0.22s;
            cursor: pointer;
        }
        .btn-shop:hover { background: transparent; color: #fff; }

        /* imagen dentro del slide */
        .hero-slide-img {
            position: absolute; inset: 0;
            width: 100%; height: 100%;
            object-fit: cover; object-position: center top; z-index: 0;
        }
        /* Hero más alto en portrait para aprovechar imágenes verticales */
        @media (orientation: portrait) and (max-width: 768px) {
            .hero { height: 88vh; }
        }
        /* Landscape en móvil: hero pantalla completa */
        @media (orientation: landscape) and (max-height: 500px) {
            .hero { height: 100vh; min-height: unset; }
        }

        /* video dentro del slide */
        .hero-slide video {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
        }

        /* puntos de navegación */
        .hero-dots {
            position: absolute;
            bottom: 28px;
            right: 48px;
            display: flex;
            gap: 8px;
            z-index: 2;
        }
        .dot {
            width: 7px; height: 7px;
            border-radius: 50%;
            background: rgba(255,255,255,0.35);
            cursor: pointer;
            border: none;
            transition: background 0.3s;
        }
        .dot.active { background: #fff; }

        /* ══════════════════════════════
           PRODUCTOS
        ══════════════════════════════ */
        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 52px 40px 20px;
        }
        .section-label {
            font-size: 0.65rem;
            font-weight: 700;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: #999;
        }
        .section-count {
            font-size: 0.62rem;
            color: #ccc;
            letter-spacing: 2px;
        }

        /* Grid con espacio real entre cards */
        .vitrina {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            padding: 0 40px 60px;
            max-width: 1600px;
            margin: 0 auto;
        }

        .tarjeta {
            background: #fff;
            border: 1px solid var(--border);
            overflow: hidden;
            position: relative;
        }

        .tarjeta-img {
            position: relative;
            padding-top: 125%;
            overflow: hidden;
            background: #f7f7f7;
        }
        .tarjeta-img img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            cursor: pointer;
            transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        .tarjeta:hover .tarjeta-img img { transform: scale(1.05); }
        .tarjeta-expand {
            position: absolute; top: 10px; right: 10px; z-index: 4;
            width: 30px; height: 30px; border-radius: 50%;
            background: rgba(255,255,255,0.92);
            display: flex; align-items: center; justify-content: center;
            opacity: 0; transition: opacity 0.2s; pointer-events: none;
        }
        .tarjeta:hover .tarjeta-expand { opacity: 1; }
        @media (max-width: 768px) { .tarjeta-expand { opacity: 0.75; } }

        /* hover overlay desktop */
        .card-hover {
            position: absolute;
            bottom: 0; left: 0; right: 0;
            background: rgba(255,255,255,0.97);
            border-top: 1px solid var(--border);
            padding: 14px;
            transform: translateY(100%);
            transition: transform 0.3s ease;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .tarjeta:hover .card-hover { transform: translateY(0); }

        .tallas-wrap { display: flex; gap: 6px; flex-wrap: wrap; }
        .talla-btn {
            border: 1px solid #ccc;
            background: none;
            color: #444;
            padding: 7px 11px;
            cursor: pointer;
            font-size: 0.62rem;
            letter-spacing: 1px;
            transition: 0.18s;
            font-family: inherit;
        }
        .talla-btn:hover { border-color: #111; color: #111; }
        .talla-btn.active { background: #111; color: #fff; border-color: #111; }
        .talla-btn.agotado { opacity: 0.28; text-decoration: line-through; cursor: not-allowed; pointer-events: none; }

        .btn-agregar {
            width: 100%;
            padding: 12px;
            background: #111;
            color: #fff;
            border: none;
            font-weight: 700;
            font-size: 0.62rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            cursor: pointer;
            transition: background 0.2s;
            font-family: inherit;
        }
        .btn-agregar:hover { background: #333; }

        .tarjeta-info {
            padding: 13px 14px 16px;
            border-top: 1px solid var(--border);
            display: flex; align-items: flex-start; justify-content: space-between; gap: 8px;
        }
        .tarjeta-info-left { flex: 1; min-width: 0; }
        .card-swatches {
            display: grid;
            grid-template-rows: repeat(2, 14px);
            grid-auto-flow: column;
            grid-auto-columns: 14px;
            gap: 3px;
            flex-shrink: 0;
            align-self: flex-start;
            max-width: calc(2 * 14px + 3px);
            overflow-x: auto;
            scrollbar-width: none;
        }
        .card-swatches::-webkit-scrollbar { display: none; }
        .card-swatch { display: block; width: 14px; height: 14px; border-radius: 3px; border: 1px solid rgba(0,0,0,0.15); box-shadow: 0 1px 3px rgba(0,0,0,0.12); }
        .prod-nombre {
            font-size: 0.72rem;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: #333;
            margin-bottom: 6px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .prod-precio {
            font-size: 1rem;
            font-weight: 700;
            color: #111;
        }

        /* mobile */
        .card-mobile {
            display: none;
            padding: 12px 14px 14px;
            border-top: 1px solid var(--border);
            flex-direction: column;
            gap: 10px;
        }

        /* ══════════════════════════════
           SECCIONES TEXTO
        ══════════════════════════════ */
        .section-text {
            max-width: 560px;
            margin: 0 auto;
            padding: 90px 40px;
            text-align: center;
            border-top: 1px solid var(--border);
        }
        .section-text .label {
            font-size: 0.6rem;
            letter-spacing: 6px;
            text-transform: uppercase;
            color: #bbb;
            margin-bottom: 20px;
        }
        .section-text p {
            font-size: 1rem;
            font-weight: 300;
            line-height: 1.9;
            color: #777;
            margin-bottom: 32px;
        }
        .btn-outline {
            display: inline-block;
            padding: 14px 44px;
            background: transparent;
            color: var(--text);
            font-weight: 700;
            font-size: 0.68rem;
            letter-spacing: 4px;
            text-transform: uppercase;
            text-decoration: none;
            border: 1px solid #111;
            transition: 0.2s;
            cursor: pointer;
        }
        .btn-outline:hover { background: #111; color: #fff; }

        /* ══════════════════════════════
           UBICACIÓN
        ══════════════════════════════ */
        /* ══════════════════════════════
           FOOTER
        ══════════════════════════════ */
        footer {
            background: #0a0a0a;
            color: #fff;
        }
        /* ══ INSTAGRAM SECTION ════════════════════════════════ */
        .ig-section { background: #f7f7f7; padding: 52px 0 48px; }
        .ig-section-header { text-align: center; margin-bottom: 24px; padding: 0 20px; }
        .ig-label { display: block; font-size: 0.6rem; letter-spacing: 4px; text-transform: uppercase; color: #aaa; margin-bottom: 10px; }
        .ig-handle { font-size: 0.72rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: #111; text-decoration: none; }
        .ig-handle:hover { text-decoration: underline; }
        .ig-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 2px; grid-auto-rows: auto; }
        .ig-cell { position: relative; aspect-ratio: 1; overflow: hidden; background: #e8e8e8; display: block; }
        .ig-cell img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s; }
        .ig-cell:hover img { transform: scale(1.05); }
        .ig-cell-video .ig-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; pointer-events: none; transition: opacity 0.3s; -webkit-appearance: none; appearance: none; }
        .ig-cell-video:hover .ig-video { opacity: 0.92; }
        .ig-cell-video .ig-video::-webkit-media-controls { display: none !important; }
        .ig-cell-video .ig-video::-webkit-media-controls-start-playback-button { display: none !important; }
        .ig-overlay { position: absolute; inset: 0; z-index: 3; background: rgba(0,0,0,0); display: flex; align-items: center; justify-content: center; transition: background 0.3s; pointer-events: none; }
        .ig-cell:hover .ig-overlay { background: rgba(0,0,0,0.35); }
        .ig-cell-video:hover .ig-overlay { background: rgba(0,0,0,0.45); }
        .ig-overlay svg { opacity: 0; transform: scale(0.8); transition: 0.25s; }
        .ig-cell:hover .ig-overlay svg { opacity: 1; transform: scale(1); }
        .ig-cell-video:hover .ig-overlay svg { opacity: 1; transform: scale(1); }
        .ig-cell.ig-extra { display: none; }
        /* minigalería ig (expanded) */
        .ig-grid.ig-minigaleria {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 6px;
            padding: 0 20px;
        }
        .ig-mini-group {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 6px;
            min-width: 0;
            animation: ttFadeIn 0.35s ease;
        }
        .ig-mini-group .ig-cell {
            aspect-ratio: 9 / 16;
            border-radius: 10px;
        }
        .ig-mini-group .ig-cell:first-child {
            grid-row: span 2;
        }
        .ig-expand-wrap { text-align: center; margin-top: 24px; }
        .ig-expand-btn { background: none; border: 1px solid #111; color: #111; font-size: 0.6rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; padding: 11px 32px; cursor: pointer; font-family: inherit; transition: 0.2s; }
        .ig-expand-btn:hover { background: #111; color: #fff; }
        .ig-cta-wrap { text-align: center; margin-top: 16px; }
        .ig-cta-btn { display: inline-block; padding: 11px 30px; border: 1px solid #111; font-size: 0.6rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: #111; text-decoration: none; transition: 0.2s; font-family: inherit; }
        .ig-cta-btn:hover { background: #111; color: #fff; }

        /* ── TIKTOK FEED SECTION ── */
        .tt-section { background: #f7f7f7; padding: 52px 0 48px; }
        .tt-section-header { text-align: center; margin-bottom: 24px; padding: 0 20px; }
        .tt-label { display: block; font-size: 0.6rem; letter-spacing: 4px; text-transform: uppercase; color: #aaa; margin-bottom: 10px; }
        .tt-handle { font-size: 0.72rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: #111; text-decoration: none; }
        .tt-handle:hover { text-decoration: underline; }
        .tt-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 2px; }
        .tt-cell { position: relative; aspect-ratio: 1; overflow: hidden; background: #111; display: block; }
        .tt-cell img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s; }
        .tt-cell:hover img { transform: scale(1.05); }
        .tt-cell-video .tt-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; pointer-events: none; -webkit-appearance: none; appearance: none; }
        .tt-cell-video .tt-video::-webkit-media-controls { display: none !important; }
        .tt-cell-video .tt-video::-webkit-media-controls-start-playback-button { display: none !important; }
        .tt-overlay { position: absolute; inset: 0; z-index: 3; background: rgba(0,0,0,0); display: flex; align-items: center; justify-content: center; transition: background 0.3s; pointer-events: none; }
        .tt-cell:hover .tt-overlay { background: rgba(0,0,0,0.4); }
        .tt-overlay svg { opacity: 0; transform: scale(0.8); transition: 0.25s; }
        .tt-cell:hover .tt-overlay svg { opacity: 1; transform: scale(1); }
        /* collapse / expand */
        .tt-cell.tt-extra { display: none; }
        @keyframes ttFadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
        /* minigalería layout (expanded): grupos flex que llenan el ancho */
        .tt-grid.tt-minigaleria {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            align-items: flex-start;
            padding: 0 10px;
        }
        .tt-mini-group {
            flex: 1 1 340px;
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 6px;
            min-width: 0;
            animation: ttFadeIn 0.35s ease;
        }
        .tt-mini-group .tt-cell {
            aspect-ratio: 9 / 16;
            border-radius: 10px;
            background: #e8e8e8;
        }
        .tt-mini-group .tt-cell:first-child {
            grid-row: span 2;
        }
        /* expand button */
        .tt-expand-wrap { text-align: center; margin-top: 24px; }
        .tt-expand-btn { background: none; border: 1px solid #111; color: #111; font-size: 0.6rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; padding: 11px 32px; cursor: pointer; font-family: inherit; transition: 0.2s; }
        .tt-expand-btn:hover { background: #111; color: #fff; }
        .tt-cta-wrap { text-align: center; margin-top: 16px; }
        .tt-cta-btn { display: inline-block; padding: 11px 30px; border: 1px solid #111; font-size: 0.6rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: #111; text-decoration: none; transition: 0.2s; font-family: inherit; }
        .tt-cta-btn:hover { background: #111; color: #fff; }
        @media (max-width: 600px) {
            .tt-grid { grid-template-columns: repeat(3, 1fr); }
            .tt-section { padding: 36px 0 32px; }
            .tt-grid.tt-minigaleria { padding: 0 12px; }
        }

        .footer-lema {
            padding: 64px 40px 52px;
            text-align: center;
            border-bottom: 1px solid #161616;
        }
        .footer-lema-brand {
            font-family: 'Cormorant Garant', Georgia, serif;
            font-size: 1.5rem; font-weight: 700;
            letter-spacing: 10px; text-transform: uppercase;
            color: #fff; margin-bottom: 24px; display: block;
        }
        .footer-lema-brand span { color: #444; }
        .footer-lema p {
            font-size: 0.8rem; line-height: 1.9; color: #555;
            max-width: 560px; margin: 0 auto 6px; letter-spacing: 0.3px;
        }
        .footer-cols {
            display: grid; grid-template-columns: 1fr 1fr 1fr;
            gap: 40px; padding: 48px 40px 40px;
            max-width: 1100px; margin: 0 auto;
            border-bottom: 1px solid #111;
        }
        /* ── Franja ubicación ── */
        .ubicacion-strip {
            background: #fff;
            border-top: 1px solid #ebebeb;
            padding: 32px 40px;
        }
        .ubicacion-strip-inner {
            max-width: 900px; margin: 0 auto;
            display: flex; gap: 32px; align-items: center; justify-content: center;
        }
        .ubicacion-strip-eyebrow {
            display: block; font-size: 0.52rem; letter-spacing: 4px;
            text-transform: uppercase; color: #bbb; margin-bottom: 8px;
        }
        .ubicacion-strip-titulo {
            font-size: 1.6rem; font-weight: 700; letter-spacing: 2px;
            text-transform: uppercase; color: #111; margin-bottom: 10px; line-height: 1.2;
        }
        .ubicacion-strip-dir {
            font-size: 0.75rem; color: #555; line-height: 1.6; margin-bottom: 16px;
        }
        .ubicacion-strip-btn {
            display: inline-block; padding: 8px 20px;
            border: 1px solid #222; color: #111;
            font-size: 0.58rem; letter-spacing: 2.5px; text-transform: uppercase;
            text-decoration: none; transition: background 0.2s, color 0.2s;
        }
        .ubicacion-strip-btn:hover { background: #111; color: #fff; }
        .ubicacion-strip-map {
            display: block; position: relative;
            width: 350px; height: 190px; flex-shrink: 0;
            overflow: hidden; cursor: pointer;
            border: 1px solid #e8e8e8;
            box-shadow: 20px 200px 12px rgba(0,0,0,0.07);
        }
        .ubicacion-strip-map iframe {
            width: 100%; height: 100%; border: none;
            display: block; pointer-events: none;
        }
        .ubicacion-strip-overlay {
            position: absolute; inset: 0;
            display: flex; align-items: flex-end; justify-content: flex-end;
            padding: 10px 12px;
            background: linear-gradient(to top, rgba(0,0,0,0.22) 0%, transparent 50%);
            transition: background 0.2s;
        }
        .ubicacion-strip-overlay span {
            font-size: 0.52rem; letter-spacing: 1.5px; text-transform: uppercase;
            color: #fff; background: rgba(0,0,0,0.4); padding: 4px 9px; border-radius: 2px;
        }
        .ubicacion-strip-map:hover .ubicacion-strip-overlay { background: linear-gradient(to top, rgba(0,0,0,0.38) 0%, transparent 65%); }
        @media (max-width: 900px) {
            .ubicacion-strip { padding: 28px 24px; }
            .ubicacion-strip-inner {
                flex-direction: column; align-items: center; gap: 20px;
            }
            .ubicacion-strip-txt { text-align: center; }
            .ubicacion-strip-map { width: 100%; height: 200px; }
        }
        @media (max-width: 480px) {
            .ubicacion-strip { padding: 24px 16px; }
            .ubicacion-strip-map { height: 180px; }
        }
        .footer-col h3 {
            font-size: 0.56rem; letter-spacing: 4px;
            text-transform: uppercase; color: #3a3a3a; margin-bottom: 16px;
        }
        .footer-col a, .footer-col p {
            display: block; font-size: 0.75rem; color: #4a4a4a;
            text-decoration: none; margin-bottom: 10px;
            transition: color 0.2s; letter-spacing: 0.3px;
        }
        .footer-col a:hover { color: #fff; }
        .footer-bottom {
            padding: 18px 40px; display: flex;
            justify-content: space-between; align-items: center;
            max-width: 1100px; margin: 0 auto;
        }
        .footer-bottom p {
            font-size: 0.56rem; letter-spacing: 3px;
            text-transform: uppercase; color: #2a2a2a;
        }

        /* ══════════════════════════════
           ZOOM
        ══════════════════════════════ */
        .zoom-overlay {
            position: fixed; inset: 0;
            background: rgba(0,0,0,0.96);
            z-index: 5000; display: none;
            justify-content: center; align-items: center;
            cursor: zoom-out;
        }
        .zoom-overlay.active { display: flex; }
        .zoom-overlay img {
            max-width: 90%; max-height: 90%; object-fit: contain;
            transform: scale(0.95);
            transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        .zoom-overlay.active img { transform: scale(1); }

        /* ══════════════════════════════
           CARRITO
        ══════════════════════════════ */
        .overlay {
            position: fixed; inset: 0; background: rgba(0,0,0,0.35);
            visibility: hidden; opacity: 0; transition: 0.3s; z-index: 3000;
        }
        .overlay.active { visibility: visible; opacity: 1; }

        .cart-drawer {
            position: fixed; right: -100%; top: 0;
            width: min(400px, 100%); height: 100%;
            background: #fff; border-left: 1px solid var(--border);
            transition: right 0.35s ease; z-index: 4000;
            display: flex; flex-direction: column;
        }
        .cart-drawer.active { right: 0; }

        .cart-head {
            padding: 22px 24px 18px; border-bottom: 1px solid var(--border);
            display: flex; justify-content: space-between; align-items: center;
        }
        .cart-head h2 { font-size: 0.68rem; letter-spacing: 4px; text-transform: uppercase; font-weight: 600; }
        .cart-close {
            background: none; border: none; color: #aaa;
            font-size: 1.3rem; cursor: pointer; transition: color 0.2s;
        }
        .cart-close:hover { color: #111; }

        .cart-items { flex: 1; overflow-y: auto; }
        .cart-item {
            display: flex; justify-content: space-between; align-items: flex-start;
            padding: 16px 24px; border-bottom: 1px solid var(--border); gap: 12px;
        }
        .cart-item-info { flex: 1; }
        .cart-item-name { font-size: 0.8rem; font-weight: 600; margin-bottom: 4px; color: #111; }
        .cart-item-sub  { font-size: 0.72rem; color: #aaa; }
        .cart-del {
            background: none; border: none; color: #ccc; cursor: pointer;
            font-size: 0.62rem; letter-spacing: 1px; text-transform: uppercase;
            transition: color 0.2s; flex-shrink: 0;
        }
        .cart-del:hover { color: #e00; }
        .cart-empty {
            padding: 40px 24px; text-align: center;
            color: #ccc; font-size: 0.78rem; letter-spacing: 2px; text-transform: uppercase;
        }

        .cart-foot { padding: 18px 24px 28px; border-top: 1px solid var(--border); }
        .cart-total-row {
            display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px;
        }
        .cart-total-label { font-size: 0.62rem; letter-spacing: 3px; text-transform: uppercase; color: #aaa; }
        .cart-total-num { font-size: 1.1rem; font-weight: 700; color: #111; }
        .cart-envio-note {
            font-size: 0.57rem; color: #888; letter-spacing: 2px; text-transform: uppercase;
            text-align: center; margin: 0 0 16px; padding-top: 12px;
            border-top: 1px solid var(--border); line-height: 1.6;
        }
        .btn-checkout {
            display: block; width: 100%; padding: 15px;
            background: #111; color: #fff; border: none;
            font-weight: 700; font-size: 0.68rem; letter-spacing: 3px; text-transform: uppercase;
            cursor: pointer; transition: background 0.2s; margin-bottom: 8px; font-family: inherit;
        }
        .btn-checkout:hover { background: #333; }
        .btn-clear {
            display: block; width: 100%; padding: 11px;
            background: transparent; color: #aaa; border: 1px solid var(--border);
            font-size: 0.62rem; letter-spacing: 2px; text-transform: uppercase;
            cursor: pointer; transition: 0.2s; font-family: inherit;
        }
        .btn-clear:hover { color: #555; border-color: #aaa; }
        .btn-checkout-wa {
            display: block; width: 100%; padding: 11px;
            background: transparent; color: #555; border: 1px solid #d0d0d0;
            font-size: 0.62rem; letter-spacing: 2px; text-transform: uppercase;
            cursor: pointer; transition: 0.2s; margin-bottom: 8px; font-family: inherit;
        }
        .btn-checkout-wa:hover { color: #111; border-color: #888; }

        .fab-carrito {
            position: fixed; bottom: 28px; left: 28px;
            width: 56px; height: 56px;
            background: #111; border: none; border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            cursor: pointer; z-index: 400;
            box-shadow: 0 4px 20px rgba(0,0,0,0.22);
            opacity: 0; transform: scale(0.7) translateY(10px);
            transition: opacity 0.22s, transform 0.22s;
            pointer-events: none;
        }
        .fab-carrito.visible { opacity: 1; transform: scale(1) translateY(0); pointer-events: auto; }
        .fab-carrito:hover { background: #333; }
        .fab-badge {
            position: absolute; top: -3px; right: -3px;
            background: #fff; color: #111; font-size: 0.55rem; font-weight: 800;
            min-width: 18px; height: 18px; border-radius: 9px;
            display: flex; align-items: center; justify-content: center;
            border: 1.5px solid #111; padding: 0 4px; letter-spacing: 0;
        }

        /* ── VER MÁS ── */
        .btn-ver-mas {
            display: block; margin: 0 auto 56px;
            background: transparent; border: 1px solid #222;
            color: #111; font-size: 0.68rem; font-weight: 600;
            letter-spacing: 2.5px; text-transform: uppercase;
            padding: 13px 40px; cursor: pointer;
            transition: background 0.2s, color 0.2s;
        }
        .btn-ver-mas:hover { background: #111; color: #fff; }

        /* ── FAB COLECCIONES ── */
        .fab-colecciones {
            position: fixed; bottom: 28px; left: 28px; z-index: 900;
            display: none; align-items: center; gap: 7px;
            background: #111; color: #fff;
            border: none; border-radius: 30px;
            padding: 11px 20px 11px 16px;
            font-size: 0.65rem; font-weight: 700;
            letter-spacing: 2px; text-transform: uppercase;
            cursor: pointer; box-shadow: 0 4px 18px rgba(0,0,0,0.22);
            transition: background 0.2s, transform 0.2s, bottom 0.25s ease;
        }
        .fab-colecciones.visible { display: flex; }
        .fab-colecciones.with-cart { bottom: 96px; }
        .fab-colecciones:hover { background: #333; transform: translateY(-2px); }

        @media (max-width: 600px) {
            .fab-colecciones {
                width: 46px; height: 46px;
                padding: 0; border-radius: 50%;
                justify-content: center; gap: 0;
            }
            .fab-col-label { display: none; }
            .fab-colecciones.with-cart { bottom: 90px; }
        }

        /* ══════════════════════════════
           RESPONSIVE
        ══════════════════════════════ */
        @media (max-width: 1100px) {
            .vitrina { grid-template-columns: repeat(3, 1fr); }
        }

        /* ─ Tablet/mobile: ocultar nav, mostrar hamburguesa ─ */
        @media (max-width: 900px) {
            .brand-bar { padding: 0 16px; display: grid; grid-template-columns: 1fr auto 1fr; justify-items: center; }
            .brand-bar-side { min-width: 0; gap: 8px; width: 100%; }
            .brand-bar-side.left { justify-content: flex-start; }
            .brand-bar-side.right { justify-content: flex-end; }
            .brand-bar-side .bar-link:not(.bag-btn) { display: none; }
            .cart-label { display: none; }
            .cat-nav { display: none; }
            .hamburger-left {
                display: flex; align-items: center; justify-content: center;
                background: none; border: none; padding: 6px; cursor: pointer;
                color: var(--text);
            }
            .hamburger { display: none !important; }
            .brand-center-wrap { position: static; transform: none; pointer-events: auto; }
            .brand-roman { letter-spacing: 3px; }
            .vitrina { grid-template-columns: repeat(3, 1fr); }
        }

        .filter-mob-icon { display: none; }

        @media (max-width: 900px) {
            .ig-grid { grid-template-columns: repeat(3, 1fr); }
            .ig-section { padding: 36px 0 32px; }
            .ig-grid.ig-minigaleria { padding: 0 5px; grid-template-columns: repeat(2, 1fr); }
        }

        /* ─ Mobile ─ */
        @media (max-width: 768px) {
            .brand-name { font-size: 1.3rem; letter-spacing: 6px; }
            .hero { height: 75vh; min-height: 420px; }
            .hero-content { bottom: 32px; left: 20px; }
            .hero h1 { letter-spacing: 4px; margin-bottom: 4px; }
            .hero-subtitle { letter-spacing: 6px; font-size: 0.65rem; margin-bottom: 24px; }
            .btn-shop { padding: 12px 32px; font-size: 0.6rem; letter-spacing: 3px; }
            .section-header { padding: 28px 16px 14px; }
            .filter-bar { padding: 0 16px; gap: 0; }
            .filter-bar-controls { padding: 6px 0; gap: 6px; width: 100%; border-top: 1px solid var(--border); }
            .sort-btn, .filter-eti-pill { padding: 4px 9px; font-size: 0.55rem; }
            .filter-bar .filter-toggle-btn { display: none; }
            .filter-panel { padding: 14px 16px; }
            .filter-mob-icon {
                display: flex; align-items: center; justify-content: center; position: relative;
                background: none; border: none; padding: 6px; cursor: pointer;
                color: #bbb; transition: color 0.15s; flex-shrink: 0;
            }
            .filter-mob-icon.open { color: #111; }
            .filter-mob-icon .ftp-dot { position: absolute; top: 1px; right: 1px; }
            .vitrina { grid-template-columns: repeat(2, 1fr); gap: 10px; padding: 0 16px 48px; }
            .card-hover { display: none !important; }
            .card-mobile { display: flex; }
            .section-text { padding: 52px 20px; }
            .footer-lema { padding: 48px 24px 40px; }
            .footer-cols { grid-template-columns: 1fr 1fr; gap: 28px; padding: 36px 24px; }
            .footer-bottom { padding: 16px 24px; }
            .ig-grid.ig-minigaleria { grid-template-columns: 1fr; }
        }

        /* ─ Teléfonos pequeños ─ */
        @media (max-width: 480px) {
            .brand-name { font-size: 1.1rem; letter-spacing: 4px; }
            .hero { height: 70vh; }
            .hero-content { left: 16px; bottom: 24px; }
            .vitrina { gap: 8px; padding: 0 12px 40px; }
            .tarjeta-info { padding: 10px 10px 12px; }
            .prod-nombre { font-size: 0.65rem; }
            .footer-lema { padding: 32px 16px 28px; }
            .footer-lema-brand { font-size: 1.1rem; letter-spacing: 6px; }
            .footer-cols {
                grid-template-columns: 1fr 1fr;
                gap: 20px 16px;
                padding: 28px 16px;
            }
            .footer-col:nth-child(1) { grid-column: 2; grid-row: 1; }
            .footer-col:nth-child(2) { grid-column: 1 / -1; grid-row: 2; }
            .footer-col:nth-child(3) { grid-column: 1; grid-row: 1; }
        }

        /* ══════════════════════════════
           FILTER TABS
        ══════════════════════════════ */
        .filter-bar {
            display: flex; align-items: center; justify-content: space-between;
            padding: 0 40px; border-bottom: 1px solid var(--border);
            gap: 12px; flex-wrap: wrap;
        }
        .filter-bar-cats {
            display: flex; align-items: center;
            overflow-x: auto; scrollbar-width: none;
        }
        .filter-bar-cats::-webkit-scrollbar { display: none; }
        .filter-bar-controls {
            display: flex; align-items: center; gap: 10px; flex-wrap: wrap; padding: 8px 0;
        }
        .filter-bar-labels { display: flex; gap: 6px; flex-wrap: wrap; align-items: center; }
        .filter-bar-sort { display: flex; gap: 4px; flex-wrap: wrap; align-items: center; }
        .filter-btn {
            padding: 14px 24px; background: none; border: none;
            border-bottom: 2px solid transparent; font-size: 0.65rem; font-weight: 600;
            letter-spacing: 3px; text-transform: uppercase; color: #999; cursor: pointer;
            white-space: nowrap; transition: color 0.2s, border-color 0.2s;
            font-family: inherit; margin-bottom: -1px;
        }
        .filter-btn:hover { color: #111; }
        .filter-btn.active { color: #111; border-bottom-color: #111; }
        /* ── FILTER TOGGLE + PANEL ── */
        .section-header-right { display: flex; align-items: center; gap: 12px; }
        .filter-toggle-btn {
            background: none; border: 1px solid #ccc; padding: 6px 14px;
            font-size: 0.58rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
            color: #888; cursor: pointer; font-family: inherit; transition: 0.15s;
            display: flex; align-items: center; gap: 6px; position: relative; white-space: nowrap;
        }
        .filter-toggle-btn:hover { border-color: #111; color: #111; }
        .filter-toggle-btn.open  { background: #111; border-color: #111; color: #fff; }
        .ftp-chev { font-size: 0.65rem; transition: transform 0.2s; line-height: 1; }
        .filter-toggle-btn.open .ftp-chev { transform: rotate(180deg); }
        .ftp-dot {
            width: 6px; height: 6px; border-radius: 50%; background: #e74c3c;
            display: none; flex-shrink: 0;
        }
        .ftp-dot.visible { display: block; }
        .filter-toggle-btn.open .ftp-dot { background: #ff8a80; }
        .filter-panel {
            display: none; border-bottom: 1px solid var(--border);
            background: #fafafa; padding: 18px 40px;
        }
        .filter-panel.open { display: block; }
        .filter-panel-inner { display: flex; gap: 32px; flex-wrap: wrap; align-items: flex-start; }
        .filter-panel-group { display: flex; flex-direction: column; gap: 8px; }
        .filter-panel-label {
            font-size: 0.52rem; letter-spacing: 3px; text-transform: uppercase; color: #aaa;
        }
        .filter-bar-sort { display: flex; gap: 4px; flex-wrap: wrap; }
        .filter-bar-labels { display: flex; gap: 6px; flex-wrap: wrap; }
        .sort-btn {
            padding: 6px 13px; border: 1px solid #ddd; background: #fff;
            font-size: 0.58rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
            color: #999; cursor: pointer; font-family: inherit; transition: 0.15s;
        }
        .sort-btn:hover { border-color: #111; color: #111; }
        .sort-btn.active { background: #111; border-color: #111; color: #fff; }
        .filter-eti-pill {
            padding: 6px 13px; border: 1px solid #ddd; background: #fff;
            font-size: 0.58rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
            color: #777; cursor: pointer; font-family: inherit; transition: 0.15s;
        }
        .filter-eti-pill:hover { border-color: #111; color: #111; }
        .filter-eti-pill.active { background: #111; border-color: #111; color: #fff; }
        /* ── SECTION HEADER RIGHT ── */

        /* ══════════════════════════════
           BADGES
        ══════════════════════════════ */
        .badge {
            position: absolute;
            top: 12px; left: 12px;
            padding: 4px 10px;
            font-size: 0.55rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            z-index: 2;
            pointer-events: none;
        }
        .badge-nuevo   { background: #111; color: #fff; }
        .badge-oferta  { background: #d00; color: #fff; }
        .badge-restock { background: #e88000; color: #fff; }
        .badge-sale    { background: #d00; color: #fff; }

        /* ══════════════════════════════
           PRECIO CON TACHADO
        ══════════════════════════════ */
        .prod-precio-wrap { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
        .precio-actual { font-size: 1rem; font-weight: 700; color: #111; }
        .precio-antes  { font-size: 0.82rem; color: #aaa; text-decoration: line-through; font-weight: 400; }

        /* ══════════════════════════════
           PRODUCT MODAL
        ══════════════════════════════ */
        .prod-modal-overlay {
            position: fixed; inset: 0;
            background: rgba(0,0,0,0.6);
            z-index: 5000;
            display: none;
            justify-content: center;
            align-items: flex-start;
            overflow-y: auto;
            padding: 48px 20px;
        }
        .prod-modal-overlay.active { display: flex; }

        .prod-modal {
            background: #fff;
            width: 100%; max-width: 1060px;
            margin: auto;
            position: relative;
            animation: modalIn 0.3s ease;
        }
        @keyframes modalIn {
            from { opacity: 0; transform: translateY(20px); }
            to   { opacity: 1; transform: translateY(0); }
        }

        .prod-modal-close {
            position: absolute; top: 14px; right: 16px;
            background: rgba(0,0,0,0.08); border: none;
            width: 34px; height: 34px; border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.25rem; color: #222;
            cursor: pointer; z-index: 10; line-height: 1;
            transition: background 0.2s, color 0.2s;
        }
        .prod-modal-close:hover { background: rgba(0,0,0,0.15); color: #000; }

        .prod-modal-body {
            display: grid;
            grid-template-columns: 1fr 1fr;
        }

        .prod-modal-img {
            background: #f4f4f4;
            display: flex; flex-direction: column;
            overflow: hidden;
        }
        .prod-modal-img-wrap {
            width: 100%; aspect-ratio: 4/5; overflow: hidden; position: relative;
        }
        .prod-modal-img-wrap img,
        .prod-modal-img-wrap video {
            width: 100%; height: 100%;
            object-fit: cover;
            display: block;
            cursor: default;
            transition: transform 0.6s ease;
        }
        .prod-modal-img-wrap:hover img { transform: scale(1.04); }
        .modal-thumbs {
            display: flex; gap: 6px; padding: 8px 10px;
            background: #efefef; overflow-x: auto; scrollbar-width: none;
            flex-shrink: 0;
        }
        .modal-thumbs:empty { display: none; }
        .modal-thumbs::-webkit-scrollbar { display: none; }
        .modal-thumb {
            width: 62px; height: 62px; flex-shrink: 0; object-fit: cover;
            cursor: pointer; border: 2px solid transparent; transition: border-color 0.2s;
        }
        .modal-thumb.active { border-color: #111; }
        .modal-thumb:hover { border-color: #999; }
        .modal-thumb-vid {
            width: 62px; height: 62px; flex-shrink: 0; cursor: pointer;
            border: 2px solid transparent; transition: border-color 0.2s;
            position: relative; overflow: hidden;
        }
        .modal-thumb-vid video { width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none; }
        .modal-thumb-vid::after {
            content: '▶'; position: absolute; inset: 0;
            display: flex; align-items: center; justify-content: center;
            font-size: 1rem; color: rgba(255,255,255,0.9);
            background: rgba(0,0,0,0.25); pointer-events: none;
        }
        .modal-thumb-vid.active { border-color: #111; }
        .modal-thumb-vid:hover { border-color: #999; }

        .prod-modal-info {
            padding: 52px 44px 44px;
            display: flex;
            flex-direction: column;
        }

        .modal-badge-wrap { min-height: 28px; margin-bottom: 14px; }
        .modal-badge {
            display: inline-block;
            padding: 4px 10px;
            font-size: 0.55rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .modal-nombre {
            font-size: 1rem; font-weight: 700;
            letter-spacing: 2px; text-transform: uppercase;
            color: #111; margin-bottom: 14px; line-height: 1.45;
        }

        /* Variantes de color */
        .modal-variantes { margin-bottom: 24px; }
        .modal-variantes-label {
            font-size: 0.58rem; letter-spacing: 3px; text-transform: uppercase;
            color: #aaa; margin-bottom: 10px;
            display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
        }
        .modal-variantes-label strong { color: #111; font-weight: 600; }
        .modal-color-palette { display: inline-flex; align-items: center; }
        .modal-paleta-box {
            display: inline-block; width: 22px; height: 22px;
            border-radius: 4px; border: 1px solid rgba(0,0,0,0.18);
            box-shadow: 0 1px 4px rgba(0,0,0,0.15);
        }
        .modal-var-grid { display: flex; gap: 8px; flex-wrap: wrap; }
        .var-thumb {
            width: 54px; height: 54px; object-fit: cover;
            cursor: pointer; border: 2px solid transparent;
            transition: border-color 0.2s; display: block;
        }
        .var-thumb:hover  { border-color: #999; }
        .var-thumb.active { border-color: #111; }

        .modal-precio-wrap {
            display: flex; align-items: center; gap: 10px;
            margin-bottom: 32px;
        }
        .modal-precio       { font-size: 1.45rem; font-weight: 700; color: #111; }
        .modal-precio-antes { font-size: 1rem; color: #aaa; text-decoration: line-through; }

        .modal-tallas-label {
            font-size: 0.58rem; letter-spacing: 3px;
            text-transform: uppercase; color: #aaa; margin-bottom: 10px;
        }
        .modal-talla-qty-grid { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
        .modal-tq-row { display: flex; align-items: center; gap: 0; }
        .modal-tq-label { font-size: 0.65rem; letter-spacing: 1px; font-weight: 600; min-width: 52px; color: #111; text-transform: uppercase; }
        .modal-tq-btn { width: 34px; height: 34px; background: none; border: 1px solid #ddd; font-size: 1rem; cursor: pointer; color: #111; transition: 0.15s; font-family: inherit; }
        .modal-tq-btn:hover { border-color: #111; }
        .modal-tq-num { width: 42px; height: 34px; border-top: 1px solid #ddd; border-bottom: 1px solid #ddd; font-size: 0.82rem; font-weight: 600; display: flex; align-items: center; justify-content: center; color: #111; }
        .modal-tq-agotado-txt { font-size: 0.52rem; letter-spacing: 3px; text-transform: uppercase; color: #bbb; margin-left: 10px; }

        .card-agotado-overlay { position:absolute;inset:0;background:rgba(255,255,255,0.72);display:flex;align-items:center;justify-content:center;z-index:3;pointer-events:none; }
        .card-agotado-label { font-size:0.52rem;letter-spacing:4px;font-weight:700;color:#111;border:1px solid #111;padding:5px 14px; }

        .modal-btn-cart {
            width: 100%; padding: 16px; background: #111; color: #fff; border: none;
            font-weight: 700; font-size: 0.68rem; letter-spacing: 4px; text-transform: uppercase;
            cursor: pointer; transition: background 0.2s; font-family: inherit; margin-bottom: 10px;
        }
        .modal-btn-cart:hover { background: #333; }

        .modal-descripcion {
            display: none; font-size: 0.72rem; line-height: 1.75;
            color: #555; margin-bottom: 14px;
        }
        .modal-descripcion-label {
            font-size: 0.58rem; letter-spacing: 2px; text-transform: uppercase;
            color: #999; font-weight: 600; display: block; margin-bottom: 4px;
        }

        .modal-prod-link {
            display: block; margin-bottom: 10px;
            font-size: 0.62rem; letter-spacing: 1px; color: #aaa;
            text-decoration: none; transition: color 0.2s;
        }
        .modal-prod-link:hover { color: #111; }

        .modal-cat-tag {
            margin-top: auto; padding-top: 24px;
            font-size: 0.58rem; letter-spacing: 3px;
            text-transform: uppercase; color: #ccc;
        }

        /* Related */
        .modal-related {
            border-top: 1px solid var(--border);
            padding: 32px 44px 44px;
        }
        .modal-related-title {
            font-size: 0.58rem; letter-spacing: 4px;
            text-transform: uppercase; color: #bbb; margin-bottom: 18px;
        }
        .modal-related-grid {
            display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px;
        }
        .modal-rel-item { cursor: pointer; overflow: hidden; }
        .modal-rel-item img {
            width: 100%; aspect-ratio: 4/5;
            object-fit: cover; display: block;
            background: #f4f4f4; transition: opacity 0.2s;
        }
        .modal-rel-item:hover img { opacity: 0.82; }
        .modal-rel-item .rel-name {
            font-size: 0.62rem; font-weight: 600; letter-spacing: 1px;
            text-transform: uppercase; color: #333;
            margin-top: 8px; overflow: hidden;
            text-overflow: ellipsis; white-space: nowrap;
        }
        .modal-rel-item .rel-price {
            font-size: 0.78rem; font-weight: 700; color: #111;
        }

        @media (max-width: 768px) {
            .prod-modal-overlay { padding: 0; align-items: flex-start; }
            .prod-modal { min-height: 100dvh; }
            .prod-modal-close { top: 12px; right: 12px; width: 38px; height: 38px; font-size: 1.3rem; background: rgba(0,0,0,0.12); color: #111; }
            .prod-modal-body { grid-template-columns: 1fr; }
            .prod-modal-img-wrap { aspect-ratio: 4/3; }
            .prod-modal-info { padding: 24px 20px 32px; }
            .modal-nombre { font-size: 0.88rem; }
            .modal-talla-qty-grid { gap: 6px; }
            .modal-btn-cart { padding: 14px; }
            .modal-related { padding: 22px 20px 36px; }
            .modal-related-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
        }
        @media (max-width: 480px) {
            .prod-modal-img-wrap { aspect-ratio: 1/1; }
            .prod-modal-info { padding: 20px 16px 28px; }
            .modal-related { padding: 18px 16px 32px; }
            .modal-related-grid { gap: 8px; }
        }

        /* ══════════════════════════════
           NEW DROP SECTIONS
        ══════════════════════════════ */
        #new-drop-sections { margin-top: 0; }

        .drop-section {
            position: relative;
            background-color: #0a0a0a;
            background-size: cover;
            background-position: center top;
            background-attachment: fixed;
            padding: 80px 40px 70px;
            overflow: hidden;
        }
        .drop-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.45) 100%);
            z-index: 0;
        }
        .drop-section-inner {
            position: relative;
            z-index: 1;
            max-width: 1400px;
            margin: 0 auto;
        }
        .drop-sound-btn {
            position: absolute; top: 20px; right: 20px;
            z-index: 2;
            display: flex; align-items: center; gap: 8px;
            background: transparent; border: none; border-radius: 0;
            padding: 0; cursor: pointer;
            color: #fff; transition: transform 0.15s;
            font-family: inherit;
        }
        .drop-sound-btn:hover { transform: scale(1.12); }
        .drop-sound-btn.playing { transform: scale(1.05); }
        .drop-sound-icon {
            font-size: 2.4rem; line-height: 1;
            filter: drop-shadow(0 2px 8px rgba(0,0,0,0.7));
        }
        .drop-sound-wave { display: flex; align-items: flex-end; gap: 2px; height: 14px; }
        .drop-sound-wave span {
            display: block; width: 3px; background: rgba(255,255,255,0.6);
            border-radius: 2px; animation: none;
        }
        .drop-sound-wave span:nth-child(1) { height: 6px; }
        .drop-sound-wave span:nth-child(2) { height: 11px; }
        .drop-sound-wave span:nth-child(3) { height: 8px; }
        .drop-sound-btn.playing .drop-sound-wave span { animation: soundBar 0.6s ease-in-out infinite alternate; }
        .drop-sound-btn.playing .drop-sound-wave span:nth-child(2) { animation-delay: 0.15s; }
        .drop-sound-btn.playing .drop-sound-wave span:nth-child(3) { animation-delay: 0.3s; }
        @keyframes soundBar {
            from { transform: scaleY(0.3); }
            to   { transform: scaleY(1.2); }
        }
        .drop-section-header {
            text-align: center;
            margin-bottom: 48px;
        }
        .drop-section-eyebrow {
            font-size: 0.58rem;
            letter-spacing: 7px;
            text-transform: uppercase;
            color: rgba(255,255,255,0.4);
            display: block;
            margin-bottom: 10px;
        }
        .drop-section-name {
            font-family: 'Cormorant Garant', Georgia, serif;
            font-size: 3.6rem;
            font-weight: 600;
            color: #fff;
            letter-spacing: 6px;
            text-transform: uppercase;
            margin-bottom: 18px;
            line-height: 1;
        }
        .drop-section-link {
            display: inline-block;
            font-size: 0.6rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: rgba(255,255,255,0.55);
            text-decoration: none;
            border-bottom: 1px solid rgba(255,255,255,0.25);
            padding-bottom: 3px;
            transition: color 0.2s, border-color 0.2s;
        }
        .drop-section-link:hover { color: #fff; border-color: #fff; }
        .drops-ver-mas-wrap { background: #000; text-align: center; padding: 40px 20px; }
        .drops-ver-mas {
            background: none; border: 1px solid #333; color: #aaa;
            font-size: 0.62rem; letter-spacing: 3px; text-transform: uppercase;
            padding: 14px 40px; cursor: pointer; font-family: inherit;
            transition: 0.2s;
        }
        .drops-ver-mas:hover { border-color: #fff; color: #fff; }
        .drop-section-divider {
            width: 48px;
            height: 1px;
            background: rgba(255,255,255,0.18);
            margin: 0 auto 18px;
        }
        .drop-section-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
            gap: 18px;
        }
        .drop-card {
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.08);
            overflow: hidden;
            cursor: pointer;
            transition: border-color 0.25s, transform 0.25s;
        }
        .drop-card:hover { border-color: rgba(255,255,255,0.22); transform: translateY(-3px); }
        .drop-card-img {
            position: relative;
            padding-top: 125%;
            overflow: hidden;
            background: #111;
        }
        .drop-card-img img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        .drop-card:hover .drop-card-img img { transform: scale(1.04); }
        .drop-card-badge {
            position: absolute;
            top: 10px;
            left: 10px;
            font-size: 0.48rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            padding: 3px 8px;
        }
        .drop-card-info {
            padding: 12px 14px 16px;
        }
        .drop-card-nombre {
            font-size: 0.75rem;
            font-weight: 500;
            color: #e8e8e8;
            letter-spacing: 0.5px;
            margin-bottom: 4px;
        }
        .drop-card-precio {
            font-size: 0.7rem;
            color: rgba(255,255,255,0.45);
        }
        .drop-card-precio-actual { color: #e0e0e0; }
        .drop-card-precio-antes  { text-decoration: line-through; color: rgba(255,255,255,0.28); margin-left: 5px; font-size: 0.65rem; }
        .drop-empty-msg {
            text-align: center;
            padding: 40px;
            color: rgba(255,255,255,0.2);
            font-size: 0.65rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            grid-column: 1/-1;
        }
        .drop-grid-wrap { display: contents; }
        .drop-col-mobile { display: none; }

        @media (max-width: 900px) {
            .drop-section { padding: 60px 24px 56px; background-attachment: scroll; }
            .drop-section-name { font-size: 2.6rem; }
            .drop-sound-btn { top: 14px; right: 14px; }
            .drop-sound-icon { font-size: 2.1rem; }
            .drop-grid-wrap {
                display: block;
                position: relative;
            }
            .drop-section-grid {
                display: flex;
                flex-wrap: nowrap;
                overflow-x: auto;
                gap: 10px;
                padding-bottom: 10px;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
            }
            .drop-section-grid::-webkit-scrollbar { display: none; }
            .drop-card {
                flex: 0 0 150px;
                width: 150px;
            }
            .drop-card-img { padding-top: 120%; }
            .drop-arrow {
                display: flex;
                position: absolute;
                top: 50%;
                transform: translateY(-60%);
                z-index: 3;
                width: 34px;
                height: 54px;
                align-items: center;
                justify-content: center;
                background: rgba(0,0,0,0.32);
                border: none;
                color: rgba(255,255,255,0.85);
                font-size: 1.6rem;
                cursor: pointer;
                border-radius: 4px;
                transition: opacity 0.25s, background 0.2s;
                line-height: 1;
                padding: 0;
                -webkit-tap-highlight-color: transparent;
            }
            .drop-arrow:active { background: rgba(0,0,0,0.55); }
            .drop-arrow-left  { left: -2px; }
            .drop-arrow-right { right: -2px; }
        }
        @media (max-width: 480px) {
            .drop-section { padding: 50px 16px 46px; }
            .drop-section-name { font-size: 2rem; letter-spacing: 4px; }
            .drop-sound-btn { top: 12px; right: 12px; }
            .drop-sound-icon { font-size: 2rem; }
            .drop-card { flex: 0 0 135px; width: 135px; }
        }

        /* ── MOBILE: banner arriba + productos en scroll abajo ── */
        @media (max-width: 600px) {
            /* Quitar columnas laterales, layout vertical */
            .drop-col-mobile { display: none !important; }
            .drop-col-arrow-t, .drop-col-arrow-b { display: none; }

            .drop-section {
                padding: 0;
                background-attachment: scroll;
            }

            .drop-section-inner {
                display: flex;
                flex-direction: column;
                min-height: unset;
            }

            /* Banner: imagen de fondo visible, título centrado encima */
            .drop-section {
                background-image: none !important;
            }
            .drop-section::before { display: none; }

            .drop-section-header {
                position: relative;
                min-height: 210px;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                padding: 36px 20px 32px;
                margin-bottom: 0;
                text-align: center;
                overflow: hidden;
                background-color: #111;
            }
            /* Imagen de fondo vía CSS variable del section padre */
            .drop-section-header::before {
                content: '';
                position: absolute;
                inset: 0;
                background-image: var(--banner);
                background-size: cover;
                background-position: center;
                z-index: 0;
            }
            /* Overlay oscuro encima de la imagen */
            .drop-section-header::after {
                content: '';
                position: absolute;
                inset: 0;
                background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
                z-index: 1;
            }
            .drop-section-eyebrow,
            .drop-section-name,
            .drop-section-divider,
            .drop-section-link { position: relative; z-index: 2; }

            .drop-section-name  { font-size: 1.6rem; letter-spacing: 4px; margin-bottom: 12px; }
            .drop-section-eyebrow { font-size: 0.52rem; letter-spacing: 4px; margin-bottom: 8px; }
            .drop-section-divider { margin: 8px auto; }
            .drop-section-link  { font-size: 0.52rem; letter-spacing: 2px; }

            /* Franja de productos: scroll horizontal, fondo oscuro sólido */
            .drop-grid-wrap {
                display: block !important;
                background: #0d0d0d;
                padding: 14px 0 14px 12px;
                overflow: hidden;
                position: relative;
            }
            /* Flecha izquierda */
            .drop-grid-wrap::before {
                content: '‹';
                position: absolute;
                left: 0; top: 0; bottom: 0;
                width: 36px;
                background: linear-gradient(to right, rgba(13,13,13,0.75) 40%, transparent);
                display: flex;
                align-items: center;
                justify-content: center;
                color: rgba(255,255,255,0.5);
                font-size: 1.6rem;
                line-height: 1;
                pointer-events: none;
                z-index: 2;
            }
            /* Flecha derecha */
            .drop-grid-wrap::after {
                content: '›';
                position: absolute;
                right: 0; top: 0; bottom: 0;
                width: 36px;
                background: linear-gradient(to left, rgba(13,13,13,0.75) 40%, transparent);
                display: flex;
                align-items: center;
                justify-content: center;
                color: rgba(255,255,255,0.5);
                font-size: 1.6rem;
                line-height: 1;
                pointer-events: none;
                z-index: 2;
            }
            .drop-section-grid {
                display: flex !important;
                flex-direction: row;
                gap: 10px;
                overflow-x: auto;
                scroll-snap-type: x mandatory;
                scrollbar-width: none;
                padding-right: 12px;
            }
            .drop-section-grid::-webkit-scrollbar { display: none; }
            .drop-section-grid .drop-card {
                flex: 0 0 130px;
                width: 130px;
                scroll-snap-align: start;
            }
            .drop-section-grid .drop-card-img { padding-top: 125%; }
            .drop-section-grid .drop-card-nombre { font-size: 0.6rem; }
            .drop-section-grid .drop-card-precio { font-size: 0.62rem; }

            /* Flechas de navegación: ocultar en mobile (ya hay scroll táctil) */
            .drop-arrow { display: none !important; }

            .drop-sound-btn { top: 10px; right: 10px; }
            .drop-sound-icon { font-size: 1.6rem; }
        }

        /* ── GUÍA DE TALLAS ── */
        .guia-overlay {
            position: fixed; inset: 0; z-index: 6000;
            background: rgba(0,0,0,0.55); display: none;
            align-items: center; justify-content: center; padding: 20px;
        }
        .guia-overlay.open { display: flex; }
        .guia-modal {
            background: #fff; width: 100%; max-width: 480px;
            max-height: 90vh; overflow-y: auto;
            padding: 28px 28px 24px; position: relative;
        }
        .guia-head {
            display: flex; align-items: center; justify-content: space-between;
            margin-bottom: 10px;
        }
        .guia-head h3 {
            font-size: 0.9rem; font-weight: 700;
            letter-spacing: 3px; text-transform: uppercase;
        }
        .guia-close {
            background: none; border: none; font-size: 1.1rem;
            cursor: pointer; color: #888; padding: 4px 8px;
            transition: color 0.2s;
        }
        .guia-close:hover { color: #111; }
        .guia-nota {
            font-size: 0.72rem; color: #888; margin-bottom: 18px;
            line-height: 1.5;
        }
        .guia-tabs {
            display: flex; gap: 0; margin-bottom: 18px;
            border-bottom: 1px solid #e8e8e8;
        }
        .guia-tab {
            background: none; border: none; border-bottom: 2px solid transparent;
            padding: 8px 18px; font-size: 0.7rem; font-weight: 600;
            letter-spacing: 1.5px; text-transform: uppercase;
            cursor: pointer; color: #999; margin-bottom: -1px;
            transition: color 0.2s, border-color 0.2s;
        }
        .guia-tab.active { color: #111; border-bottom-color: #111; }
        .guia-table { width: 100%; border-collapse: collapse; }
        .guia-table th {
            font-size: 0.62rem; letter-spacing: 2px; text-transform: uppercase;
            color: #999; font-weight: 600; padding: 8px 10px;
            border-bottom: 1px solid #e8e8e8; text-align: left;
        }
        .guia-table td {
            font-size: 0.78rem; padding: 10px 10px; color: #333;
            border-bottom: 1px solid #f2f2f2;
        }
        .guia-table td:first-child { font-weight: 700; color: #111; }
        .guia-table tr:last-child td { border-bottom: none; }
        .guia-tip {
            font-size: 0.67rem; color: #aaa; margin-top: 18px;
            line-height: 1.6; border-top: 1px solid #f0f0f0; padding-top: 14px;
        }
        .guia-tallas-link {
            background: none; border: none; color: #888;
            font-size: 0.65rem; letter-spacing: 0.5px;
            cursor: pointer; padding: 0; margin-left: 10px;
            text-decoration: underline; text-underline-offset: 3px;
            transition: color 0.2s; font-family: inherit;
        }
        .guia-tallas-link:hover { color: #111; }
        @media (max-width: 480px) {
            .guia-modal { padding: 20px 16px 20px; }
            .guia-table td, .guia-table th { padding: 8px 6px; }
        }

        /* ── SKU + POCO STOCK ── */
        .modal-sku, .prod-sku {
            font-size: 0.62rem; color: #bbb; letter-spacing: 2px;
            text-transform: uppercase; margin: 3px 0 10px;
        }
        .poco-stock-badge {
            display: inline-block; margin-left: 8px;
            font-size: 0.58rem; font-weight: 700; letter-spacing: 1px;
            color: #c0392b; background: #fdf0ee;
            padding: 1px 6px; border-radius: 3px; text-transform: uppercase;
        }

        /* ── TIKTOK IN-APP BROWSER BANNER ── */
        .tiktok-open-banner {
            display: none;
            position: fixed;
            bottom: 0; left: 0; right: 0;
            z-index: 10000;
            background: rgba(10,10,10,0.96);
            color: #fff;
            padding: 14px 44px 24px 20px;
            text-align: center;
            border-top: 1px solid rgba(255,255,255,0.12);
            -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
        }
        html.in-tiktok .tiktok-open-banner { display: block; }
        .tiktok-banner-msg {
            margin: 0;
            font-size: 0.78rem;
            line-height: 1.65;
            font-family: Inter, sans-serif;
        }
        .tiktok-banner-msg strong { font-weight: 700; color: #fff; }
        .tiktok-banner-close {
            position: absolute;
            top: 10px; right: 12px;
            background: none;
            border: none;
            color: rgba(255,255,255,0.5);
            font-size: 1.3rem;
            cursor: pointer;
            padding: 4px 8px;
            line-height: 1;
        }
