/* ========================================
   THE FOUR - CSS PRINCIPAL
   Diseño Minimalista Premium
   ======================================== */

/* ===== VARIABLES ===== */
:root {
    /* Colores principales */
    --black: #0a0a0a;
    --black-light: #121212;
    --gold: #c9a227;
    --gold-light: #d4b84a;
    --gold-dark: #a88a1f;
    --white: #ffffff;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-400: #a3a3a3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;
    
    /* Estados */
    --success: #22c55e;
    --danger: #ef4444;
    --warning: #f59e0b;
    --info: #3b82f6;
    
    /* Colores equipos */
    --colombia: #fcd116;
    --barcelona: #a50044;
    --millonarios: #1e3a8a;
    --nacional: #00843d;
    --santafe: #c41e3a;
    --realmadrid: #00529f;
    
    /* Tipografía */
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Espaciado */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    
    /* Bordes */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;
    
    /* Sombras */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px rgba(0,0,0,0.15);
    --shadow-gold: 0 10px 40px rgba(201, 162, 39, 0.3);
    
    /* Transiciones */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Z-index */
    --z-dropdown: 100;
    --z-sticky: 500;
    --z-fixed: 1000;
    --z-modal-backdrop: 1500;
    --z-modal: 2000;
    --z-popover: 2500;
    --z-tooltip: 3000;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
}

input, select, textarea {
    font-family: inherit;
    outline: none;
}

ul, ol {
    list-style: none;
}

/* ===== UTILIDADES ===== */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

/* ===== LOADER ===== */
.loader {
    position: fixed;
    inset: 0;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.loader__logo {
    width: 120px;
    height: auto;
    margin-bottom: var(--space-xl);
    animation: pulse 2s ease-in-out infinite;
}

.loader__bar {
    width: 200px;
    height: 2px;
    background: var(--gray-800);
    overflow: hidden;
    border-radius: var(--radius-full);
    margin: 0 auto;
}

.loader__bar::after {
    content: '';
    display: block;
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    animation: loading 1s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(0.98); }
}

@keyframes loading {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(350%); }
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: var(--z-fixed);
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition-normal);
}

.header--scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: var(--shadow-lg);
}

/* Urgency banner fixed below header */
.urgency-banner {
    position: fixed;
    top: 82px;
    left: 0;
    width: 100%;
    z-index: calc(var(--z-fixed) - 1);
}

.header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) var(--space-lg);
    max-width: 1400px;
    margin: 0 auto;
}

.header__logo {
    display: flex;
    align-items: center;
}

.header__logo img {
    height: 50px;
    width: auto;
}

.header__logo-text {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--gold);
    letter-spacing: 0.2rem;
}

/* Navegación */
.nav {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav__link {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15rem;
    text-transform: uppercase;
    color: var(--gray-300);
    position: relative;
    padding: var(--space-sm) 0;
    transition: var(--transition-normal);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition-normal);
}

.nav__link:hover {
    color: var(--gold);
}

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

/* Acciones header */
.header__actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.cart-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: var(--space-sm) var(--space-lg);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    transition: var(--transition-normal);
}

.cart-btn:hover {
    background: var(--gold);
    color: var(--black);
}

.cart-btn__count {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 20px;
    height: 20px;
    background: var(--danger);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Menú móvil */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    padding: var(--space-sm);
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--black) 0%, var(--gray-900) 100%);
    padding-top: 120px; /* Para el header + urgency banner */
}

.hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero__video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0.55) 0%,
        rgba(0,0,0,0.35) 50%,
        rgba(0,0,0,0.7) 100%
    );
    z-index: 1;
}

.hero__content {
    text-align: center;
    z-index: 2;
    padding: var(--space-xl);
    max-width: 900px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid rgba(201, 162, 39, 0.3);
    color: var(--gold);
    padding: var(--space-sm) var(--space-lg);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    margin-bottom: var(--space-xl);
    animation: fadeInUp 0.8s ease both;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 10vw, 7rem);
    letter-spacing: 0.3rem;
    line-height: 1;
    margin-bottom: var(--space-lg);
    animation: fadeInUp 0.8s ease 0.1s both;
}

.hero__title span {
    color: var(--gold);
}

.hero__subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--gray-400);
    max-width: 600px;
    margin: 0 auto var(--space-2xl);
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero__buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.hero__scroll {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    color: var(--gray-500);
    font-size: 0.7rem;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    z-index: 2;
    align-items: center;
    gap: var(--space-sm);
    animation: bounce 2s infinite;
}

.hero__scroll-icon {
    width: 24px;
    height: 40px;
    border: 1px solid var(--gray-600);
    border-radius: 12px;
    position: relative;
}

.hero__scroll-icon::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    animation: scrollDown 1.5s infinite;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes scrollDown {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 20px; }
}

/* ===== BOTONES ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15rem;
    text-transform: uppercase;
    transition: var(--transition-normal);
    border: none;
    cursor: pointer;
}

.btn--primary {
    background: var(--gold);
    color: var(--black);
}

.btn--primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn--outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
}

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

.btn--lg {
    padding: var(--space-lg) var(--space-2xl);
    font-size: 0.9rem;
}

.btn--sm {
    padding: var(--space-sm) var(--space-md);
    font-size: 0.75rem;
}

.btn--block {
    width: 100%;
}

/* ===== FEATURES BAR ===== */
.features {
    background: linear-gradient(180deg, var(--gray-900) 0%, rgba(10,10,10,0.95) 100%);
    padding: var(--space-xl) 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.feature {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-sm);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.feature:hover {
    background: rgba(201, 162, 39, 0.05);
}

.feature:hover .feature__icon {
    transform: scale(1.1);
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(201, 162, 39, 0.3);
}

.feature:hover .feature__icon i {
    color: var(--gold);
}

.feature__icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.15) 0%, rgba(201, 162, 39, 0.05) 100%);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature__icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(201, 162, 39, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature:hover .feature__icon::before {
    opacity: 1;
}

.feature__icon i {
    font-size: 1.4rem;
    color: var(--gold);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.feature__title {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2px;
    color: var(--white);
}

.feature__text {
    font-size: 0.75rem;
    color: var(--gray-400);
}

/* ===== SECCIONES ===== */
.section {
    padding: var(--space-4xl) var(--space-lg);
}

.section--dark {
    background: var(--gray-900);
}

.section__header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section__tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3rem;
    text-transform: uppercase;
    margin-bottom: var(--space-sm);
}

.section__tag i {
    font-size: 0.9rem;
}

.section__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    letter-spacing: 0.2rem;
    margin-bottom: var(--space-md);
}

.section__subtitle {
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== EQUIPOS CAROUSEL ===== */
.teams {
    overflow: hidden;
    padding: var(--space-xl) 0;
}

.teams__track {
    display: flex;
    gap: var(--space-lg);
    animation: scrollTeams 20s linear infinite;
}

.teams__track:hover {
    animation-play-state: paused;
}

@keyframes scrollTeams {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.team-card {
    min-width: 260px;
    background: var(--gray-800);
    border: 1px solid rgba(255,255,255,0.05);
    padding: var(--space-xl);
    text-align: center;
    cursor: pointer;
    transition: var(--transition-normal);
}

.team-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.team-card__badge {
    width: 90px;
    height: 90px;
    margin: 0 auto var(--space-lg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    overflow: visible;
    background: transparent;
}

.team-card__badge img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
    transition: transform var(--transition-normal);
}

.team-card:hover .team-card__badge img {
    transform: scale(1.1);
}

.team-card__name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    letter-spacing: 0.15rem;
    margin-bottom: var(--space-xs);
}

.team-card__text {
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-bottom: var(--space-md);
}

.team-card__colors {
    display: flex;
    gap: var(--space-xs);
    justify-content: center;
}

/* Carrusel más rápido en móviles */
@media (max-width: 768px) {
    .teams__track {
        animation: scrollTeams 12s linear infinite;
    }
    
    .team-card {
        min-width: 200px;
        padding: var(--space-md);
    }
    
    .team-card__badge {
        width: 70px;
        height: 70px;
    }
}

.team-card__color {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.1);
}

/* ===== FILTROS PRODUCTOS ===== */
.filters {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-2xl);
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--gray-700);
    color: var(--gray-400);
    padding: var(--space-sm) var(--space-lg);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    transition: var(--transition-normal);
}

.filter-btn:hover,
.filter-btn--active {
    border-color: var(--gold);
    color: var(--gold);
}

/* ===== PRODUCTOS GRID ===== */
.products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-xl);
    max-width: 1400px;
    margin: 0 auto;
}

.product-card {
    background: var(--gray-900);
    border: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
    transition: var(--transition-normal);
    position: relative;
}

.product-card:hover {
    border-color: rgba(201, 162, 39, 0.3);
    transform: translateY(-5px);
}

.product-card__badge {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    padding: var(--space-xs) var(--space-sm);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    z-index: 1;
}

.product-card__badge--hot {
    background: var(--danger);
    color: var(--white);
}

.product-card__badge--new {
    background: var(--gold);
    color: var(--black);
}

.product-card__image {
    position: relative;
    aspect-ratio: 3/4;
    background: var(--gray-800);
    overflow: hidden;
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.product-card:hover .product-card__image img {
    transform: scale(1.05);
}

.product-card__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    padding: var(--space-2xl) var(--space-md) var(--space-md);
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-normal);
}

.product-card:hover .product-card__overlay {
    opacity: 1;
    transform: translateY(0);
}

.product-card__quick-add {
    width: 100%;
    background: var(--gold);
    color: var(--black);
    padding: var(--space-sm);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    transition: var(--transition-normal);
}

.product-card__quick-add:hover {
    background: var(--gold-light);
}

.product-card__info {
    padding: var(--space-lg);
}

.product-card__team {
    font-size: 0.7rem;
    color: var(--gold);
    letter-spacing: 0.15rem;
    text-transform: uppercase;
    margin-bottom: var(--space-xs);
}

.product-card__name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 0.1rem;
    margin-bottom: var(--space-sm);
}

.product-card__colors {
    display: flex;
    gap: var(--space-xs);
    margin-bottom: var(--space-md);
}

.product-card__color {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-fast);
}

.product-card__color:hover,
.product-card__color--active {
    border-color: var(--white);
    transform: scale(1.2);
}

.product-card__price {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.product-card__price-current {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold);
}

.product-card__price-old {
    font-size: 0.85rem;
    color: var(--gray-500);
    text-decoration: line-through;
}

/* ===== CALIDADES ===== */
.qualities {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    max-width: 1000px;
    margin: 0 auto;
}

.quality-card {
    background: var(--gray-800);
    border: 1px solid rgba(255,255,255,0.05);
    padding: var(--space-2xl);
    position: relative;
    overflow: hidden;
    transition: var(--transition-normal);
}

.quality-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gold);
}

.quality-card:hover {
    border-color: rgba(201, 162, 39, 0.3);
}

.quality-card__icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-lg);
    color: var(--gold);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.15) 0%, rgba(201, 162, 39, 0.05) 100%);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.3s ease;
}

.quality-card:hover .quality-card__icon {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(201, 162, 39, 0.3);
}

.quality-card__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 0.15rem;
    margin-bottom: var(--space-sm);
}

.quality-card__price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: var(--space-lg);
}

.quality-card__features {
    list-style: none;
}

.quality-card__feature {
    padding: var(--space-sm) 0;
    color: var(--gray-400);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9rem;
}

.quality-card__feature::before {
    content: '✓';
    color: var(--gold);
    font-weight: bold;
}

/* ===== PERSONALIZACIÓN ===== */
.custom {
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--black) 100%);
}

.custom__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.custom__text h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: 0.15rem;
    margin-bottom: var(--space-lg);
}

.custom__text h2 span {
    color: var(--gold);
}

.custom__text p {
    color: var(--gray-400);
    margin-bottom: var(--space-xl);
    line-height: 1.8;
}

.custom__list {
    margin-bottom: var(--space-xl);
}

.custom__item {
    padding: var(--space-sm) 0;
    display: flex;
    align-items: center;
    gap: var(--space-md);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.custom__item-icon {
    width: 28px;
    height: 28px;
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid rgba(201, 162, 39, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.custom__image {
    position: relative;
}

.custom__image img {
    width: 100%;
    border: 1px solid rgba(255,255,255,0.05);
}

.custom__badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gold);
    color: var(--black);
    padding: var(--space-lg);
    text-align: center;
}

.custom__badge strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.8rem;
}

.custom__badge span {
    font-size: 0.7rem;
    letter-spacing: 0.1rem;
}

/* ===== CARRITO SIDEBAR ===== */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: var(--z-modal-backdrop);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.cart-overlay--active {
    opacity: 1;
    visibility: visible;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 420px;
    max-width: 100%;
    height: 100%;
    background: var(--gray-900);
    z-index: var(--z-modal);
    display: flex;
    flex-direction: column;
    transition: right var(--transition-normal);
    overflow: hidden;
}

.cart-sidebar--active {
    right: 0;
}

.cart-sidebar__header {
    padding: var(--space-lg);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}

.cart-sidebar__title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    letter-spacing: 0.15rem;
}

.cart-sidebar__close {
    background: none;
    border: none;
    color: var(--gray-400);
    font-size: 1.2rem;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all var(--transition-fast);
    cursor: pointer;
}

.cart-sidebar__close:hover {
    color: var(--white);
    background: rgba(201, 162, 39, 0.2);
}

.cart-sidebar__items {
    flex: 1;
    overflow-y: auto;
    padding: var(--space-lg);
    min-height: 0; /* Important for flex scroll */
}

/* Scrollbar personalizado */
.cart-sidebar__items::-webkit-scrollbar {
    width: 6px;
}

.cart-sidebar__items::-webkit-scrollbar-track {
    background: var(--gray-800);
}

.cart-sidebar__items::-webkit-scrollbar-thumb {
    background: var(--gray-600);
    border-radius: 3px;
}

.cart-sidebar__items::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

/* Order bump con z-index para superponerse */
.order-bump {
    margin: var(--space-md) var(--space-lg);
    padding: var(--space-md);
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.15) 0%, rgba(20, 20, 20, 0.98) 100%);
    border: 2px solid var(--gold);
    border-radius: var(--radius-md);
    position: relative;
    flex-shrink: 0;
    z-index: 100;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 20px rgba(201, 162, 39, 0.2);
}

.order-bump--special {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(20, 20, 20, 0.98) 100%);
    border-color: var(--success);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 20px rgba(34, 197, 94, 0.2);
}

.order-bump--special .order-bump__tag {
    background: var(--success);
}

.order-bump--special .order-bump__discount {
    background: var(--success);
}

/* Selector de calidad en order bump */
.order-bump__quality {
    display: flex;
    gap: var(--space-xs);
    margin-top: var(--space-sm);
}

.order-bump__quality-btn {
    flex: 1;
    padding: var(--space-xs) var(--space-sm);
    background: var(--gray-800);
    border: 1px solid var(--gray-700);
    color: var(--white);
    font-size: 0.7rem;
    cursor: pointer;
    transition: var(--transition-fast);
    border-radius: 4px;
}

.order-bump__quality-btn:hover,
.order-bump__quality-btn--active {
    border-color: var(--gold);
    color: var(--gold);
}

.order-bump--special .order-bump__quality-btn:hover,
.order-bump--special .order-bump__quality-btn--active {
    border-color: var(--success);
    color: var(--success);
}

/* Botón reabrir ofertas */
.order-bump-reopen {
    padding: var(--space-sm) var(--space-lg);
}

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

.btn--outline:hover {
    background: rgba(201, 162, 39, 0.1);
}

.btn--sm {
    padding: var(--space-sm) var(--space-md);
    font-size: 0.8rem;
}

/* Order bump opciones de talla y color */
.order-bump__options {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin: var(--space-md) 0;
    padding: var(--space-sm);
    background: rgba(0,0,0,0.2);
    border-radius: var(--radius-sm);
}

.order-bump__option-group {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.order-bump__option-label {
    font-size: 0.75rem;
    color: var(--gray-400);
    min-width: 45px;
}

.order-bump__colors {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}

.order-bump__color-btn {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-fast);
}

.order-bump__color-btn:hover,
.order-bump__color-btn--active {
    border-color: var(--white);
    transform: scale(1.15);
}

.order-bump__sizes {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}

.order-bump__size-btn {
    padding: 2px 8px;
    background: var(--gray-800);
    border: 1px solid var(--gray-700);
    color: var(--gray-400);
    font-size: 0.7rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.order-bump__size-btn:hover,
.order-bump__size-btn--active {
    border-color: var(--gold);
    color: var(--gold);
}

.order-bump--special .order-bump__size-btn:hover,
.order-bump--special .order-bump__size-btn--active {
    border-color: var(--success);
    color: var(--success);
}

.order-bump__size-btn--special {
    font-size: 0.65rem;
    position: relative;
}

.order-bump__size-btn--special::before {
    content: '⏱';
    position: absolute;
    top: -8px;
    right: -4px;
    font-size: 0.5rem;
    background: var(--warning);
    color: var(--black);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.order-bump__hint {
    text-align: center;
    font-size: 0.75rem;
    color: var(--gray-500);
    margin: var(--space-sm) 0;
}

/* Order bump en checkout - Diseño compacto y limpio */
.order-bump--checkout {
    margin: var(--space-md) 0;
    border-radius: var(--radius-md);
    padding: var(--space-sm) var(--space-md);
}

.order-bump--checkout .order-bump__close {
    top: var(--space-xs);
    right: var(--space-xs);
    width: 24px;
    height: 24px;
    font-size: 0.8rem;
}

.order-bump--checkout .order-bump__header {
    margin-bottom: var(--space-xs);
    gap: var(--space-xs);
}

.order-bump--checkout .order-bump__tag {
    font-size: 0.65rem;
    padding: 2px 6px;
}

.order-bump--checkout .order-bump__discount {
    font-size: 0.65rem;
    padding: 2px 6px;
}

.order-bump--checkout .order-bump__title {
    font-size: 0.85rem;
    margin-bottom: 2px;
}

.order-bump--checkout .order-bump__text {
    font-size: 0.7rem;
    margin-bottom: var(--space-sm);
}

/* Grid de productos en checkout - 4 columnas */
.order-bump__products--small {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    margin-bottom: var(--space-sm);
}

.order-bump__products--small .order-bump__product {
    padding: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--gray-800);
    border-radius: var(--radius-sm);
}

.order-bump__products--small .order-bump__product img {
    width: 100%;
    height: 55px;
    object-fit: contain;
    border-radius: 4px;
    background: white;
}

.order-bump__products--small .order-bump__product-name {
    font-size: 0.55rem;
    text-align: center;
    margin-top: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    color: var(--gray-400);
}

.order-bump__products--small .order-bump__product--selected {
    border-color: var(--success);
}

/* Opciones compactas */
.order-bump--checkout .order-bump__options {
    margin: var(--space-xs) 0;
    padding: var(--space-xs);
    background: rgba(0,0,0,0.3);
    border-radius: var(--radius-sm);
}

.order-bump--checkout .order-bump__option-group {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
}

.order-bump--checkout .order-bump__option-group:last-child {
    margin-bottom: 0;
}

.order-bump--checkout .order-bump__option-label {
    font-size: 0.65rem;
    min-width: 35px;
}

.order-bump--checkout .order-bump__colors {
    display: flex;
    gap: 4px;
}

.order-bump--checkout .order-bump__color-btn {
    width: 20px;
    height: 20px;
}

.order-bump--checkout .order-bump__sizes {
    display: flex;
    flex-wrap: wrap;
    gap: 3px;
}

.order-bump--checkout .order-bump__size-btn {
    padding: 2px 5px;
    font-size: 0.55rem;
    border-radius: 3px;
}

/* Botones de calidad compactos */
.order-bump--checkout .order-bump__quality {
    display: flex;
    gap: 6px;
    margin-bottom: var(--space-xs);
}

.order-bump--checkout .order-bump__quality-btn {
    flex: 1;
    padding: 6px 8px;
    font-size: 0.65rem;
}

/* Footer del order bump */
.order-bump--checkout .order-bump__add {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-xs);
    border-top: 1px solid rgba(255,255,255,0.1);
}

.order-bump--checkout .order-bump__checkbox {
    display: flex;
    align-items: center;
    gap: 6px;
}

.order-bump--checkout .order-bump__checkbox input {
    width: 16px;
    height: 16px;
}

.order-bump--checkout .order-bump__checkbox label {
    font-size: 0.7rem;
}

.order-bump--checkout .order-bump__prices {
    text-align: right;
}

.order-bump--checkout .order-bump__price-old {
    font-size: 0.65rem;
    text-decoration: line-through;
    color: var(--gray-500);
}

.order-bump--checkout .order-bump__price-new {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--success);
}

.order-bump--checkout .order-bump__hint {
    font-size: 0.7rem;
    text-align: center;
    padding: var(--space-xs) 0;
}

/* Responsive */
@media (max-width: 500px) {
    .order-bump__products--small {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .order-bump--checkout .order-bump__add {
        flex-direction: column;
        gap: var(--space-xs);
    }
    
    .order-bump--checkout .order-bump__prices {
        text-align: center;
    }
}

.cart-empty {
    text-align: center;
    padding: var(--space-3xl);
    color: var(--gray-500);
}

.cart-empty__icon {
    font-size: 4rem;
    margin-bottom: var(--space-md);
    opacity: 0.5;
    color: var(--gold);
}

.cart-empty__icon i {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.cart-item {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--gray-800);
    margin-bottom: var(--space-md);
    position: relative;
}

.cart-item__image {
    width: 80px;
    height: 80px;
    background: var(--gray-700);
    overflow: hidden;
    flex-shrink: 0;
}

.cart-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item__details {
    flex: 1;
}

.cart-item__name {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: var(--space-xs);
}

.cart-item__meta {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-bottom: var(--space-xs);
}

.cart-item__special {
    font-size: 0.7rem;
    color: var(--warning);
    background: rgba(245, 158, 11, 0.1);
    padding: 2px 8px;
    border-radius: 3px;
    display: inline-block;
    margin-bottom: var(--space-xs);
}

.cart-item__price {
    color: var(--gold);
    font-weight: 600;
}

.cart-item__remove {
    position: absolute;
    top: var(--space-sm);
    right: var(--space-sm);
    background: none;
    border: none;
    color: var(--gray-500);
    font-size: 1rem;
    transition: color var(--transition-fast);
}

.cart-item__remove:hover {
    color: var(--danger);
}

.cart-item__qty {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-top: var(--space-sm);
}

.qty-btn {
    width: 24px;
    height: 24px;
    background: var(--gray-700);
    border: none;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.qty-btn:hover {
    background: var(--gold);
    color: var(--black);
}

.qty-value {
    width: 24px;
    text-align: center;
    font-weight: 600;
    font-size: 0.85rem;
}

/* ===== ORDER BUMP ===== */
.order-bump {
    margin: 0 var(--space-lg) var(--space-lg);
    padding: var(--space-md);
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.1) 0%, rgba(201, 162, 39, 0.05) 100%);
    border: 1px dashed var(--gold);
}

.order-bump__header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.order-bump__tag {
    background: var(--gold);
    color: var(--black);
    padding: 3px var(--space-sm);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05rem;
    border-radius: 4px;
}

.order-bump__discount {
    background: var(--success);
    color: var(--white);
    padding: 3px var(--space-sm);
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 4px;
}

.order-bump__close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 26px;
    height: 26px;
    background: var(--gray-800);
    border: 1px solid var(--gray-600);
    border-radius: 50%;
    color: var(--gray-400);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.order-bump__close:hover {
    background: var(--gray-700);
    color: var(--white);
}

.order-bump__title {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.order-bump__text {
    font-size: 0.8rem;
    color: var(--gray-400);
    margin-bottom: var(--space-md);
}

.order-bump__products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.order-bump__product {
    background: var(--gray-800);
    padding: var(--space-sm);
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition-fast);
    border-radius: var(--radius-sm);
}

.order-bump__product:hover,
.order-bump__product--selected {
    border-color: var(--gold);
}

.order-bump__product img {
    width: 100%;
    height: 70px;
    object-fit: contain;
    background: var(--gray-800);
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-xs);
}

.order-bump__product-name {
    font-size: 0.7rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
}

.order-bump__add {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-sm);
}

.order-bump__checkbox {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.order-bump__checkbox input {
    width: 18px;
    height: 18px;
    accent-color: var(--gold);
}

.order-bump__checkbox label {
    font-size: 0.8rem;
    cursor: pointer;
}

.order-bump__prices {
    text-align: right;
}

.order-bump__price-old {
    font-size: 0.75rem;
    color: var(--gray-500);
    text-decoration: line-through;
}

.order-bump__price-new {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gold);
}

/* Cart Footer */
.cart-sidebar__footer {
    padding: var(--space-lg);
    border-top: 1px solid rgba(255,255,255,0.05);
    background: var(--gray-800);
    flex-shrink: 0;
    margin-top: auto;
}

.cart-subtotal {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--space-sm);
    font-size: 0.9rem;
    color: var(--gray-400);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: 700;
    padding-top: var(--space-md);
    margin-bottom: var(--space-lg);
    border-top: 1px solid rgba(255,255,255,0.1);
}

.cart-total span:last-child {
    color: var(--gold);
}

.cart-security {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-md);
    font-size: 0.75rem;
    color: var(--gray-500);
}

/* ===== MODAL CHECKOUT ===== */
.checkout-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: var(--z-modal);
    display: none;
    overflow-y: auto;
    padding: 0;
}

.checkout-modal--active {
    display: block;
}

.checkout {
    width: 100%;
    max-width: 900px;
    background: var(--gray-900);
    border: 1px solid rgba(255,255,255,0.05);
    margin: 0 auto;
    min-height: 100vh;
}

@media (min-width: 768px) {
    .checkout-modal {
        display: none;
        align-items: flex-start;
        justify-content: center;
        padding: var(--space-lg);
    }
    
    .checkout-modal--active {
        display: flex;
    }
    
    .checkout {
        min-height: auto;
        max-height: none;
        margin: var(--space-lg) auto;
        border-radius: var(--radius-md);
    }
}

.checkout__header {
    padding: var(--space-md) var(--space-lg);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    background: var(--gray-900);
    z-index: 10;
}

.checkout__title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 0.1rem;
}

.checkout__close {
    background: none;
    border: none;
    color: var(--gray-400);
    font-size: 1.5rem;
    cursor: pointer;
    padding: var(--space-xs);
}

.checkout__body {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    padding: var(--space-md);
    max-width: 500px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .checkout__body {
        display: flex;
        flex-direction: column;
        gap: var(--space-lg);
        padding: var(--space-xl);
        max-width: 500px;
        margin: 0 auto;
    }
}

.checkout__form {
    order: 1;
}

.checkout-summary {
    order: 2;
    background: rgba(0,0,0,0.3);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    position: relative;
}

/* Nuevo estilo para el resumen inline (dentro del form) */
.checkout-summary--inline {
    margin-top: var(--space-lg);
    background: rgba(0,0,0,0.4);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    border: 1px solid rgba(201, 162, 39, 0.2);
}

@media (min-width: 768px) {
    .checkout__form {
        order: 1;
    }
    
    .checkout-summary {
        order: 2;
    }
    
    .checkout-summary--inline {
        margin-top: var(--space-xl);
    }
}

.checkout__section-title {
    font-family: var(--font-display);
    font-size: 0.95rem;
    letter-spacing: 0.08rem;
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.checkout__section-number {
    width: 22px;
    height: 22px;
    background: var(--gold);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-family: var(--font-body);
    font-weight: 700;
    border-radius: 4px;
    flex-shrink: 0;
}

/* Form */
.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    margin-bottom: var(--space-xs);
    color: var(--gray-300);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: var(--space-sm) var(--space-md);
    background: var(--gray-800);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--white);
    font-size: 0.85rem;
    border-radius: var(--radius-sm);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
}

.form-group input::placeholder {
    color: var(--gray-500);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

@media (max-width: 500px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }
}

/* Radio buttons */
.form-radio-group {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.form-radio {
    flex: 1;
    min-width: 140px;
}

.form-radio input {
    display: none;
}

.form-radio label {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: var(--gray-800);
    border: 1px solid var(--gray-700);
    cursor: pointer;
    transition: var(--transition-fast);
}

.form-radio input:checked + label {
    border-color: var(--gold);
    background: rgba(201, 162, 39, 0.1);
}

.form-radio__icon {
    font-size: 1.5rem;
    width: 45px;
    height: 45px;
    background: rgba(201, 162, 39, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: all 0.3s ease;
}

.form-radio input:checked + label .form-radio__icon {
    background: var(--gold);
    color: var(--black);
}

.form-radio__text {
    font-size: 0.85rem;
    font-weight: 600;
}

.form-radio__subtext {
    display: block;
    font-size: 0.7rem;
    color: var(--gray-500);
    font-weight: 400;
}

/* Checkout Summary */
.checkout-summary {
    background: var(--gray-800);
    padding: var(--space-lg);
}

.checkout-summary__title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 0.1rem;
    padding-bottom: var(--space-md);
    margin-bottom: var(--space-md);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.checkout-summary__items {
    margin-bottom: var(--space-md);
    max-height: 180px;
    overflow-y: auto;
}

.checkout-summary__item {
    display: flex;
    align-items: center;
    padding: var(--space-xs) 0;
    font-size: 0.8rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    gap: var(--space-sm);
}

.checkout-summary__item-info {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    flex: 1;
    min-width: 0;
}

.checkout-summary__item-info span {
    font-size: 0.75rem;
    line-height: 1.3;
}

.checkout-summary__item-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    background: white;
    border-radius: 4px;
    flex-shrink: 0;
}

.checkout-summary__item-actions {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    flex-shrink: 0;
}

.checkout-summary__item-actions > span {
    font-weight: 600;
    font-size: 0.8rem;
    white-space: nowrap;
}

.checkout-summary__item-remove {
    width: 20px;
    height: 20px;
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
    font-size: 0.7rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    border-radius: 4px;
    flex-shrink: 0;
}

.checkout-summary__item-remove:hover {
    background: #ef4444;
    color: white;
}

.checkout-summary__item--bump {
    background: rgba(201, 162, 39, 0.1);
    margin: var(--space-xs) 0;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    border: 1px dashed var(--gold);
    border-bottom: 1px dashed var(--gold);
}

.checkout-summary__item--bump .checkout-summary__item-info span {
    color: var(--gold);
    font-size: 0.7rem;
}

.checkout-summary__item--bump2 {
    background: rgba(34, 197, 94, 0.1);
    margin: var(--space-xs) 0;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    border: 1px dashed var(--success);
    border-bottom: 1px dashed var(--success);
}

.checkout-summary__item--bump2 .checkout-summary__item-info span {
    color: var(--success);
    font-size: 0.7rem;
}

.checkout-summary__totals {
    padding-top: var(--space-md);
}

.checkout-summary__row {
    display: flex;
    justify-content: space-between;
    padding: var(--space-xs) 0;
    font-size: 0.9rem;
}

.checkout-summary__row--total {
    font-size: 1.3rem;
    font-weight: 700;
    padding-top: var(--space-md);
    margin-top: var(--space-sm);
    border-top: 2px solid var(--gold);
}

.checkout-summary__row--total span:last-child {
    color: var(--gold);
}

.checkout__btn {
    width: 100%;
    background: linear-gradient(135deg, #00d4aa 0%, #00b894 100%);
    color: var(--white);
    padding: var(--space-md);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.1rem;
    margin-top: var(--space-lg);
    transition: var(--transition-normal);
}

.checkout__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 212, 170, 0.3);
}

.checkout__payments {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    margin-top: var(--space-md);
    flex-wrap: wrap;
}

.checkout__payment {
    background: var(--gray-700);
    padding: var(--space-xs) var(--space-sm);
    font-size: 0.75rem;
    color: var(--gray-300);
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.3s ease;
}

.checkout__payment:hover {
    background: var(--gray-600);
    color: var(--white);
}

.checkout__payment i {
    font-size: 1rem;
    color: var(--gold);
}

/* Responsive para checkout */
@media (max-width: 767px) {
    .checkout__body {
        padding: var(--space-sm);
    }
    
    .checkout-summary {
        padding: var(--space-sm);
    }
    
    .checkout-summary__title {
        font-size: 0.95rem;
        padding-bottom: var(--space-sm);
        margin-bottom: var(--space-sm);
    }
    
    .checkout-summary__items {
        max-height: none;
    }
    
    .checkout-summary__row {
        font-size: 0.85rem;
    }
    
    .checkout-summary__row--total {
        font-size: 1.1rem;
    }
    
    .checkout__btn {
        padding: var(--space-sm) var(--space-md);
        font-size: 0.85rem;
        margin-top: var(--space-md);
    }
    
    .checkout__payments {
        margin-top: var(--space-sm);
    }
    
    .form-radio label {
        padding: var(--space-sm);
    }
    
    .form-radio__info {
        font-size: 0.75rem;
    }
}

/* ===== MODAL PRODUCTO ===== */
.product-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: var(--z-modal);
    display: none;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg);
    overflow-y: auto;
}

.product-modal--active {
    display: flex;
}

.product-modal__content {
    width: 100%;
    max-width: 1000px;
    background: var(--gray-900);
    border: 1px solid rgba(255,255,255,0.05);
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-height: 95vh;
    overflow: hidden;
    margin: auto;
}

.product-modal__gallery {
    background: var(--gray-800);
    position: relative;
    max-height: 95vh;
    overflow: hidden;
}

.product-modal__close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    width: 40px;
    height: 40px;
    background: var(--black);
    border: none;
    color: var(--white);
    font-size: 1.2rem;
    z-index: 1;
    cursor: pointer;
    transition: var(--transition-fast);
}

.product-modal__close:hover {
    background: var(--gold);
    color: var(--black);
}

.product-modal__main-image {
    aspect-ratio: 3/4;
    overflow: hidden;
    max-height: calc(95vh - 100px);
}

.product-modal__main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-modal__thumbs {
    display: flex;
    gap: var(--space-sm);
    padding: var(--space-md);
    overflow-x: auto;
}

.product-modal__thumb {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity var(--transition-fast);
    border: 2px solid transparent;
}

.product-modal__thumb:hover,
.product-modal__thumb--active {
    opacity: 1;
    border-color: var(--gold);
}

.product-modal__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-modal__info {
    padding: var(--space-xl);
    overflow-y: auto;
    max-height: 95vh;
}

/* Scrollbar para modal info */
.product-modal__info::-webkit-scrollbar {
    width: 6px;
}

.product-modal__info::-webkit-scrollbar-track {
    background: var(--gray-800);
}

.product-modal__info::-webkit-scrollbar-thumb {
    background: var(--gray-600);
    border-radius: 3px;
}

.product-modal__info::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

.product-modal__team {
    color: var(--gold);
    font-size: 0.8rem;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    margin-bottom: var(--space-sm);
}

.product-modal__name {
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: 0.15rem;
    margin-bottom: var(--space-sm);
}

.product-modal__price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: var(--space-lg);
}

.product-modal__desc {
    color: var(--gray-400);
    font-size: 0.9rem;
    margin-bottom: var(--space-xl);
    line-height: 1.8;
}

/* Options */
.option-group {
    margin-bottom: var(--space-lg);
}

.option-label {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.option-label span {
    color: var(--gold);
}

.option-buttons {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.option-btn {
    min-width: 50px;
    padding: var(--space-sm) var(--space-md);
    background: var(--gray-800);
    border: 1px solid var(--gray-700);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

.option-btn:hover,
.option-btn--active {
    border-color: var(--gold);
    color: var(--gold);
}

/* Botones de género */
.gender-btn {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    background: var(--gray-800);
    border: 1px solid var(--gray-700);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition-fast);
    cursor: pointer;
}

.gender-btn:hover,
.gender-btn--active {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 162, 39, 0.1);
}

.gender-btn__icon {
    font-size: 1.2rem;
}

/* Nota de tallas especiales */
.special-size-note {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-left: 3px solid var(--warning);
    padding: var(--space-sm) var(--space-md);
    margin-top: var(--space-sm);
    font-size: 0.75rem;
    color: var(--warning);
    display: none;
}

.special-size-note--visible {
    display: block;
}

.special-size-note__title {
    font-weight: 700;
    margin-bottom: 2px;
}

.special-size-note__text {
    opacity: 0.9;
}

/* Tallas especiales marcadas */
.option-btn--special {
    position: relative;
}

.option-btn--special::after {
    content: '⏱';
    position: absolute;
    top: -6px;
    right: -6px;
    font-size: 0.6rem;
    background: var(--warning);
    color: var(--black);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.color-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 3px solid transparent;
    cursor: pointer;
    transition: var(--transition-fast);
}

.color-btn:hover,
.color-btn--active {
    border-color: var(--white);
    transform: scale(1.1);
}

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-btn {
    position: fixed;
    bottom: var(--space-xl);
    right: var(--space-xl);
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: var(--z-fixed);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition-normal);
    animation: whatsappPulse 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn svg {
    width: 32px;
    height: 32px;
    fill: var(--white);
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6); }
}

/* ===== TOAST ===== */
.toast {
    position: fixed;
    bottom: var(--space-xl);
    right: 100px;
    background: var(--gray-900);
    border: 1px solid var(--gold);
    padding: var(--space-md) var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-md);
    z-index: var(--z-popover);
    transform: translateX(calc(100% + 100px));
    transition: transform var(--transition-normal);
}

.toast--active {
    transform: translateX(0);
}

.toast__icon {
    width: 40px;
    height: 40px;
    background: var(--gold);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    border-radius: 50%;
}

.toast__icon i {
    font-weight: 900;
}

.toast__title {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.toast__text {
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* ===== URGENCY BANNER ===== */
.urgency-banner {
    background: linear-gradient(90deg, #dc2626 0%, #b91c1c 100%);
    padding: var(--space-sm) var(--space-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.urgency-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: urgencyShine 3s infinite;
}

@keyframes urgencyShine {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(50%); }
}

.urgency-banner__content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.urgency-banner__text {
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.urgency-banner__timer {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    background: rgba(0,0,0,0.3);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 0.1rem;
}

.urgency-banner__code {
    background: var(--gold);
    color: var(--black);
    padding: 2px var(--space-sm);
    font-weight: 700;
    font-size: 0.8rem;
}

/* ===== SOCIAL PROOF NOTIFICATION ===== */
.social-proof {
    position: fixed;
    bottom: var(--space-xl);
    left: var(--space-xl);
    background: var(--white);
    color: var(--black);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    gap: var(--space-md);
    z-index: var(--z-popover);
    max-width: 320px;
    transform: translateX(-150%);
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.social-proof--active {
    transform: translateX(0);
}

.social-proof__image {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}

.social-proof__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.social-proof__content {
    flex: 1;
}

.social-proof__title {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2px;
    color: var(--gray-900);
}

.social-proof__text {
    font-size: 0.75rem;
    color: var(--gray-600);
    margin-bottom: 4px;
}

.social-proof__time {
    font-size: 0.7rem;
    color: var(--gray-500);
    display: flex;
    align-items: center;
    gap: 4px;
}

.social-proof__time::before {
    content: '✓';
    color: var(--success);
    font-weight: bold;
}

.social-proof__close {
    position: absolute;
    top: var(--space-xs);
    right: var(--space-xs);
    background: none;
    border: none;
    color: var(--gray-400);
    font-size: 1rem;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
}

.social-proof__close:hover {
    color: var(--gray-700);
}

/* ===== SALES COUNTER ===== */
.sales-counter {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    margin-bottom: var(--space-lg);
}

.sales-counter__dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: salesPulse 2s infinite;
}

@keyframes salesPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.sales-counter__text {
    color: var(--success);
    font-weight: 500;
}

.sales-counter__number {
    font-weight: 700;
}

/* ===== TRUST BADGES ===== */
.trust-badges {
    display: flex;
    gap: var(--space-lg);
    justify-content: center;
    flex-wrap: wrap;
    padding: var(--space-xl) 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    margin-top: var(--space-xl);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--gray-500);
    font-size: 0.8rem;
}

.trust-badge__icon {
    font-size: 1.2rem;
}

/* ===== VIEWERS COUNT ===== */
.viewers-count {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.8rem;
    color: var(--gray-400);
    margin-bottom: var(--space-md);
}

.viewers-count__dot {
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
    animation: viewersPulse 1s infinite;
}

@keyframes viewersPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.viewers-count__number {
    color: var(--white);
    font-weight: 600;
}

/* ===== STOCK WARNING ===== */
.stock-warning {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    color: #ef4444;
    margin-bottom: var(--space-md);
    animation: stockPulse 2s infinite;
}

@keyframes stockPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* ===== DISCOUNT APPLIED ===== */
.discount-applied {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.discount-applied__icon {
    color: var(--success);
    font-size: 1.2rem;
}

.discount-applied__text {
    font-size: 0.85rem;
    color: var(--success);
    font-weight: 500;
}

.discount-applied__amount {
    margin-left: auto;
    font-weight: 700;
    color: var(--success);
}

/* ===== GUARANTEE BADGE ===== */
.guarantee-badge {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    background: var(--gray-800);
    border: 1px solid var(--gray-700);
    padding: var(--space-md);
    margin-top: var(--space-lg);
}

.guarantee-badge__icon {
    font-size: 2rem;
}

.guarantee-badge__title {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.guarantee-badge__text {
    font-size: 0.75rem;
    color: var(--gray-500);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--gray-900);
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: var(--space-3xl) var(--space-lg) var(--space-xl);
}

.footer__content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-2xl);
    max-width: 1400px;
    margin: 0 auto;
}

.footer__brand {
    max-width: 300px;
}

.footer__logo {
    height: 40px;
    margin-bottom: var(--space-md);
}

.footer__text {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-bottom: var(--space-lg);
}

.footer__social {
    display: flex;
    gap: var(--space-sm);
}

.footer__social-link {
    width: 40px;
    height: 40px;
    background: var(--gray-800);
    border: 1px solid var(--gray-700);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition-fast);
}

.footer__social-link:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.footer__title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 0.1rem;
    margin-bottom: var(--space-lg);
}

.footer__links li {
    margin-bottom: var(--space-sm);
}

.footer__links a {
    color: var(--gray-500);
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.footer__links a:hover {
    color: var(--gold);
}

.footer__bottom {
    max-width: 1400px;
    margin: var(--space-2xl) auto 0;
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.footer__copyright {
    color: var(--gray-500);
    font-size: 0.85rem;
}

.footer__payments {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.footer__payment {
    background: var(--gray-800);
    padding: var(--space-xs) var(--space-sm);
    font-size: 0.75rem;
    color: var(--gray-400);
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.3s ease;
}

.footer__payment:hover {
    background: var(--gray-700);
    color: var(--white);
}

.footer__payment i {
    font-size: 1rem;
    color: var(--gold);
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 1024px) {
    .features__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .qualities {
        grid-template-columns: 1fr;
    }
    
    .custom__content {
        grid-template-columns: 1fr;
    }
    
    .checkout__body {
        grid-template-columns: 1fr;
    }
    
    .product-modal__content {
        grid-template-columns: 1fr;
        max-height: none;
        overflow-y: auto;
    }
    
    .footer__content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --space-lg: 1rem;
        --space-xl: 1.5rem;
        --space-2xl: 2rem;
        --space-3xl: 3rem;
        --space-4xl: 4rem;
    }
    
    .nav {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--gray-900);
        padding: var(--space-lg);
        flex-direction: column;
        gap: var(--space-md);
        border-bottom: 1px solid rgba(201, 162, 39, 0.2);
        z-index: 999;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }
    
    .nav--active {
        display: flex;
    }
    
    .nav__link {
        padding: var(--space-md);
        font-size: 1rem;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav__link:last-child {
        border-bottom: none;
    }
    
    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        background: none;
        border: 1px solid var(--gray-700);
        color: var(--white);
        font-size: 1.5rem;
        cursor: pointer;
        border-radius: var(--radius-sm);
        transition: all 0.3s ease;
    }
    
    .mobile-menu-btn:hover {
        border-color: var(--gold);
        color: var(--gold);
    }
    
    .features__grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .feature {
        padding: var(--space-md);
        background: rgba(201, 162, 39, 0.03);
        border: 1px solid rgba(201, 162, 39, 0.1);
        border-radius: var(--radius-md);
    }
    
    .feature__icon {
        width: 50px;
        height: 50px;
    }
    
    .feature__icon i {
        font-size: 1.2rem;
    }
    
    .hero__title {
        letter-spacing: 0.15rem;
    }
    
    .hero__buttons {
        flex-direction: column;
    }
    
    .hero__buttons .btn {
        width: 100%;
    }
    
    .filters {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: var(--space-sm);
        -webkit-overflow-scrolling: touch;
    }
    
    .filter-btn {
        flex-shrink: 0;
    }
    
    .products {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }
    
    .product-card__info {
        padding: var(--space-md);
    }
    
    .product-card__name {
        font-size: 1rem;
    }
    
    .cart-sidebar {
        width: 100%;
    }
    
    .order-bump__products {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .order-bump__products--small {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .checkout__body {
        flex-direction: column;
        padding: var(--space-md);
    }
    
    .checkout-summary {
        order: 1;
        margin-bottom: var(--space-md);
    }
    
    .checkout__form {
        order: 2;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer__content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .whatsapp-btn {
        bottom: var(--space-lg);
        right: var(--space-lg);
        width: 56px;
        height: 56px;
    }
    
    .toast {
        left: var(--space-md);
        right: var(--space-md);
        bottom: 80px;
        transform: translateY(calc(100% + 100px));
    }
    
    .toast--active {
        transform: translateY(0);
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .products {
        grid-template-columns: 1fr;
    }
    
    .product-card__image {
        aspect-ratio: 4/5;
    }
    
    .order-bump__products {
        grid-template-columns: 1fr 1fr 1fr;
    }
    
    .order-bump__product {
        padding: var(--space-xs);
    }
    
    .urgency-banner {
        padding: var(--space-xs) var(--space-sm);
    }
    
    .urgency-banner__content {
        gap: var(--space-xs);
    }
    
    .urgency-banner__text {
        font-size: 0.7rem;
    }
    
    .urgency-banner__timer {
        font-size: 0.9rem;
    }
    
    .social-proof {
        left: var(--space-md);
        right: var(--space-md);
        max-width: none;
        bottom: 90px;
    }
}

/* ===== ANIMACIONES SCROLL ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in--visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left--visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right--visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-in--visible {
    opacity: 1;
    transform: scale(1);
}
