:root {
    --yellow: #FFD700;
    --yellow-dark: #E6B800;
    --yellow-glow: rgba(255, 215, 0, 0.25);
    --black: #0D0D0D;
    --black-2: #141414;
    --black-3: #1E1E1E;
    --black-4: #2A2A2A;
    --white: #FFFFFF;
    --gray: #777777;
    --gray-light: #BBBBBB;
    --green: #25D366;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
img { max-width: 100%; height: auto; }
button, a { -webkit-tap-highlight-color: transparent; }

/* ── TOP BAR ── */
.top-bar {
    background: var(--yellow);
    color: var(--black);
    text-align: center;
    padding: 9px 24px;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    z-index: 1001;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
}

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

/* ── LOGO ── */
.logo-img-link { display: flex; align-items: center; text-decoration: none; }
.header-logo   { height: 72px; width: auto; display: block; }

.hero-logo {
    width: min(500px, 85%);
    height: auto;
    display: block;
    margin: 0 auto 10px auto;
}

.hero-slogan-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.1;
    margin-bottom: 20px;
}
.hero-slogan-white {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2.2rem, 5.5vw, 4.2rem);
    font-weight: 900;
    color: var(--white);
}
.hero-slogan-yellow {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2.2rem, 5.5vw, 4.2rem);
    font-weight: 900;
    color: var(--yellow);
}
.hero-sub {
    color: var(--white);
    font-size: clamp(0.85rem, 1.5vw, 1rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 32px;
    letter-spacing: 0.3px;
}

/* ── HEADER ── */
.header {
    position: sticky;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(13, 13, 13, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 2px solid var(--yellow);
    padding: 0;
    transition: padding 0.3s;
}
.header .container {
    padding-top: 0;
    padding-bottom: 0;
}
.header .container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 16px;
}
.header .container .nav {
    justify-self: center;
}
.header .container .header-right {
    justify-self: end;
}

.nav { display: flex; gap: 28px; }
.nav-link {
    color: var(--gray-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    transition: color 0.25s;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: var(--yellow);
    transition: width 0.3s;
}
.nav-link:hover { color: var(--yellow); }
.nav-link:hover::after { width: 100%; }

.header-right { display: flex; align-items: center; gap: 12px; }

.social-icons { display: flex; gap: 8px; }
.social-icon {
    width: 34px; height: 34px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none;
    font-size: 0.85rem;
    transition: transform 0.25s, box-shadow 0.25s;
}
.social-icon:hover { transform: scale(1.15); box-shadow: 0 4px 16px var(--yellow-glow); }
.si-wa { background: #25D366; color: #fff; }
.si-ig { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: #fff; }
.si-fb { background: #1877F2; color: #fff; }

.cart-btn {
    background: var(--yellow);
    color: var(--black);
    border: none;
    padding: 9px 15px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background 0.25s, transform 0.2s;
}
.cart-btn:hover { background: var(--yellow-dark); transform: scale(1.05); }

.cart-count {
    background: var(--black);
    color: var(--yellow);
    border-radius: 50%;
    width: 20px; height: 20px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.7rem;
    font-weight: 900;
}

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--yellow);
    font-size: 1.4rem;
    cursor: pointer;
}

/* ── CART SIDEBAR ── */
.cart-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.75);
    z-index: 1998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.cart-overlay.active { opacity: 1; pointer-events: all; }

.cart-sidebar {
    position: fixed;
    top: 0; right: -440px;
    width: 420px; max-width: 100vw;
    height: 100vh;
    background: var(--black-2);
    z-index: 1999;
    display: flex;
    flex-direction: column;
    border-left: 2px solid var(--yellow);
    transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
}
.cart-sidebar.active { right: 0; }

.cart-header {
    padding: 20px;
    background: var(--black);
    border-bottom: 1px solid var(--black-4);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
    gap: 12px;
}
.cart-header-text h2 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 3px;
}
.cart-header-text p {
    font-size: 0.78rem;
    color: var(--gray);
}
.cart-close {
    background: var(--white);
    color: var(--black);
    border: none;
    padding: 8px 18px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 0.85rem;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s;
}
.cart-close:hover { background: var(--gray-light); }

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
}
.cart-items::-webkit-scrollbar { width: 4px; }
.cart-items::-webkit-scrollbar-track { background: var(--black-3); }
.cart-items::-webkit-scrollbar-thumb { background: var(--yellow); border-radius: 2px; }

.cart-empty {
    background: var(--black-3);
    border-radius: 12px;
    padding: 20px;
    color: var(--gray-light);
    font-size: 0.88rem;
}

.cart-item {
    display: flex;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--black-4);
    animation: slideIn 0.2s ease;
}
@keyframes slideIn { from { opacity:0; transform:translateX(10px); } to { opacity:1; transform:translateX(0); } }

.cart-item-icon {
    width: 48px; height: 48px;
    background: var(--black-4);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: var(--yellow);
    font-size: 1.2rem;
    flex-shrink: 0;
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name {
    font-weight: 700;
    font-size: 0.88rem;
    margin-bottom: 3px;
    line-height: 1.3;
}
.cart-item-subtotal { color: var(--yellow); font-weight: 700; font-size: 0.9rem; }
.cart-item-unit { color: var(--gray); font-size: 0.75rem; margin-bottom: 8px; }

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}
.qty-btn {
    width: 26px; height: 26px;
    background: var(--black-4);
    border: 1px solid var(--yellow);
    color: var(--yellow);
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.8rem;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s;
}
.qty-btn:hover { background: var(--yellow); color: var(--black); }
.qty-num { font-weight: 800; min-width: 22px; text-align: center; font-size: 0.9rem; }
.cart-item-remove {
    background: transparent;
    border: none;
    color: #cc3333;
    cursor: pointer;
    font-size: 0.8rem;
    padding: 4px;
    transition: transform 0.2s;
    margin-left: auto;
}
.cart-item-remove:hover { transform: scale(1.2); }

.cart-footer {
    padding: 16px;
    background: var(--black);
    border-top: 1px solid var(--black-4);
    flex-shrink: 0;
}
.cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 12px;
    color: var(--white);
}
.cart-total-price { color: var(--yellow); font-size: 1.3rem; font-family: 'Bebas Neue', sans-serif; letter-spacing: 1px; }

.cart-footer-btns {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 10px;
}
.btn-vaciar {
    padding: 14px;
    background: var(--black-3);
    color: var(--white);
    border: none;
    border-radius: 14px;
    font-size: 0.95rem;
    font-weight: 800;
    cursor: pointer;
    transition: background 0.2s;
}
.btn-vaciar:hover { background: var(--black-4); }

.btn-enviar-compra {
    padding: 14px;
    background: var(--yellow);
    color: var(--black);
    border: none;
    border-radius: 14px;
    font-size: 0.95rem;
    font-weight: 900;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}
.btn-enviar-compra:hover { background: var(--yellow-dark); transform: scale(1.02); }

/* ── HERO ── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 40px;
    background: var(--black);
}
.hero-bg {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 75% 45%, rgba(255,215,0,0.09) 0%, transparent 55%),
        radial-gradient(ellipse at 15% 85%, rgba(255,215,0,0.05) 0%, transparent 50%);
}
.hero-shapes { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.shape {
    position: absolute;
    border: 1.5px solid rgba(255,215,0,0.08);
    border-radius: 50%;
}
.shape-1 { width: 700px; height: 700px; right: -250px; top: -150px; animation: spin 40s linear infinite; }
.shape-2 { width: 450px; height: 450px; right: 50px; top: 30px; animation: spin 25s linear infinite reverse; }
.shape-3 { width: 220px; height: 220px; right: 200px; top: 230px; border-color: rgba(255,215,0,0.15); animation: spin 12s linear infinite; }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* Hero layout dos columnas */
.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 60px;
    min-height: 80vh;
}
.hero-content { text-align: center; }

/* iPhone mockup */
.iphone-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}
.iphone {
    position: relative;
    width: 235px;
    height: 480px;
    background: #1a1a1a;
    border-radius: 44px;
    border: 2px solid #3a3a3a;
    box-shadow:
        0 0 0 1px #111,
        inset 0 0 0 2px #2a2a2a,
        0 30px 80px rgba(0,0,0,0.7),
        0 0 40px rgba(255,215,0,0.08);
    overflow: visible;
}

/* Botones laterales */
.iphone-btn {
    position: absolute;
    background: #2a2a2a;
    border-radius: 3px;
}
.iphone-btn-power {
    width: 3px; height: 70px;
    right: -5px; top: 110px;
}
.iphone-btn-vol1 {
    width: 3px; height: 45px;
    left: -5px; top: 100px;
}
.iphone-btn-vol2 {
    width: 3px; height: 45px;
    left: -5px; top: 158px;
}

/* Dynamic island */
.iphone-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px; height: 22px;
    background: #000;
    border-radius: 20px;
    z-index: 10;
}

/* Pantalla */
.iphone-screen {
    position: absolute;
    inset: 6px;
    border-radius: 40px;
    overflow: hidden;
    background: #000;
}
.iphone-screen video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Home indicator */
.iphone-indicator {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px; height: 4px;
    background: rgba(255,255,255,0.35);
    border-radius: 3px;
    z-index: 10;
}

.hero-badge {
    display: inline-block;
    background: var(--yellow);
    color: var(--black);
    padding: 5px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 22px;
}

.hero-brand {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(5rem, 14vw, 11rem);
    line-height: 0.9;
    color: var(--yellow);
    letter-spacing: 6px;
    text-shadow: 0 0 100px rgba(255,215,0,0.25);
}

.hero-slogan {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.8rem, 4.5vw, 3.6rem);
    line-height: 1.1;
    color: var(--white);
    letter-spacing: 3px;
    margin-top: 8px;
}
.hero-slogan em {
    font-style: normal;
    color: var(--yellow);
}


.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--yellow);
    color: var(--black);
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 900;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
}
.btn-primary:hover {
    background: var(--yellow-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--yellow-glow);
}

.btn-wa-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--green);
    border: 2px solid var(--green);
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.25s;
}
.btn-wa-hero:hover { background: var(--green); color: #fff; transform: translateY(-2px); }

/* ── SECTIONS ── */
section { padding: 90px 0; }

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    letter-spacing: 2px;
    line-height: 1.1;
    margin-bottom: 10px;
}
.section-title em { font-style: normal; color: var(--yellow); }
.text-center { text-align: center; }

.section-badge {
    display: inline-block;
    background: rgba(255,215,0,0.1);
    color: var(--yellow);
    border: 1px solid rgba(255,215,0,0.3);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

/* ── CATEGORIES ── */
.categories {
    background: var(--black-2);
    padding: 80px 0;
}
.categories .section-title { margin-bottom: 40px; }

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 18px;
}
.category-card {
    background: var(--black-3);
    border: 1px solid rgba(255,215,0,0.1);
    border-radius: 14px;
    padding: 28px 18px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}
.category-card:hover {
    border-color: var(--yellow);
    background: rgba(255,215,0,0.04);
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(255,215,0,0.12);
}
.cat-icon {
    font-size: 2rem;
    color: var(--yellow);
    margin-bottom: 12px;
}
.category-card h3 {
    font-size: 0.95rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}
.category-card span {
    font-size: 0.72rem;
    color: var(--gray);
    letter-spacing: 0.5px;
}

/* ── PRODUCTS ── */
.products { background: var(--black); }

.section-header { margin-bottom: 40px; }
.section-header .section-title {
    background: linear-gradient(90deg, #fff8c0, var(--yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}
.filter-btn {
    background: var(--black-3);
    color: var(--gray-light);
    border: 1px solid var(--black-4);
    padding: 7px 18px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.25s;
    white-space: normal;
    text-align: center;
    max-width: 200px;
    line-height: 1.3;
}
.filter-btn:hover,
.filter-btn.active {
    background: var(--yellow);
    color: var(--black);
    border-color: var(--yellow);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 22px;
}

/* ── PRODUCT MEDIA ── */
.product-media {
    width: 100%;
    height: 190px;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
    background: var(--black-3);
}
.product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}
.product-card:hover .product-media img { transform: scale(1.04); }
.product-media-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: var(--yellow);
}

/* ── CAROUSEL ── */
.modal-carousel {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    overflow: hidden;
    background: var(--black-3);
}
.carousel-track { width: 100%; height: 100%; }
.carousel-slide {
    display: none;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}
.carousel-slide.active { display: flex; }
.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.carousel-slide video,
.carousel-slide iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
    background: #000;
    object-fit: contain;
}
.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.55);
    border: none;
    color: var(--white);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    z-index: 2;
    transition: background 0.2s;
}
.carousel-prev:hover,
.carousel-next:hover { background: rgba(0,0,0,0.85); }
.carousel-prev { left: 10px; }
.carousel-next { right: 10px; }
.carousel-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 2;
}
.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s;
}
.carousel-dot.active { background: var(--yellow); }

/* ── PRODUCT CARDS ── */
.product-card {
    background: var(--black-2);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
}
.product-card:hover {
    border-color: rgba(255,215,0,0.3);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.product-card.out-of-stock {
    position: relative;
    opacity: 0.6;
    pointer-events: none;
}
.product-card.out-of-stock::after {
    content: 'SIN STOCK';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-35deg);
    width: 150%;
    text-align: center;
    background: #cc0000;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 900;
    letter-spacing: 3px;
    padding: 10px 0;
    pointer-events: none;
    z-index: 10;
    box-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.product-card.out-of-stock .btn-add-cart,
.product-card.out-of-stock .btn-quick-buy {
    opacity: 0.4;
    cursor: not-allowed;
}
.product-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.product-badge {
    display: inline-block;
    background: rgba(255,215,0,0.12);
    color: var(--yellow);
    border: 1px solid rgba(255,215,0,0.25);
    padding: 3px 12px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    align-self: flex-start;
}
.product-name {
    font-weight: 800;
    font-size: 1.05rem;
    line-height: 1.3;
    color: var(--white);
    margin: 0;
}
.product-desc {
    color: var(--gray);
    font-size: 0.82rem;
    line-height: 1.5;
    margin: 0;
}
.specs-table { display: flex; flex-direction: column; gap: 4px; }
.spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--black-3);
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 0.82rem;
}
.spec-label { color: var(--gray-light); font-weight: 600; }
.spec-value  { color: var(--gray); text-align: right; }
.product-price-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, rgba(255,215,0,0.12), rgba(255,215,0,0.05));
    border: 1px solid rgba(255,215,0,0.35);
    border-radius: 10px;
    padding: 10px 14px;
    margin-top: auto;
}
.price-label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--yellow);
    opacity: 0.8;
}
.price-amount {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.7rem;
    color: var(--yellow);
    letter-spacing: 1px;
    line-height: 1;
}
.product-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: auto;
}
.btn-add-cart {
    background: var(--yellow);
    color: var(--black);
    border: none;
    padding: 13px 8px;
    border-radius: 12px;
    font-weight: 900;
    font-size: 0.85rem;
    cursor: pointer;
    text-align: center;
    line-height: 1.25;
    transition: background 0.2s;
}
.btn-add-cart:hover { background: var(--yellow-dark); }
.btn-add-cart.added { background: var(--green); color: #fff; }
.btn-quick-buy {
    background: var(--black-3);
    color: var(--white);
    border: none;
    padding: 13px 8px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 0.85rem;
    cursor: pointer;
    text-align: center;
    transition: background 0.2s;
}
.btn-quick-buy:hover { background: var(--black-4); }
.btn-ver-detalle {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    padding: 10px;
    margin-top: 2px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    display: flex; align-items: center; justify-content: center; gap: 6px;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.btn-ver-detalle:hover {
    color: var(--yellow);
    border-color: rgba(255,215,0,0.5);
    background: rgba(255,215,0,0.05);
}

/* ── MODAL ── */
.modal-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.82);
    z-index: 2000;
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s;
}
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal {
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%, -48%);
    width: min(920px, 96vw);
    max-height: 92vh;
    overflow-y: auto;
    background: var(--black-2);
    border: 1px solid rgba(255,215,0,0.2);
    border-radius: 20px;
    z-index: 2001;
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s, transform 0.3s;
}
.modal::-webkit-scrollbar { width: 4px; }
.modal::-webkit-scrollbar-thumb { background: var(--yellow); border-radius: 2px; }
.modal.active { opacity: 1; pointer-events: all; transform: translate(-50%, -50%); }
.modal-close {
    position: sticky;
    top: 16px; float: right;
    margin: 16px 16px 0 0;
    background: var(--black-3);
    border: none; color: var(--white);
    width: 34px; height: 34px;
    border-radius: 50%;
    cursor: pointer; font-size: 0.9rem;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s; z-index: 10;
}
.modal-close:hover { background: var(--yellow); color: var(--black); }
.modal-product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 28px; clear: both;
    align-items: start;
}
.modal-img {
    border-radius: 12px;
    overflow: hidden;
    background: var(--black-3);
    width: 100%;
    aspect-ratio: 1 / 1;
}
.modal-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.modal-icon {
    background: var(--black-3);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 4rem; color: var(--yellow);
    aspect-ratio: 1 / 1;
    width: 100%;
}
.modal-details { display: flex; flex-direction: column; gap: 12px; }
.modal-title { font-size: 1.4rem; font-weight: 800; line-height: 1.2; }
.modal-desc { color: var(--gray-light); font-size: 0.9rem; line-height: 1.6; }
.modal-price { font-family: 'Bebas Neue', sans-serif; font-size: 2.2rem; color: var(--yellow); letter-spacing: 1px; }
.modal-consultar { color: var(--gray); font-size: 0.85rem; font-style: italic; }
.modal-buttons { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (max-width: 700px) {
    .modal-product { grid-template-columns: 1fr; }
    .modal-img, .modal-icon { aspect-ratio: 4 / 3; }
    .modal-buttons { grid-template-columns: 1fr; }
    .product-buttons { grid-template-columns: 1fr; }
}

/* ── CTA PEDIDO ── */
.cta-pedido {
    padding: 28px 0;
    border-top: 2px dashed rgba(255,215,0,0.35);
    border-bottom: 2px dashed rgba(255,215,0,0.35);
}
.cta-pedido-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    background: var(--black-3);
    border-radius: 16px;
    padding: 28px 36px;
}
.cta-pedido-text h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
}
.cta-pedido-text p {
    font-size: 0.9rem;
    color: var(--gray-light);
    line-height: 1.6;
    max-width: 620px;
}
.btn-cta-pedido {
    background: var(--yellow);
    color: var(--black);
    border: none;
    padding: 14px 30px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.2s;
}
.btn-cta-pedido:hover { opacity: 0.85; }

/* ── UBICACIÓN ROW ── */
.ubicacion-row {
    padding: 40px 0;
}
.ubicacion-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}
.ubicacion-card {
    background: var(--black-3);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--black-4);
}
.ubicacion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: var(--black-4);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--yellow);
}
.ubicacion-header i {
    font-size: 1.1rem;
    color: var(--yellow);
}
.ubicacion-map {
    width: 100%;
    line-height: 0;
}
.ubicacion-map iframe {
    width: 100%;
    height: 220px;
    display: block;
    filter: grayscale(30%) invert(90%) hue-rotate(180deg);
}
.ubicacion-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 20px;
}
.ubicacion-details strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 4px;
}
.ubicacion-details p {
    font-size: 0.82rem;
    color: var(--gray-light);
    line-height: 1.5;
}
.btn-mapa {
    background: var(--yellow);
    color: var(--black);
    border: none;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
    transition: opacity 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.btn-mapa:hover { opacity: 0.85; }
.ubicacion-right {
    min-height: 320px;
}
.mail-card {
    background: var(--black-3);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--black-4);
    display: flex;
    flex-direction: column;
    height: 100%;
}
.mail-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: var(--black-4);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mail-window-controls {
    display: flex;
    gap: 7px;
}
.mail-window-controls span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}
.wc-red    { background: #ff5f57; }
.wc-yellow { background: #febc2e; }
.wc-green  { background: #28c840; }
.mail-card-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gray-light);
    letter-spacing: 0.5px;
}
.mail-card-body {
    padding: 0 20px;
    flex: 1;
}
.mail-field {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 0;
}
.mail-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gray-light);
    min-width: 52px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.mail-value {
    font-size: 0.87rem;
    color: var(--white);
}
.mail-divider {
    height: 1px;
    background: rgba(255,255,255,0.07);
}
.mail-message {
    padding: 18px 0;
    font-size: 0.88rem;
    color: var(--gray-light);
    line-height: 1.75;
}
.mail-message strong {
    color: var(--yellow);
}
.mail-card-footer {
    padding: 14px 20px;
    border-top: 1px solid rgba(255,255,255,0.07);
}
.btn-enviar-mail {
    background: #1a73e8;
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.2s;
}
.btn-enviar-mail:hover { opacity: 0.85; }

/* ── PRODUCTOS DESTACADOS ── */
.featured {
    padding: 60px 0 50px;
    border-bottom: 2px dashed rgba(255,215,0,0.35);
}
.featured-title {
    margin-bottom: 36px;
}
.featured-track {
    position: relative;
    min-height: 340px;
}
.featured-slide {
    display: none;
    gap: 48px;
    align-items: center;
    background: var(--black-3);
    border-radius: 20px;
    padding: 36px 40px;
    border: 1px solid var(--black-4);
    cursor: pointer;
    transition: border-color 0.25s;
    animation: featuredFadeIn 0.5s ease;
}
.featured-slide:hover { border-color: rgba(255,215,0,0.3); }
.featured-slide.active { display: flex; }
@keyframes featuredFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}
.featured-media {
    flex-shrink: 0;
    border-radius: 16px;
    overflow: hidden;
    background: var(--black-4);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border: 2px solid rgba(255, 215, 0, 0.5);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.25), 0 0 60px rgba(255, 215, 0, 0.1);
    animation: featuredGlow 2.5s ease-in-out infinite alternate;
}
@keyframes featuredGlow {
    from { box-shadow: 0 0 20px rgba(255,215,0,0.2), 0 0 40px rgba(255,215,0,0.08); }
    to   { box-shadow: 0 0 40px rgba(255,215,0,0.45), 0 0 80px rgba(255,215,0,0.2); }
}
.featured-media img {
    display: block;
    width: auto;
    height: auto;
    max-width: 300px;
    max-height: 360px;
    object-fit: contain;
    transition: transform 0.6s ease;
}
.featured-slide.active .featured-media img {
    animation: featuredZoom 0.6s ease forwards;
}
@keyframes featuredZoom {
    from { transform: scale(0.92); opacity: 0.6; }
    to   { transform: scale(1);    opacity: 1; }
}
.featured-media .featured-icon {
    font-size: 5rem;
    color: var(--yellow);
}
.featured-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.featured-badge {
    display: inline-block;
    background: rgba(255,215,0,0.15);
    color: var(--yellow);
    border: 1px solid rgba(255,215,0,0.3);
    border-radius: 50px;
    padding: 4px 14px;
    font-size: 0.78rem;
    font-weight: 700;
    width: fit-content;
}
.featured-name {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    line-height: 1.2;
    background: linear-gradient(90deg, #ffffff 0%, #ffffff 25%, #ffd700 50%, #ffffff 75%, #ffffff 100%);
    background-size: 250% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: nameShimmer 2.5s linear infinite;
}
@keyframes nameShimmer {
    0%   { background-position: 150% 0; }
    100% { background-position: -150% 0; }
}
.featured-specs {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.featured-spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 0.9rem;
}
.featured-spec-row span:first-child { color: var(--gray-light); font-weight: 600; }
.featured-spec-row span:last-child  { color: var(--white); font-weight: 700; }
.featured-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
    background: var(--yellow);
    color: var(--black);
    border: none;
    padding: 12px 26px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 800;
    cursor: pointer;
    width: fit-content;
    transition: opacity 0.2s;
}
.featured-cta:hover { opacity: 0.85; }
.featured-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
}
.featured-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--black-4);
    border: 2px solid rgba(255,255,255,0.2);
    cursor: pointer;
    transition: all 0.25s;
}
.featured-dot.active {
    background: var(--yellow);
    border-color: var(--yellow);
    transform: scale(1.2);
}
@media (max-width: 768px) {
    .featured-slide { flex-direction: column; padding: 24px 20px; gap: 24px; }
    .featured-media { flex: none; width: 100%; max-width: 280px; margin: 0 auto; }
}

/* ── FEATURES STRIP ── */
.features-strip {
    background: var(--black-2);
    padding: 40px 0;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.feature-card {
    background: var(--black-3);
    border-radius: 12px;
    padding: 24px 20px;
    text-align: center;
}
.feature-card h4 {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
}
.feature-card p {
    font-size: 0.82rem;
    color: var(--gray);
    line-height: 1.5;
}

/* ── POR QUÉ ELEGIRNOS ── */
.why-us {
    background: var(--black);
    padding: 60px 0 56px;
    border-top: 3px solid var(--yellow);
    border-bottom: 2px dashed rgba(255, 215, 0, 0.45);
}
.why-us .section-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    background: linear-gradient(90deg, var(--yellow), #fff8c0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    margin-bottom: 10px;
}
.why-us-text {
    color: var(--gray-light);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 800px;
    margin-top: 4px;
}

/* ── NOSOTROS NUEVO ── */
.about {
    background: var(--black-2);
    padding: 80px 0;
}
.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}
.about-photo {
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--black-3);
}
.about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.about-photo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 0.85rem;
}
.about-photo-placeholder::after {
    content: 'Foto próximamente';
}
.about-text {
    position: relative;
    padding: 36px 40px;
    border-radius: 20px;
    background: var(--black-2);
}
.about-text::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 4px;
    background: linear-gradient(90deg, #fff8c0, var(--yellow));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}
.about-text p {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.45;
    color: var(--white);
}
.about-new {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr;
    gap: 50px;
}
.about-col-title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}
.about-col p {
    color: var(--gray-light);
    font-size: 0.88rem;
    line-height: 1.8;
    font-weight: 600;
}
.contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.contact-list li {
    color: var(--gray-light);
    font-size: 0.88rem;
}
.cl-green { color: var(--green); font-weight: 700; }
.contact-list a { color: inherit; text-decoration: none; transition: color 0.2s; }
.contact-list a:hover { color: var(--yellow); }

/* ── CÓMO COMPRAR ── */
.how-to-buy .section-title {
    background: linear-gradient(90deg, #fff8c0, var(--yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}
.how-to-buy {
    background: var(--black);
    padding: 70px 0;
    border-top: 2px dashed rgba(255, 215, 0, 0.45);
}
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 30px;
}
.step-card {
    background: var(--black-3);
    border-radius: 12px;
    padding: 24px 20px;
}
.step-num {
    width: 36px; height: 36px;
    background: var(--yellow);
    color: var(--black);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 900;
    font-size: 1rem;
    margin-bottom: 14px;
}
.step-card h4 {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
}
.step-card p {
    font-size: 0.82rem;
    color: var(--gray);
    line-height: 1.6;
}

/* ── BANNER ── */
.full-banner {
    width: 100%;
    line-height: 0;
}
.full-banner img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* ── NOSOTROS ── */
.about { background: var(--black-2); }

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-text p {
    color: var(--gray-light);
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 16px;
}
.about-stats {
    display: flex;
    gap: 36px;
    margin-top: 32px;
}
.stat-num {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.4rem;
    color: var(--yellow);
    letter-spacing: 2px;
}
.stat-label {
    font-size: 0.75rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-icon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.about-icon-card {
    background: var(--black-3);
    border: 1px solid rgba(255,215,0,0.1);
    border-radius: 12px;
    padding: 24px;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem;
    color: var(--yellow);
    aspect-ratio: 1;
    transition: all 0.3s;
}
.about-icon-card:hover { border-color: var(--yellow); background: rgba(255,215,0,0.05); }

/* ── CONTACTO ── */
.contact { background: var(--black); }

.contact-subtitle {
    text-align: center;
    color: var(--gray);
    margin: 10px 0 50px;
    font-size: 1rem;
}
.contact-cards {
    display: flex;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
}
.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 40px 48px;
    border-radius: 16px;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    min-width: 190px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.contact-card i { font-size: 2.4rem; }
.contact-card small { opacity: 0.75; font-weight: 400; font-size: 0.85rem; }
.contact-card:hover { transform: translateY(-8px); box-shadow: 0 18px 45px rgba(0,0,0,0.5); }
.cc-wa { background: #25D366; }
.cc-ig { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366); }
.cc-fb { background: #1877F2; }

/* ── FOOTER ── */
.footer {
    background: var(--black-2);
    border-top: 2px solid rgba(255,215,0,0.1);
    padding: 60px 0 28px;
}
.footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1.4fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    align-items: start;
}
.footer-logo { height: 100px; width: auto; margin-bottom: 12px; display: block; }
.footer-social-icons {
    display: flex;
    gap: 10px;
    margin-top: 4px;
}
.footer-social-icons a {
    width: 36px; height: 36px;
    background: var(--black-4);
    border: 1px solid rgba(255,215,0,0.1);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: var(--gray);
    text-decoration: none;
    transition: all 0.25s;
}
.footer-social-icons a:hover { background: var(--yellow); color: var(--black); border-color: var(--yellow); }

.footer-contact, .footer-nav, .footer-cats {
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.footer-contact h4, .footer-nav h4, .footer-cats h4 {
    color: var(--yellow);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}
.footer-contact .contact-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-contact .contact-list li,
.footer-contact .contact-list li a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.25s;
}
.footer-contact .contact-list li a:hover { color: var(--yellow); }
.footer-nav a, .footer-cats a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.25s;
}
.footer-nav a:hover, .footer-cats a:hover { color: var(--yellow); }

.footer-bottom {
    border-top: 1px solid var(--black-4);
    padding-top: 20px;
    text-align: center;
    color: var(--gray);
    font-size: 0.82rem;
}

/* ── WHATSAPP FLOAT ── */
.wa-float {
    position: fixed;
    bottom: 28px; right: 28px;
    width: 58px; height: 58px;
    background: var(--green);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.7rem;
    color: #fff;
    text-decoration: none;
    z-index: 997;
    box-shadow: 0 6px 28px rgba(37,211,102,0.45);
    transition: transform 0.25s;
    animation: waPulse 2.5s infinite;
}
.wa-float:hover { transform: scale(1.12); }

@keyframes waPulse {
    0%,100% { box-shadow: 0 6px 28px rgba(37,211,102,0.45); }
    50%      { box-shadow: 0 6px 45px rgba(37,211,102,0.75); }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .about-content  { grid-template-columns: 1fr; gap: 40px; }
    .about-split    { grid-template-columns: 1fr; gap: 30px; }
    .footer-top     { grid-template-columns: 1fr 1fr; gap: 28px; }
    .features-grid  { grid-template-columns: repeat(2, 1fr); }
    .steps-grid     { grid-template-columns: repeat(2, 1fr); }
    .about-new      { grid-template-columns: 1fr; gap: 30px; }
    .ubicacion-grid { grid-template-columns: 1fr; }
    .cta-pedido-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
    .btn-cta-pedido { width: 100%; text-align: center; }
}

@media (max-width: 768px) {
    /* Header */
    .header .container {
        grid-template-columns: auto 1fr;
    }
    .header .container .nav {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0; left: 0; right: 0;
        background: var(--black);
        padding: 20px 24px;
        border-bottom: 2px solid var(--yellow);
        z-index: 999;
        gap: 18px;
        justify-self: unset;
    }
    .header .container .nav.open { display: flex; }
    .menu-toggle { display: block; }
    .social-icons { display: none; }
    .header .container .header-right { justify-self: end; }

    /* Top bar */
    .top-bar { font-size: 0.7rem; padding: 8px 12px; letter-spacing: 0; }

    /* Hero */
    .hero { padding-top: 20px; }
    .hero-inner { grid-template-columns: 1fr; gap: 30px; min-height: unset; }
    .iphone { width: 180px; height: 365px; border-radius: 36px; }
    .iphone-notch { width: 65px; height: 18px; }
    .iphone-screen { border-radius: 32px; }
    .hero-logo { width: min(280px, 75%); }
    .hero-buttons { flex-direction: column; align-items: center; width: 100%; }
    .btn-primary, .btn-wa-hero { width: 100%; justify-content: center; }
    .hero-shapes { display: none; }
    .hero-sub { font-size: 0.82rem; padding: 0 10px; }

    /* Sections */
    section { padding: 50px 0; }
    .features-strip { padding: 30px 0; }

    /* Cart */
    .cart-sidebar { width: 100vw; right: -100vw; }

    /* About */
    .about-stats { gap: 20px; }
    .footer-top { grid-template-columns: 1fr; }

    /* Contact */
    .contact-cards { gap: 14px; }
    .contact-card  { padding: 26px 30px; min-width: 140px; }
}

@media (max-width: 480px) {
    /* Header */
    .header-logo { height: 54px; }

    /* Top bar */
    .top-bar { font-size: 0.65rem; }

    /* Hero */
    .hero-logo { width: min(260px, 75%); }

    /* Categories */
    .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .category-card { padding: 18px 10px; }
    .category-card h3 { font-size: 0.8rem; }

    /* Filter bar - 2 filas scroll horizontal */
    .filter-bar {
        display: grid;
        grid-template-rows: repeat(2, auto);
        grid-auto-flow: column;
        grid-auto-columns: max-content;
        gap: 8px;
        overflow-x: auto;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        flex-wrap: unset;
    }
    .filter-bar::-webkit-scrollbar { display: none; }
    .filter-btn { flex-shrink: 0; padding: 6px 13px; font-size: 0.72rem; max-width: 160px; }

    /* Products */
    .products-grid { grid-template-columns: 1fr; }

    /* Features & steps */
    .features-grid { grid-template-columns: 1fr; }
    .steps-grid    { grid-template-columns: 1fr; }

    /* Footer */
    .footer-top { grid-template-columns: 1fr; }
    .footer { padding: 40px 0 20px; }
}
