/* ============================================
   RESET & VARIABLES
============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --red: #E0173A;
    --red-hover: #ff2548;
    --red-dark: #b8112e;
    --black: #0D0D0D;
    --dark: #1C1C1E;
    --dark-2: #26262a;
    --white: #F5F5F5;
    --gray: #8a8a92;
    --gray-light: #b5b5bd;
    --border: rgba(245, 245, 245, 0.08);
    --glow: rgba(224, 23, 58, 0.4);

    --font-display: 'Orbitron', sans-serif;
    --font-body: 'Rajdhani', sans-serif;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 12px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Grid pattern background */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(224, 23, 58, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(224, 23, 58, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

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

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

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

input, textarea {
    font-family: inherit;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* ============================================
   NAVBAR
============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(13, 13, 13, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(13, 13, 13, 0.95);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 32px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    flex-shrink: 0;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 0 20px rgba(224, 23, 58, 0.3);
}

.logo-icon::before {
    content: '';
    position: absolute;
    inset: 2px;
    background: var(--black);
    border-radius: 8px;
}

.logo-icon svg {
    position: relative;
    z-index: 1;
    width: 22px;
    height: 22px;
    color: var(--red);
}

.logo-text .accent {
    color: var(--red);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    flex: 1;
    justify-content: center;
}

.nav-menu a {
    position: relative;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 8px 0;
    transition: color var(--transition);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--red);
    transition: all var(--transition);
    transform: translateX(-50%);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--red);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

/* Dropdown menu */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.nav-dropdown-toggle svg {
    width: 14px;
    height: 14px;
    transition: transform var(--transition);
}

.nav-dropdown:hover .nav-dropdown-toggle svg,
.nav-dropdown.active .nav-dropdown-toggle svg {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 16px);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    min-width: 220px;
    background: rgba(28, 28, 30, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 8px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(224, 23, 58, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    list-style: none;
    z-index: 100;
}

.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: rgba(28, 28, 30, 0.98);
    border-left: 1px solid var(--border);
    border-top: 1px solid var(--border);
}

.nav-dropdown-menu::after {
    content: '';
    position: absolute;
    top: -16px;
    left: 0;
    right: 0;
    height: 16px;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.active .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu li {
    list-style: none;
    width: 100%;
}

.nav-dropdown-menu a {
    display: flex !important;
    align-items: center;
    gap: 12px;
    padding: 12px 14px !important;
    font-size: 14px !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    font-weight: 600 !important;
    border-radius: 8px;
    transition: var(--transition);
    color: var(--gray-light);
    width: 100%;
}

.nav-dropdown-menu a::after {
    display: none !important;
}

.nav-dropdown-menu a:hover {
    background: rgba(224, 23, 58, 0.1);
    color: var(--red) !important;
    transform: translateX(2px);
}

.nav-dropdown-icon {
    width: 32px;
    height: 32px;
    background: var(--black);
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
    color: var(--white);
}

.nav-dropdown-menu a:hover .nav-dropdown-icon {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
}

.nav-dropdown-icon svg {
    width: 14px;
    height: 14px;
}

.nav-dropdown-label {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.nav-dropdown-sublabel {
    font-size: 11px;
    color: var(--gray);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-icon-btn {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--dark);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: var(--transition);
    color: var(--white);
}

.nav-icon-btn:hover {
    background: var(--red);
    border-color: var(--red);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(224, 23, 58, 0.3);
}

.nav-icon-btn svg {
    width: 20px;
    height: 20px;
}

.cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--red);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--black);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--dark);
    border: 1px solid var(--border);
    align-items: center;
    justify-content: center;
}

.menu-toggle svg {
    width: 22px;
    height: 22px;
}

/* ============================================
   HERO
============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(224, 23, 58, 0.25) 0%, transparent 70%);
    filter: blur(80px);
    top: -200px;
    right: -200px;
    animation: glow-pulse 6s ease-in-out infinite;
}

.hero-glow-2 {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(224, 23, 58, 0.15) 0%, transparent 70%);
    filter: blur(80px);
    bottom: -100px;
    left: -100px;
    animation: glow-pulse 8s ease-in-out infinite reverse;
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    animation: slide-up 0.8s cubic-bezier(0.4, 0, 0.2, 1) both;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(224, 23, 58, 0.1);
    border: 1px solid rgba(224, 23, 58, 0.3);
    color: var(--red);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--red);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--red);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 24px;
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.hero h1 .accent {
    background: linear-gradient(135deg, var(--red) 0%, #ff4568 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.hero h1 .accent::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 3px;
    background: var(--red);
    box-shadow: 0 0 20px var(--red);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--gray-light);
    margin-bottom: 40px;
    max-width: 540px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: var(--transition);
    cursor: pointer;
    font-family: var(--font-body);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn-primary {
    background: var(--red);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(224, 23, 58, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--red-hover) 0%, var(--red) 100%);
    opacity: 0;
    transition: opacity var(--transition);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(224, 23, 58, 0.5);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary span {
    position: relative;
    z-index: 1;
}

.btn-primary svg {
    position: relative;
    z-index: 1;
    width: 18px;
    height: 18px;
}

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

.btn-secondary:hover {
    background: var(--dark);
    border-color: var(--red);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.hero-stat-num {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 900;
    color: var(--red);
    line-height: 1;
}

.hero-stat-label {
    font-size: 13px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 6px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 500px;
    animation: slide-up 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

.hero-card {
    position: absolute;
    background: linear-gradient(135deg, var(--dark) 0%, var(--black) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.hero-card-1 {
    width: 280px;
    top: 20px;
    right: 40px;
    transform: rotate(4deg);
    animation: float 6s ease-in-out infinite;
    z-index: 2;
}

.hero-card-2 {
    width: 260px;
    top: 180px;
    left: 20px;
    transform: rotate(-6deg);
    animation: float 6s ease-in-out infinite 1s;
    z-index: 1;
}

.hero-card-3 {
    width: 240px;
    bottom: 30px;
    right: 80px;
    transform: rotate(2deg);
    animation: float 6s ease-in-out infinite 2s;
    z-index: 3;
}

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

.hero-card-1 { --rotate: 4deg; }
.hero-card-2 { --rotate: -6deg; }
.hero-card-3 { --rotate: 2deg; }

.hero-card-img {
    width: 100%;
    height: 160px;
    border-radius: 8px;
    margin-bottom: 12px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 20px;
    color: var(--white);
    text-align: center;
    padding: 12px;
}

.hero-card-img-1 {
    background: linear-gradient(135deg, #1a0033 0%, #660066 50%, #E0173A 100%);
}

.hero-card-img-2 {
    background: linear-gradient(135deg, #003366 0%, #0066cc 50%, #00aaff 100%);
}

.hero-card-img-3 {
    background: linear-gradient(135deg, #4a0e0e 0%, #8B0000 50%, #E0173A 100%);
}

.hero-card-tag {
    display: inline-block;
    padding: 3px 8px;
    background: var(--red);
    color: white;
    font-size: 10px;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.hero-card-title {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
}

.hero-card-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.hero-card-price-new {
    color: var(--red);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16px;
}

.hero-card-price-old {
    color: var(--gray);
    font-size: 12px;
    text-decoration: line-through;
}

/* ============================================
   SECTION HEADERS
============================================ */
section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.section-header {
    margin-bottom: 60px;
    text-align: center;
}

.section-label {
    display: inline-block;
    color: var(--red);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 16px;
    position: relative;
    padding: 0 40px;
}

.section-label::before,
.section-label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: var(--red);
}

.section-label::before { left: 0; }
.section-label::after { right: 0; }

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.section-subtitle {
    color: var(--gray-light);
    font-size: 17px;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   CATEGORIES
============================================ */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.category-card {
    position: relative;
    aspect-ratio: 3/4;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid var(--border);
}

.category-card:hover {
    transform: translateY(-8px);
    border-color: var(--red);
    box-shadow: 0 20px 40px rgba(224, 23, 58, 0.2);
}

.category-bg {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 80px;
    color: rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.category-card:hover .category-bg {
    font-size: 100px;
    color: rgba(224, 23, 58, 0.1);
}

.category-ps4 { background: linear-gradient(180deg, #001840 0%, #000814 100%); }
.category-ps5 { background: linear-gradient(180deg, #0a1845 0%, #000814 100%); }
.category-servicios { background: linear-gradient(180deg, #3a0818 0%, #0a0004 100%); }
.category-monedas { background: linear-gradient(180deg, #402000 0%, #1a0d00 100%); }

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(13, 13, 13, 0.95) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    z-index: 2;
}

.category-icon {
    width: 56px;
    height: 56px;
    background: var(--red);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: auto;
    align-self: flex-start;
    box-shadow: 0 8px 24px rgba(224, 23, 58, 0.3);
    transition: var(--transition);
}

.category-card:hover .category-icon {
    transform: rotate(-8deg) scale(1.1);
}

.category-icon svg {
    width: 28px;
    height: 28px;
    color: var(--white);
}

.category-name {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.category-count {
    color: var(--gray-light);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.category-card:hover .category-count {
    color: var(--red);
}

.category-count-arrow {
    transition: var(--transition);
}

.category-card:hover .category-count-arrow {
    transform: translateX(4px);
}

/* ============================================
   PRODUCTS
============================================ */
.products-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    gap: 20px;
    flex-wrap: wrap;
}

.products-header .section-label,
.products-header .section-title {
    text-align: left;
}

.products-header .section-label {
    padding: 0;
}

.products-header .section-label::before,
.products-header .section-label::after {
    display: none;
}

.filter-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 10px 20px;
    background: var(--dark);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-light);
    transition: var(--transition);
}

.filter-tab:hover {
    color: var(--white);
    border-color: var(--gray);
}

.filter-tab.active {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
}

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

.product-card {
    background: var(--dark);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: var(--red);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.product-img {
    aspect-ratio: 4/5;
    position: relative;
    overflow: hidden;
    background: var(--black);
}

.product-img-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 900;
    color: var(--white);
    text-align: center;
    padding: 20px;
    font-size: 22px;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.02em;
    transition: var(--transition);
}

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

.product-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 2;
}

.product-badge {
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 4px;
    font-family: var(--font-display);
}

.badge-discount {
    background: var(--red);
    color: var(--white);
}

.badge-new {
    background: var(--white);
    color: var(--black);
}

.badge-hot {
    background: linear-gradient(135deg, #ff6b00, #ff2200);
    color: var(--white);
}

.product-platform {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 8px;
    background: rgba(13, 13, 13, 0.9);
    backdrop-filter: blur(10px);
    font-size: 10px;
    font-weight: 700;
    color: var(--white);
    border-radius: 4px;
    font-family: var(--font-display);
    letter-spacing: 0.08em;
    border: 1px solid var(--border);
    z-index: 2;
}

.product-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-category {
    font-size: 11px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
    font-weight: 600;
}

.product-name {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
    min-height: 42px;
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 16px;
    margin-top: auto;
}

.price-current {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 900;
    color: var(--red);
}

.price-old {
    font-size: 14px;
    color: var(--gray);
    text-decoration: line-through;
}

.product-btn {
    width: 100%;
    padding: 12px;
    background: var(--black);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--white);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.product-btn:hover {
    background: var(--red);
    border-color: var(--red);
}

.product-btn svg {
    width: 16px;
    height: 16px;
}

.products-footer {
    text-align: center;
    margin-top: 48px;
}

/* ============================================
   TRUST / FEATURES
============================================ */
.trust {
    position: relative;
}

.trust::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--red), transparent);
}

.trust::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--red), transparent);
}

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

.trust-card {
    background: var(--dark);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.trust-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.trust-card:hover {
    transform: translateY(-4px);
    border-color: rgba(224, 23, 58, 0.3);
}

.trust-card:hover::before {
    transform: scaleX(1);
}

.trust-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: rgba(224, 23, 58, 0.1);
    border: 1px solid rgba(224, 23, 58, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    transition: var(--transition);
}

.trust-card:hover .trust-icon {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
    transform: rotate(-8deg);
}

.trust-icon svg {
    width: 30px;
    height: 30px;
}

.trust-title {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.trust-desc {
    color: var(--gray-light);
    font-size: 14px;
    line-height: 1.5;
}

/* ============================================
   CTA BANNER
============================================ */
.cta-banner {
    padding: 80px 0;
}

.cta-wrapper {
    background: linear-gradient(135deg, rgba(224, 23, 58, 0.15) 0%, rgba(224, 23, 58, 0.05) 100%);
    border: 1px solid rgba(224, 23, 58, 0.3);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-wrapper::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(224, 23, 58, 0.15) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    filter: blur(40px);
}

.cta-wrapper::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(224, 23, 58, 0.1) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    filter: blur(40px);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 16px;
    line-height: 1.1;
}

.cta-title .accent {
    color: var(--red);
}

.cta-desc {
    color: var(--gray-light);
    font-size: 17px;
    max-width: 500px;
    margin: 0 auto 32px;
}

/* ============================================
   FOOTER
============================================ */
.footer {
    background: var(--black);
    padding: 80px 0 0;
    border-top: 1px solid var(--border);
    position: relative;
    z-index: 1;
}

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

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-desc {
    color: var(--gray-light);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 320px;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--dark);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 10px 18px;
}

.trust-badge-stars {
    color: #ffb800;
    font-size: 16px;
    letter-spacing: -2px;
}

.trust-badge-text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.05em;
}

.trust-badge-text span {
    color: var(--gray);
    font-weight: 400;
    margin-left: 4px;
}

.footer-title {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
    color: var(--white);
    position: relative;
    padding-left: 16px;
}

.footer-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 16px;
    background: var(--red);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--gray-light);
    font-size: 14px;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--red);
    transform: translateX(4px);
}

.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--dark);
    border: 1px solid var(--border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--red);
    border-color: var(--red);
    transform: translateY(-3px);
}

.social-link svg {
    width: 18px;
    height: 18px;
}

.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copy {
    color: var(--gray);
    font-size: 13px;
}

.footer-payment {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray);
    font-size: 13px;
}

.footer-payment-logos {
    display: flex;
    gap: 8px;
    align-items: center;
}

.payment-logo {
    padding: 4px 10px;
    background: var(--dark);
    border: 1px solid var(--border);
    border-radius: 4px;
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

/* ============================================
   CART DRAWER (lateral)
============================================ */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1998;
}

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

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 440px;
    max-width: 100vw;
    background: #0a0a0a;
    border-left: 1px solid var(--border);
    z-index: 1999;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.5);
}

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

.cart-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
}

.cart-drawer-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.cart-drawer-title svg {
    width: 22px;
    height: 22px;
    color: var(--red);
}

.cart-drawer-count {
    background: var(--red);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    min-width: 24px;
    height: 24px;
    padding: 0 8px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-drawer-close {
    width: 40px;
    height: 40px;
    background: var(--dark);
    border: 1px solid var(--border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.cart-drawer-close:hover {
    background: var(--red);
    border-color: var(--red);
    transform: rotate(90deg);
}

.cart-drawer-close svg {
    width: 18px;
    height: 18px;
}

/* Toast: se añadió al carrito */
.cart-toast {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 16px;
    margin: 16px 24px 0;
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 10px;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cart-toast.show {
    opacity: 1;
    max-height: 80px;
    padding: 14px 16px;
}

.cart-toast-icon {
    width: 28px;
    height: 28px;
    background: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.cart-toast-icon svg {
    width: 16px;
    height: 16px;
}

.cart-toast-text {
    font-size: 13px;
    color: var(--white);
    line-height: 1.4;
}

.cart-toast-text strong {
    font-weight: 700;
    color: #86efac;
}

/* Items list */
.cart-drawer-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    scrollbar-width: thin;
    scrollbar-color: var(--border) transparent;
}

.cart-drawer-items::-webkit-scrollbar {
    width: 6px;
}

.cart-drawer-items::-webkit-scrollbar-track {
    background: transparent;
}

.cart-drawer-items::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 3px;
}

.cart-drawer-items::-webkit-scrollbar-thumb:hover {
    background: var(--red);
}

/* Empty cart */
.cart-empty {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 24px;
}

.cart-empty-icon {
    width: 80px;
    height: 80px;
    background: rgba(224, 23, 58, 0.1);
    border: 1px solid rgba(224, 23, 58, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    margin-bottom: 20px;
}

.cart-empty-icon svg {
    width: 36px;
    height: 36px;
}

.cart-empty-title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cart-empty-desc {
    color: var(--gray-light);
    font-size: 14px;
    max-width: 280px;
    margin-bottom: 24px;
}

/* Cart item */
.cart-item {
    display: grid;
    grid-template-columns: 72px 1fr auto;
    gap: 14px;
    padding: 14px;
    background: var(--dark);
    border: 1px solid var(--border);
    border-radius: 10px;
    transition: var(--transition);
}

.cart-item:hover {
    border-color: rgba(224, 23, 58, 0.3);
}

.cart-item-img {
    width: 72px;
    height: 72px;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 900;
    color: var(--white);
    font-size: 11px;
    line-height: 1.1;
    text-align: center;
    padding: 6px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
    flex-shrink: 0;
}

.cart-item-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
    gap: 8px;
}

.cart-item-name {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--white);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.cart-item-variants {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}

.cart-item-variant-chip {
    display: inline-block;
    padding: 2px 6px;
    background: rgba(224, 23, 58, 0.1);
    border: 1px solid rgba(224, 23, 58, 0.2);
    color: var(--red);
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cart-item-qty-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    background: var(--black);
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
}

.cart-item-qty-btn {
    width: 26px;
    height: 28px;
    background: transparent;
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.cart-item-qty-btn:hover {
    background: var(--red);
}

.cart-item-qty-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.cart-item-qty-btn:disabled:hover {
    background: transparent;
}

.cart-item-qty-value {
    min-width: 28px;
    text-align: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 12px;
    color: var(--white);
}

.cart-item-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    gap: 8px;
}

.cart-item-price {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 900;
    color: var(--red);
    white-space: nowrap;
}

.cart-item-remove {
    width: 28px;
    height: 28px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    transition: var(--transition);
}

.cart-item-remove:hover {
    color: var(--red);
    border-color: var(--red);
    background: rgba(224, 23, 58, 0.1);
}

.cart-item-remove svg {
    width: 14px;
    height: 14px;
}

/* Continue shopping */
.continue-shopping {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--gray-light);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: var(--transition);
    margin-top: 8px;
}

.continue-shopping:hover {
    border-color: var(--red);
    color: var(--red);
}

.continue-shopping svg {
    width: 14px;
    height: 14px;
}

/* Footer */
.cart-drawer-footer {
    padding: 20px 24px 24px;
    border-top: 1px solid var(--border);
    background: var(--black);
    flex-shrink: 0;
}

.cart-subtotal-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 16px;
}

.cart-subtotal-label {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--white);
}

.cart-subtotal-value {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 900;
    color: var(--red);
    letter-spacing: -0.01em;
}

.cart-drawer-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-view-cart {
    width: 100%;
    padding: 10px;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--gray-light);
    border-radius: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.btn-view-cart:hover {
    border-color: var(--red);
    color: var(--red);
    background: rgba(224, 23, 58, 0.05);
}

.btn-view-cart svg {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}

.btn-checkout {
    width: 100%;
    padding: 15px;
    background: var(--red);
    color: var(--white);
    border-radius: 10px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 20px rgba(224, 23, 58, 0.3);
}

.btn-checkout:hover {
    background: var(--red-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(224, 23, 58, 0.5);
}

.btn-checkout svg {
    width: 18px;
    height: 18px;
}

@media (max-width: 480px) {
    .cart-drawer {
        width: 100vw;
    }
}

/* ============================================
   INSTAGRAM FLOATING
============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(253, 29, 29, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: insta-pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(253, 29, 29, 0.6);
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
    color: var(--white);
}

@keyframes insta-pulse {
    0% { box-shadow: 0 8px 24px rgba(253, 29, 29, 0.4), 0 0 0 0 rgba(253, 29, 29, 0.6); }
    70% { box-shadow: 0 8px 24px rgba(253, 29, 29, 0.4), 0 0 0 20px rgba(253, 29, 29, 0); }
    100% { box-shadow: 0 8px 24px rgba(253, 29, 29, 0.4), 0 0 0 0 rgba(253, 29, 29, 0); }
}

.whatsapp-tooltip {
    position: absolute;
    right: 72px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--dark);
    border: 1px solid var(--border);
    color: var(--white);
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 6px solid var(--dark);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    right: 76px;
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-visual {
        height: 400px;
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }

    .categories-grid,
    .products-grid,
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    section {
        padding: 70px 0;
    }

    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(13, 13, 13, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px;
        gap: 0;
        border-bottom: 1px solid var(--border);
        transform: translateY(-150%);
        transition: transform var(--transition);
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--border);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu a {
        display: block;
        padding: 16px 0;
    }

    /* Mobile dropdown */
    .nav-dropdown-toggle {
        width: 100%;
        justify-content: space-between;
    }

    .nav-dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border: none;
        padding: 0 0 12px 0;
        min-width: 0;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
    }

    .nav-dropdown-menu::before,
    .nav-dropdown-menu::after {
        display: none;
    }

    .nav-dropdown.active .nav-dropdown-menu {
        max-height: 500px;
        transform: none;
    }

    .nav-dropdown-menu a {
        padding: 10px 12px !important;
        background: var(--black);
        margin-bottom: 4px;
    }

    .menu-toggle {
        display: flex;
    }

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-stats {
        gap: 20px;
        flex-wrap: wrap;
    }

    .hero-stat-num {
        font-size: 24px;
    }

    .hero-visual {
        height: 350px;
    }

    .hero-card-1 { width: 220px; right: 10px; }
    .hero-card-2 { width: 200px; left: 0; }
    .hero-card-3 { width: 190px; right: 30px; }

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

    .products-header {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 4px;
    }

    .filter-tab {
        flex-shrink: 0;
    }

    .cta-wrapper {
        padding: 40px 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        padding-bottom: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .whatsapp-float {
        width: 52px;
        height: 52px;
        bottom: 16px;
        right: 16px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .logo {
        font-size: 18px;
    }

    .logo-icon {
        width: 36px;
        height: 36px;
    }

    .categories-grid,
    .products-grid,
    .trust-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        width: 100%;
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .hero-stats {
        width: 100%;
        justify-content: space-between;
    }
}
