:root {
    /* Color Palette - Light Mode / One Nine Style */
    --bg-main: #fcfcfd;
    --bg-surface: #ffffff;
    --text-primary: #09090b;
    --text-secondary: #52525b;
    --accent-1: #6C63FF; /* Violet main */
    --accent-2: #E879F9; /* Pink accent */
    --accent-3: #38BDF8; /* Blue accent */
    
    /* Soft shadows */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 40px -5px rgba(0, 0, 0, 0.06);
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    
    /* Mesh Gradients blobs for pseudo-glass */
    --blob-1: rgba(108, 99, 255, 0.25);
    --blob-2: rgba(232, 121, 249, 0.2);
}

/* Modo Nocturno  */
:root[data-theme="dark"] {
    --bg-main: #060608;
    --bg-surface: #0a0a0f;
    --text-primary: #ffffff;
    --text-secondary: #8c8c99;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.6);
    --shadow-lg: 0 20px 40px -5px rgba(0, 0, 0, 0.8);
    --blob-1: rgba(108, 99, 255, 0.15);
    --blob-2: rgba(232, 121, 249, 0.1);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    transition: background-color 0.5s ease, color 0.5s ease;
}

main, footer {
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: none;
  }
}

/* Preloader (Fade-in effect like One Nine) */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-main);
    z-index: 99999;
    pointer-events: none;
    animation: hidePreloader 1.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    animation-delay: 0.2s; /* Un breve momento en sólido para estabilizar la carga */
}

@keyframes hidePreloader {
    0% { opacity: 1; visibility: visible; }
    100% { opacity: 0; visibility: hidden; }
}

/* Background Mesh Gradients (Blobs) */
.blob {
    position: absolute;
    filter: blur(120px);
    z-index: -1;
    border-radius: 50%;
    animation: float 25s infinite alternate;
}
.blob-1 {
    top: -5%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: var(--blob-1);
}
.blob-2 {
    top: 30%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: var(--blob-2);
    animation-delay: -5s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(100px, 80px) scale(1.1); }
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography Utilities */
.highlight { color: var(--accent-1); font-weight: 700; }
.highlight-gradient {
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: gradientFlow 5s ease infinite;
}
@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Navbar */
/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    background: transparent;
    transition: padding 0.4s ease, background-color 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.navbar.scrolled {
    padding: 1rem 0;
    background: rgba(var(--bg-surface-rgb, 255, 255, 255), 0.85);
    box-shadow: 0 2px 20px rgba(0,0,0,0.04);
}

[data-theme="dark"] .navbar.scrolled {
    background: rgba(10, 10, 15, 0.85);
    box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text-primary);
}

.logo img {
    height: 122px; /* Reducido en un 20% */
    width: auto;
    object-fit: contain;
}

.nav-links {
    position: absolute;
    left: 58%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
    display: inline-block;
}

.nav-links a:hover {
    color: var(--text-primary);
}

/* Effect 14: border switch */
.cl-effect-14 a {
  padding: 0 20px;
  height: 45px;
  line-height: 45px;
}

.cl-effect-14 a::before,
.cl-effect-14 a::after {
  position: absolute;
  width: 45px;
  height: 2px;
  background: var(--accent-1);
  content: '';
  opacity: 0.2;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  pointer-events: none;
}

.cl-effect-14 a::before {
  top: 0;
  left: 0;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transform-origin: 0 0;
  -moz-transform-origin: 0 0;
  transform-origin: 0 0;
}

.cl-effect-14 a::after {
  right: 0;
  bottom: 0;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transform-origin: 100% 0;
  -moz-transform-origin: 100% 0;
  transform-origin: 100% 0;
}

.cl-effect-14 a:hover::before,
.cl-effect-14 a:hover::after,
.cl-effect-14 a:focus::before,
.cl-effect-14 a:focus::after {
  opacity: 1;
}

.cl-effect-14 a:hover::before,
.cl-effect-14 a:focus::before {
  left: 50%;
  -webkit-transform: rotate(0deg) translateX(-50%);
  -moz-transform: rotate(0deg) translateX(-50%);
  transform: rotate(0deg) translateX(-50%);
}

.cl-effect-14 a:hover::after,
.cl-effect-14 a:focus::after {
  right: 50%;
  -webkit-transform: rotate(0deg) translateX(50%);
  -moz-transform: rotate(0deg) translateX(50%);
  transform: rotate(0deg) translateX(50%);
}

.nav-controls {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.theme-btn, .color-btn, .cart-btn {
    position: relative;
    cursor: pointer;
    color: var(--text-primary);
    transition: transform 0.2s ease, color 0.2s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cart-btn svg {
    width: 38px;
    height: 38px;
}

.theme-btn:hover, .color-btn:hover, .cart-btn:hover { transform: scale(1.1); color: var(--accent-1); }

/* Controles Flotantes Específicos */
.floating-controls {
    position: fixed;
    top: 50%;
    right: 1.5rem;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: var(--bg-surface);
    backdrop-filter: blur(10px);
    padding: 1.2rem 0.8rem;
    border-radius: 50px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0,0,0,0.06);
    z-index: 999;
}

[data-theme="dark"] .floating-controls {
    border-color: rgba(255,255,255,0.05);
}

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

/* Animations - Reveal & Slide Up */
/* Clases base para animar al scrollear o cargar */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1), 
                transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Retrasos escalonados */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }


/* Buttons */
.btn {
    padding: 1rem 2.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-family: inherit;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
}

.btn-primary {
    background: var(--accent-1);
    color: white;
    box-shadow: 0 8px 20px rgba(108, 99, 255, 0.25);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(108, 99, 255, 0.35);
    background: #5b54d6;
}

.btn-secondary {
    background: var(--bg-surface);
    color: var(--text-primary);
    border: 1px solid rgba(0,0,0,0.1);
    box-shadow: var(--shadow-sm);
}
.btn-secondary:hover {
    background: #f8fafc;
    transform: translateY(-3px);
    border-color: rgba(0,0,0,0.2);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 130px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(108, 99, 255, 0.1);
    color: var(--accent-1);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-text h1 {
    font-size: 4.5rem;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -1.5px;
}

.hero-text p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 90%;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
}

.hero-image {
    perspective: 1000px;
}

.floating-card {
    width: 100%;
    max-width: 420px;
    aspect-ratio: 1/1;
    margin: auto;
    border-radius: 24px;
    position: relative;
    padding: 1px;
    background: linear-gradient(135deg, rgba(108,99,255,0.4), rgba(232,121,249,0.3));
    animation: float-card 8s ease-in-out infinite;
    transform-style: preserve-3d;
    box-shadow: var(--shadow-lg);
}

.card-solid {
    background: var(--bg-surface);
    width: 100%;
    height: 100%;
    border-radius: 23px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
}

.card-solid::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right:0; bottom:0;
    background: radial-gradient(circle at top right, rgba(108,99,255,0.08) 0%, transparent 60%);
}

.card-solid h3 { font-size: 2.5rem; margin-bottom: 0.5rem; position: relative; z-index: 2; font-weight: 800; letter-spacing: -1px; }
.card-solid p { color: var(--accent-1); font-weight: 600; position: relative; z-index: 2;}

.hero-card-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    margin-bottom: auto;
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.floating-card:hover .hero-card-img {
    transform: scale(1.05) translateY(-5px);
}

/* Image Slideshow en Hero */
.image-slideshow .slide {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 95%;
    max-height: 95%;
    object-fit: contain;
    z-index: 2;
    opacity: 0;
    pointer-events: none;
}

@keyframes slideshow {
    0%, 5% { 
        opacity: 0; 
        transform: translate(-50%, -40%) scale(0.95); 
        filter: blur(4px); 
    }
    15%, 40% { 
        opacity: 1; 
        transform: translate(-50%, -50%) scale(1); 
        filter: blur(0); 
    }
    50%, 100% { 
        opacity: 0; 
        transform: translate(-50%, -60%) scale(1.05); 
        filter: blur(4px); 
    }
}

.image-slideshow .slide-1 {
    animation: slideshow 12s infinite;
}

.image-slideshow .slide-2 {
    animation: slideshow 12s infinite;
    animation-delay: 6s;
}

.floating-card:hover .slide {
    filter: brightness(1.1) drop-shadow(0 10px 20px rgba(108, 99, 255, 0.4));
}

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

/* Products Section */
.section-title {
    font-size: 3rem;
    margin-bottom: 3.5rem;
    text-align: center;
    font-weight: 800;
    letter-spacing: -1px;
}

.products {
    padding: 6rem 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.product-card {
    background: var(--bg-surface);
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: 24px;
    padding: 1.5rem;
    transition: var(--transition);
    position: relative;
    box-shadow: var(--shadow-sm);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.card-img-placeholder {
    height: 220px;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.8rem;
    background: var(--bg-main);
    position: relative;
    transition: background-color 0.5s ease;
}

.card-img-placeholder svg {
    stroke: var(--accent-1);
    transition: var(--transition);
}

.card-img-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1.2rem;
    transition: var(--transition);
}

.product-card:hover .card-img-placeholder svg,
.product-card:hover .card-img-placeholder img {
    transform: scale(1.08);
}

.category {
    font-size: 1.5rem;
    text-transform: uppercase;
    color: var(--accent-1);
    letter-spacing: 0.5px;
    margin-bottom: 0.4rem;
    display: block;
    font-weight: 800;
}

.product-info h3 {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    font-weight: 500;
    color: var(--text-secondary);
    /* Asegurar que todos tengan la misma altura para alineación */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 2.8em;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 1rem;
}

.price {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-primary);
}

.btn-add-cart {
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    background: var(--bg-main);
    border: 1px solid rgba(0,0,0,0.1);
    color: var(--text-primary);
    font-size: 0.88rem;
    font-weight: 600;
    font-family: inherit;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-add-cart svg { flex-shrink: 0; }

.btn-add-cart:hover {
    background: var(--accent-1);
    border-color: var(--accent-1);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(108, 99, 255, 0.3);
}

/* ── Cart Panel ── */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(4px);
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}
.cart-overlay.open {
    opacity: 1;
    visibility: visible;
}

.cart-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 380px;
    max-width: 100vw;
    height: 100vh;
    background: var(--bg-surface);
    z-index: 1200;
    display: flex;
    flex-direction: column;
    box-shadow: -8px 0 40px rgba(0,0,0,0.15);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.cart-panel.open { transform: translateX(0); }

.cart-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
[data-theme="dark"] .cart-panel-header { border-color: rgba(255,255,255,0.06); }

.cart-panel-header h3 {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.2rem;
    font-weight: 700;
}
.cart-panel-header h3 svg { stroke: var(--accent-1); }

.cart-panel-close {
    width: 34px; height: 34px;
    border-radius: 50%;
    border: none;
    background: var(--bg-main);
    color: var(--text-secondary);
    font-size: 1.4rem;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.cart-panel-close:hover { background: var(--accent-1); color: white; }

.cart-items-list {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cart-empty {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    padding: 3rem 0;
}

.cart-item {
    background: var(--bg-main);
    border-radius: 14px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    border: 1px solid rgba(0,0,0,0.04);
    animation: itemSlideIn 0.3s ease;
}
[data-theme="dark"] .cart-item { border-color: rgba(255,255,255,0.04); }

@keyframes itemSlideIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

.cart-item-info { display: flex; flex-direction: column; gap: 0.2rem; }
.cart-item-name { font-size: 0.9rem; font-weight: 600; line-height: 1.3; }
.cart-item-price { font-size: 0.8rem; color: var(--text-secondary); }

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-qty-btn {
    width: 28px; height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.1);
    background: var(--bg-surface);
    color: var(--text-primary);
    font-size: 1rem;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}
.cart-qty-btn:hover { background: var(--accent-1); color: white; border-color: var(--accent-1); }

.cart-qty {
    min-width: 24px;
    text-align: center;
    font-weight: 700;
    font-size: 0.95rem;
}

.cart-remove-btn {
    margin-left: auto;
    width: 28px; height: 28px;
    border-radius: 50%;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.cart-remove-btn:hover { background: #fee2e2; color: #ef4444; }
[data-theme="dark"] .cart-remove-btn:hover { background: rgba(239,68,68,0.2); }

.cart-panel-footer {
    padding: 1.2rem 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
[data-theme="dark"] .cart-panel-footer { border-color: rgba(255,255,255,0.06); }

.cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}
.cart-total-amount { color: var(--accent-1); font-size: 1.3rem; font-weight: 800; }

.cart-checkout-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem;
}

.cart-clear-btn {
    width: 100%;
    padding: 0.7rem;
    font-size: 0.85rem;
}

/* Toast cart notification */
.cart-toast {
    position: fixed;
    bottom: 6rem;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--text-primary);
    color: var(--bg-surface);
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    white-space: nowrap;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.cart-toast.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Categories Section */
.categories {
    padding: 2rem 0 6rem;
}

.category-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.category-item {
    background: var(--bg-surface);
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: 20px;
    padding: 2rem;
    width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-decoration: none;
    color: var(--text-primary);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .category-item {
    border-color: rgba(255,255,255,0.05);
}

.category-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.1), rgba(232, 121, 249, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.category-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(108, 99, 255, 0.3);
}

.category-item:hover::before {
    opacity: 1;
}

.category-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--bg-main);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--accent-1);
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.05);
}

.category-item:hover .category-icon-wrapper {
    background: var(--accent-1);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(108, 99, 255, 0.3);
}

.animated-icon {
    transition: transform 0.4s ease;
}

.category-item:hover .animated-icon {
    animation: iconBounce 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.category-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 2;
}

.category-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
    text-align: center;
}

.large-title {
    font-size: 1.5rem !important; /* Agrandado específicamente */
}

.category-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.4;
    font-weight: 500;
}

@keyframes iconBounce {
    0% { transform: scale(1) translateY(0); }
    50% { transform: scale(1.2) translateY(-5px); }
    100% { transform: scale(1) translateY(0); }
}

/* Banner CTA */
.glass-banner {
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.05), rgba(232, 121, 249, 0.05));
    border: 1px solid rgba(108, 99, 255, 0.1);
    border-radius: 30px;
    padding: 5rem 2rem;
    text-align: center;
    margin: 6rem auto;
}

.banner-content h2 { margin-bottom: 1.5rem; font-size: 2.8rem; font-weight: 800; letter-spacing: -1px;}
.banner-content p { color: var(--text-secondary); margin-bottom: 2.5rem; font-size: 1.15rem; max-width: 600px; margin-left: auto; margin-right: auto;}

/* Footer */
footer {
    border-top: 1px solid rgba(0,0,0,0.05);
    padding: 6rem 0 2rem;
    background: var(--bg-surface);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand {
    text-align: center;
}

.footer-logo {
    height: 190px;
    margin-bottom: 1.5rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.footer-brand p { color: var(--text-secondary); line-height: 1.8; }

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.8rem;
}

.social-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(108, 99, 255, 0.08);
    border: 1px solid rgba(108, 99, 255, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--accent-1);
    transition: var(--transition);
}

.social-icon svg {
    width: 24px;
    height: 24px;
    transition: var(--transition);
}

[data-theme="dark"] .social-icon {
    background: rgba(108, 99, 255, 0.15);
    border-color: rgba(108, 99, 255, 0.25);
}

.social-icon:hover {
    background: var(--accent-1);
    color: white;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 20px rgba(108, 99, 255, 0.4);
}

.social-icon:hover svg {
    transform: scale(1.1);
}

.footer-links h4, .footer-social h4 {
    margin-bottom: 1.8rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.footer-links a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 1rem;
    transition: var(--transition);
    font-weight: 500;
}
.footer-links a:hover { color: var(--accent-1); transform: translateX(4px); }

.footer-contact .contact-item {
    margin-bottom: 1.8rem;
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
}
.footer-contact .icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(108, 99, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    color: var(--accent-1);
    transition: transform 0.3s ease, background 0.3s ease;
}
.footer-contact .contact-item:hover .icon-circle {
    transform: scale(1.1);
    background: var(--accent-1);
    color: white;
}
.footer-contact h4 {
    margin-bottom: 0.2rem;
    font-size: 1.1rem;
    font-weight: 700;
}
.footer-contact p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.05);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
    color: white;
}

.whatsapp-icon {
    width: 38px;
    height: 38px;
}

/* Libro de Reclamaciones Float */
.libro-float {
    position: fixed;
    right: 0;
    bottom: 6.5rem;
    transform: translate(100%, 0);
    opacity: 0;
    visibility: hidden;
    z-index: 998;
    background: var(--bg-surface);
    padding: 10px;
    border-radius: 12px 0 0 12px;
    box-shadow: -4px 0 15px rgba(0,0,0,0.1);
    transition: var(--transition);
    display: flex;
    justify-content: center;
    align-items: center;
}

.libro-float.show {
    transform: translate(0, 0);
    opacity: 1;
    visibility: visible;
}

[data-theme="dark"] .libro-float {
    border: 1px solid rgba(255,255,255,0.05);
    border-right: none;
}

.libro-float:hover {
    padding-right: 20px;
}

.libro-btn {
    height: 50px;
    cursor: pointer;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
}
.libro-btn:hover {
    transform: scale(1.05);
}

/* Modal Formulario */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.modal-content {
    background: var(--bg-surface);
    width: 90%;
    max-width: 600px;
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0,0,0,0.05);
    transform: translateY(20px) scale(0.95);
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

[data-theme="dark"] .modal-content {
    border-color: rgba(255,255,255,0.05);
}

.modal-overlay.active .modal-content {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    font-size: 2rem;
    line-height: 1;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color 0.2s;
}
.modal-close:hover { color: var(--accent-1); }

.modal-header h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}
.modal-header p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.2rem;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: var(--text-secondary);
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    background: var(--bg-main);
    border: 1px solid rgba(0,0,0,0.1);
    color: var(--text-primary);
    padding: 0.8rem 1rem;
    border-radius: 12px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.2s;
}

[data-theme="dark"] .form-group input, 
[data-theme="dark"] .form-group select, 
[data-theme="dark"] .form-group textarea {
    border-color: rgba(255,255,255,0.1);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--accent-1);
    box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.1);
}

.submit-btn {
    width: 100%;
    margin-top: 1rem;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-text h1 { font-size: 3.5rem; }
    .hero-content { gap: 2rem; }
    .nav-links { gap: 1.5rem; }
}

@media (max-width: 768px) {
    .hero { min-height: auto; padding-top: 140px; }
    .hero-content { grid-template-columns: 1fr; text-align: center; gap: 4rem; }
    .hero-text p { margin: 0 auto 2.5rem; }
    .hero-buttons { justify-content: center; flex-direction: column; gap: 1rem; }
    
    .menu-toggle { display: block !important; }
    .nav-links { 
        display: flex; 
        flex-direction: column; 
        position: absolute; 
        top: 100%; 
        left: 0; 
        width: 100%; 
        background: var(--bg-surface); 
        padding: 2rem; 
        box-shadow: var(--shadow-md);
        transform: translateY(-20px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .floating-controls {
        top: auto;
        bottom: 2rem;
        right: 50%;
        transform: translateX(50%);
        flex-direction: row;
        padding: 0.8rem 1.5rem;
        border-radius: 50px;
    }
    
    .floating-card { max-width: 320px; }
    .card-solid { padding: 1.5rem; }
    .card-solid h3 { font-size: 2rem; }
    
    .footer-content { grid-template-columns: 1fr 1fr; gap: 2.5rem;}
    .blob { width: 300px; height: 300px; }
    
    .form-row { grid-template-columns: 1fr; gap: 0; }
}

@media (max-width: 480px) {
    .section-title { font-size: 2.2rem; }
    .hero-text h1 { font-size: 2.8rem; }
    .banner-content h2 { font-size: 2rem; }
    
    .glass-banner { padding: 3rem 1.5rem; }
    
    .category-item { width: 100%; max-width: 320px; }
    
    .footer-content { grid-template-columns: 1fr; gap: 2rem; text-align: center;}
    .footer-contact .contact-item { flex-direction: column; align-items: center; text-align: center; }
    .footer-links a:hover { transform: translateY(-2px); }
    .logo { font-size: 1.2rem; }
    
    .cart-panel { width: 100%; }
}

/* Modal Configurador */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}
.modal-content {
    background: var(--bg-surface);
    width: 90%;
    max-width: 500px;
    border-radius: 16px;
    padding: 2rem;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}
.modal-overlay.active .modal-content {
    transform: translateY(0);
}
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}
.modal-header h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin: 0;
}
.close-btn {
    background: none;
    border: none;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}
.close-btn:hover {
    color: var(--accent-1);
}
.form-group {
    margin-bottom: 1rem;
}
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-primary);
}
.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    background: var(--bg-surface);
    color: var(--text-primary);
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: 'Inter', sans-serif;
}
[data-theme="dark"] .form-control {
    border-color: rgba(255,255,255,0.1);
    background: rgba(0,0,0,0.2);
}
.form-control:focus {
    outline: none;
    border-color: var(--accent-1);
}
