/* ============================================================
   EXTENSIONES SHOP — Design System v3 LUXURY EDITION
   Framework: Bootstrap 5 + CSS Custom Properties
   Tema: LUXURY ROSA VIBRANTE — Rosa Llamativo + Dorados + Negro Puro
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400&family=DM+Sans:wght@300;400;500;600;700;800&display=swap');

/* ── CSS Variables ────────────────────────────────────────── */
:root {
  /* Colores - LUXURY ROSA VIBRANTE */
  --rose:         #E91E63;    /* Rosa Llamativo Profundo */
  --rose-light:   #F06292;    /* Rosa Claro */
  --rose-pale:    #FCE4EC;    /* Fondo Rosa muy pálido */
  --rose-deep:    #C2185B;    /* Rosa Oscuro */
  --rose-vibrant: #FF1493;    /* Rosa Ultra Vibrante */
  --gold:         #D4AF37;    /* Dorado Clásico */
  --gold-light:   #F0C968;    /* Dorado Claro */
  --black-pure:   #000000;    /* Negro Puro */
  --white:        #FFFFFF;
  --off-white:    #F8F8F8;
  --ink:          #1A1A1A;    /* Negro muy oscuro */
  --ink-light:    #333333;    /* Gris muy oscuro */
  --muted:        #757575;
  --border:       #F0F0F0;
  --border-dark:  #E0E0E0;

  /* Tipografía */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  /* Espaciado */
  --header-h:     72px;
  --section-gap:  clamp(64px, 8vw, 120px);
  --inner-max:    1280px;
  --inner-pad:    clamp(16px, 5vw, 80px);

  /* Sombras LUXURY */
  --shadow-sm:    0 2px 8px rgba(233, 30, 99, 0.08);
  --shadow-md:    0 8px 28px rgba(233, 30, 99, 0.12);
  --shadow-lg:    0 16px 48px rgba(233, 30, 99, 0.16);
  --shadow-rose:  0 12px 48px rgba(233, 30, 99, 0.35);
  --shadow-glow:  0 0 40px rgba(233, 30, 99, 0.25), 0 0 20px rgba(233, 30, 99, 0.15);
  --shadow-gold:  0 12px 40px rgba(212, 175, 55, 0.25);

  /* Transiciones */
  --ease:         cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring:  cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth:  cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
input, button { font-family: inherit; }
button { cursor: pointer; border: none; background: none; }

/* ── App Shell ────────────────────────────────────────────── */
.app-shell { display: flex; flex-direction: column; min-height: 100vh; }
.main-content {
    flex: 1;
     /*padding-top: var(--header-h);*/
}

/* ================================================================
   PAGE HEADER - ESTILO GLOBAL BOLD
   ================================================================ */
.page-header {
  background: linear-gradient(to bottom, var(--rose-pale), var(--white));
  padding: 48px 0 56px;
  text-align: center;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 20px;
  font-weight: 600;
}

.breadcrumb-link {
  color: var(--rose);
  transition: color .2s;
  font-weight: 700;
}

.breadcrumb-link:hover {
  color: var(--rose-deep);
  text-decoration: underline;
}

.breadcrumb-separator {
  color: var(--border-dark);
  font-weight: 700;
}

.breadcrumb-current {
  color: var(--ink);
  font-weight: 800;
}

.page-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 60px);
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--ink);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.page-title svg {
  color: var(--rose);
  filter: drop-shadow(0 2px 8px rgba(232, 0, 232, 0.2));
}

.page-subtitle {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink-light);
  max-width: 560px;
  margin: 0 auto;
}

/* ================================================================
   HEADER ESTILO LUXURY
   ================================================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 3px solid var(--rose);
    width: 100%;
    box-shadow: var(--shadow-md);
}

/* 1. Top Bar - LUXURY */
.header-top-bar {
    background: linear-gradient(90deg, var(--rose) 0%, var(--rose-vibrant) 100%);
    color: var(--white);
    text-align: center;
    padding: 10px 15px;
    font-size: 11px;
    font-family: var(--font-body, sans-serif);
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    box-shadow: var(--shadow-rose);
    position: relative;
    overflow: hidden;
}

.header-top-bar::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 20, 147, 0.3) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -30px); }
}

/* 2. Main Row */
.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    padding: 0 32px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Logo - LUXURY */
.brand-logo {
    text-decoration: none;
    margin: 0;
    transition: transform 0.3s var(--ease-spring);
    position: relative;
}

.brand-logo:hover {
    transform: scale(1.03);
}

.logo-text {
    font-family: var(--font-display, serif);
    font-size: 28px;
    font-weight: 900;
    color: var(--ink);
    letter-spacing: -0.02em;
    margin: 0;
    background: linear-gradient(135deg, var(--ink) 0%, var(--rose) 50%, var(--ink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-highlight {
    color: var(--rose);
    -webkit-text-fill-color: var(--rose);
    font-weight: 900;
}

/* Center Nav - LUXURY */
.nav-center {
    display: flex;
    gap: 48px;
    align-items: center;
}

.nav-link {
    color: var(--ink);
    text-decoration: none;
    font-family: var(--font-body, sans-serif);
    font-size: 14px;
    font-weight: 800;
    transition: all 0.3s var(--ease-smooth);
    border-bottom: 3px solid transparent;
    padding-bottom: 6px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--rose), var(--rose-vibrant));
    transition: width 0.3s var(--ease-smooth);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-link:hover, .nav-link.active {
    color: var(--rose);
}

/* Actions & Search */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.search-box {
    display: flex;
    align-items: center;
    background: var(--off-white);
    border-radius: 28px;
    padding: 10px 18px;
    border: 2px solid var(--border);
    transition: all 0.3s var(--ease-smooth);
}

.search-box:focus-within {
    border-color: var(--rose);
    background: var(--white);
    box-shadow: var(--shadow-rose);
}

.search-input {
    border: none;
    background: transparent;
    padding: 0 0 0 12px;
    font-size: 14px;
    width: 200px;
    outline: none;
    font-family: var(--font-body, sans-serif);
    font-weight: 600;
    color: var(--ink);
}

.search-icon {
    color: var(--rose);
}

/* Hamburger Menu */
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--ink);
    border-radius: 1px;
    transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translateY(10px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translateY(-10px);
}

/* Backdrop para drawer mobile */
.mobile-drawer::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.mobile-drawer.open::before {
    opacity: 1;
    pointer-events: all;
}

/* Iconos - LUXURY */
.icon-btn {
    background: transparent;
    border: none;
    color: var(--ink);
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease-spring);
    position: relative;
}

.icon-btn:hover {
    color: var(--rose);
    background-color: rgba(233, 30, 99, 0.08);
    transform: scale(1.1);
}

/* Botón Admin */
.admin-btn {
    color: var(--gold);
}

.admin-btn:hover {
    color: var(--gold-light);
    background-color: rgba(212, 175, 55, 0.1);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

/* Cart Badge - LUXURY */
.cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: linear-gradient(135deg, var(--rose) 0%, var(--rose-vibrant) 100%);
    color: var(--white);
    font-size: 10px;
    font-weight: 900;
    height: 22px;
    min-width: 22px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
    border: 2px solid var(--white);
    box-shadow: var(--shadow-rose);
}

/* 3. Categories Bar */
.header-categories {
    border-top: 1px solid var(--border);
    background: var(--white);
}

.categories-scroll {
    display: flex;
    align-items: center;
    gap: 24px;
    height: 40px;
    padding: 0 24px;
    max-width: 1400px;
    margin: 0 auto;
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
}

    .categories-scroll::-webkit-scrollbar {
        display: none; /* Chrome/Safari */
    }

.cat-link {
    color: var(--muted);
    text-decoration: none;
    font-size: 11px;
    font-family: var(--font-body, sans-serif);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
    transition: color 0.2s;
}

    .cat-link:hover {
        color: var(--rose);
    }

/* Responsive Utilities */
.hidden-desktop {
    display: none;
}

@media (max-width: 968px) {
    .hidden-mobile {
        display: none !important;
    }

    .hidden-desktop {
        display: flex;
    }

    .header-main {
        padding: 0 16px;
        height: 60px;
    }

    .logo-text {
        font-size: 20px;
    }

    .header-top-bar {
        padding: 8px 12px;
        font-size: 10px;
    }

    .header-actions {
        gap: 8px;
    }

    .icon-btn {
        padding: 6px;
    }

    .search-input {
        width: auto;
    }
}




/* ================================================================
   4. MOBILE DRAWER (Menú lateral oculto)
   ================================================================ */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%; /* Lo esconde fuera de la pantalla por la derecha */
    width: 300px;
    max-width: 80vw;
    height: 100vh;
    background: var(--white);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.05);
    padding: 80px 24px 24px; /* Padding superior grande para no tapar el top-bar */
    transition: right 0.3s ease-in-out;
    z-index: 40; /* Se queda justo por debajo de la cabecera sticky */
    display: flex;
    flex-direction: column;
    gap: 24px;
}

    /* Cuando la variable de Blazor _mobileOpen es true, le pone la clase open */
    .mobile-drawer.open {
        right: 0;
    }

/* Estilos internos del menú móvil */
.mobile-search {
    display: flex;
    align-items: center;
    background: var(--off-white);
    border: 1px solid var(--border-dark);
    border-radius: 8px;
    padding: 10px 14px;
    gap: 10px;
}

    .mobile-search .search-input {
        border: none;
        background: transparent;
        width: 100%;
        outline: none;
        font-family: var(--font-body, sans-serif);
        font-size: 14px;
    }

.mobile-nav {
    display: flex;
    flex-direction: column;
}

.mobile-nav-link {
    color: var(--ink);
    text-decoration: none;
    font-family: var(--font-body, sans-serif);
    font-size: 16px;
    font-weight: 500;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    transition: color 0.2s;
}

    .mobile-nav-link:hover {
        color: var(--rose);
    }


/* =========================================
   HERO BANNER LOVABLE STYLE
   ========================================= */
.hero-banner-section {
    padding: 0 20px;
    margin-bottom: 40px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
}

.hero-banner-wrapper {
    position: relative;
    height: 340px;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

@media (min-width: 768px) {
    .hero-banner-wrapper {
        height: 400px;
    }
}

.hero-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* El truco del gradiente de Lovable traducido a CSS puro */
    background: linear-gradient(to right, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    z-index: 2;
}

.hero-banner-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 0 32px;
    max-width: 600px;
}

@media (min-width: 768px) {
    .hero-banner-content {
        padding: 0 48px;
    }
}

.hero-banner-eyebrow {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    font-family: var(--font-body, sans-serif);
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.hero-banner-title {
    font-family: var(--font-display, serif);
    font-size: 32px;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin: 0 0 12px 0;
}

@media (min-width: 768px) {
    .hero-banner-title {
        font-size: 40px;
    }
}

.hero-banner-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-family: var(--font-body, sans-serif);
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.hero-banner-actions {
    display: flex;
    justify-content: space-around;
    margin-top:20px;
}

/* Botón secundario transparente con borde blanco */
.btn-outline-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: white;
    background: transparent;
    border-radius: 8px; /* Ajusta esto si tus botones son más redondeados */
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
}

    .btn-outline-light:hover {
        background: rgba(255, 255, 255, 0.1);
        color: white;
        border-color: white;
    }

/* ================================================================
   BUTTONS - LUXURY EDITION
   ================================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-vibrant) 100%);
  color: white;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .08em;
  padding: 16px 36px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.4s var(--ease-spring);
  box-shadow: var(--shadow-rose);
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  transition: all 0.4s;
  opacity: 0;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--rose-deep) 0%, var(--rose) 100%);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 60px rgba(233, 30, 99, 0.45);
}

.btn-primary:hover::before {
  opacity: 1;
  animation: shine 0.6s;
}

@keyframes shine {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

.btn-primary:active { transform: translateY(-2px); }
.btn-primary svg { transition: transform .3s var(--ease); }
.btn-primary:hover svg { transform: translateX(6px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  padding: 14px 28px;
  border-radius: 12px;
  border: 2px solid var(--rose);
  transition: all 0.3s var(--ease-smooth);
  background: transparent;
}

.btn-ghost:hover { 
  border-color: var(--rose); 
  color: var(--white); 
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-vibrant) 100%);
  box-shadow: var(--shadow-rose);
  transform: translateY(-3px);
}

/* ================================================================
   FEATURES STRIP
   ================================================================ */
.features-strip {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}
.features-inner {
  max-width: var(--inner-max);
  margin: 0 auto;
  padding: 0 var(--inner-pad);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.feature-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 32px;
  color: var(--ink);
}
.feature-item svg { color: var(--rose); flex-shrink: 0; }
.feature-item strong { display: block; font-size: 14px; font-weight: 600; }
.feature-item span { font-size: 12.5px; color: var(--muted); }
.feature-divider {
  width: 1px; height: 40px;
  background: var(--border-dark);
  flex-shrink: 0;
}

/* ================================================================
   CATEGORIES SECTION
   ================================================================ */
.categories-section { padding: var(--section-gap) 0; }
.section-inner {
  max-width: var(--inner-max);
  margin: 0 auto;
/*  padding: 0 var(--inner-pad);*/
}
.section-header { text-align: center; margin-bottom: 48px; }
.section-eyebrow {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--rose);
  display: block;
  margin-bottom: 20px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 60px);
  font-weight: 800;
  letter-spacing: -.025em;
  color: var(--ink);
}

.categories-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  height: 520px;
}
.categories-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.category-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  flex: 1;
}
.cat-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(145deg, var(--rose-pale), #F5DDE4);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  color: var(--muted);
  font-size: 13px;
  transition: transform .5s var(--ease);
}
.category-card:hover .cat-img-placeholder { transform: scale(1.04); }
.cat-overlay {
  position: absolute;
  inset: 0;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(to top, rgba(26,18,21,.5) 0%, transparent 60%);
  color: white;
}
.cat-overlay h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 300;
  letter-spacing: -.01em;
}
.cat-overlay p { font-size: 13px; opacity: .8; margin-top: 4px; }
.cat-cta {
  margin-top: 12px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .06em;
  color: rgba(255,255,255,.9);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s, transform .3s;
}
.category-card:hover .cat-cta { opacity: 1; transform: translateY(0); }

/* ✅ Tamaños de categorías destacadas */
.cat-large {
  grid-column: 1;
  grid-row: 1 / 3;
  max-height: 520px;
}

.cat-small {
  flex: 1;
  max-height: 252px;
}

/* ================================================================
   CTA BANNER - LUXURY
   ================================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--black-pure) 0%, #1a1a1a 100%);
  padding: var(--section-gap) 0;
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--rose);
  border-bottom: 4px solid var(--rose);
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(233, 30, 99, 0.3) 0%, transparent 70%);
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -20%;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
}
.cta-inner {
  max-width: var(--inner-max);
  margin: 0 auto;
  padding: 0 var(--inner-pad);
  position: relative;
}
.cta-content { max-width: 600px; }
.cta-eyebrow {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 24px;
  letter-spacing: 0.15em;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 68px);
  font-weight: 800;
  line-height: 1.05;
  color: white;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.cta-title em { 
  font-style: italic; 
  color: var(--rose);
  text-shadow: 0 0 30px rgba(233, 30, 99, 0.4);
}
.cta-text { 
  font-size: 17px; 
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8); 
  margin-bottom: 40px;
  line-height: 1.8;
}

.cta-input-group {
  display: flex;
  gap: 12px;
  max-width: 440px;
}
.cta-email-input {
  flex: 1;
  padding: 14px 20px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.07);
  color: white;
  font-size: 14px;
  outline: none;
  transition: border-color .2s;
}
.cta-email-input::placeholder { color: rgba(255,255,255,.35); }
.cta-email-input:focus { border-color: var(--rose-light); }


/* ================================================================
   SIDEBAR DE FILTROS (LUXURY STYLE)
   ================================================================ */
.lovable-sidebar {
    width: 256px; 
    flex-shrink: 0;
    position: sticky;
    top: 145px; 
    height: calc(100vh - 145px);
    overflow-y: auto;
    background: linear-gradient(135deg, var(--white) 0%, var(--rose-pale) 100%);
    border-radius: 12px; 
    border: 2px solid var(--rose);
    padding: 28px;
    box-shadow: var(--shadow-lg);
}

    /* Scrollbar personalizada y fina para el sidebar */
    .lovable-sidebar::-webkit-scrollbar {
        width: 4px;
    }

    .lovable-sidebar::-webkit-scrollbar-track {
        background: transparent;
    }

    .lovable-sidebar::-webkit-scrollbar-thumb {
        background-color: var(--border-dark);
        border-radius: 10px;
    }

/* Header del Sidebar */
.sidebar-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.icon-primary {
    color: var(--rose);
}

.sidebar-title {
    font-family: var(--font-display, serif);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--ink);
    margin: 0;
}

/* Secciones de Filtro */
.filter-section {
    margin-bottom: 28px;
}

.filter-title {
    font-family: var(--font-body, sans-serif);
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 14px;
    letter-spacing: 0.02em;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 8px; /* space-y-1.5 */
}

/* Labels y Checkboxes */
.filter-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body, sans-serif);
    font-size: 0.875rem; /* text-sm */
    color: var(--ink-light);
    cursor: pointer;
    transition: color 0.2s ease;
    margin: 0;
}

    .filter-label:hover {
        color: var(--rose); /* hover:text-primary */
    }

    .filter-label input[type="checkbox"] {
        accent-color: var(--rose);
        width: 16px;
        height: 16px;
        cursor: pointer;
        border-radius: 4px;
        border: 1px solid var(--border-dark);
    }

/* Botones Inferiores */
.sidebar-actions {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.btn-cta-full {
    width: 100%;
    background: linear-gradient(135deg, var(--rose) 0%, var(--rose-vibrant) 100%);
    color: var(--white);
    border: none;
    border-radius: 8px;
    padding: 14px;
    font-family: var(--font-body, sans-serif);
    font-weight: 900;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s var(--ease-spring);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: var(--shadow-rose);
}

.btn-cta-full:hover {
    background: linear-gradient(135deg, var(--rose-deep) 0%, var(--rose) 100%);
    box-shadow: 0 16px 48px rgba(233, 30, 99, 0.4);
    transform: translateY(-3px) scale(1.02);
}

.btn-ghost-full {
    width: 100%;
    background-color: transparent;
    color: var(--muted);
    border: none;
    padding: 8px;
    font-family: var(--font-body, sans-serif);
    font-size: 13px;
    cursor: pointer;
    transition: color 0.2s;
}

    .btn-ghost-full:hover {
        color: var(--ink);
    }


/* ================================================================
   FOOTER - LUXURY
   ================================================================ */
.site-footer {
  background: linear-gradient(135deg, var(--ink) 0%, #0a0a0a 100%);
  color: rgba(255,255,255,.7);
  padding: 88px 0 0;
  font-size: 13.5px;
  border-top: 4px solid var(--rose);
  position: relative;
}

.footer-inner {
  max-width: var(--inner-max);
  margin: 0 auto;
  padding: 0 var(--inner-pad) 60px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}

@media (max-width: 479px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 var(--inner-pad) 40px;
  }
}

@media (min-width: 480px) and (max-width: 1023px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

.footer-brand .footer-logo .logo-main { color: white; }
.footer-tagline {
  font-family: var(--font-display);
  font-size: 16px;
  font-style: italic;
  color: rgba(255,255,255,.5);
  margin: 16px 0 24px;
  font-weight: 300;
}

.social-links { 
  display: flex; 
  gap: 16px;
  flex-wrap: wrap;
}

.social-btn {
  width: 48px; 
  height: 48px;
  border-radius: 50%;
  background: rgba(233, 30, 99, 0.12);
  display: flex; 
  align-items: center; 
  justify-content: center;
  color: var(--rose);
  transition: all 0.3s var(--ease-spring);
  border: 2px solid var(--rose);
  box-shadow: var(--shadow-sm);
}

.social-btn:hover {
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-vibrant) 100%);
  color: white;
  transform: translateY(-6px) scale(1.05);
  box-shadow: var(--shadow-rose);
}

@media (max-width: 479px) {
  .social-btn {
    width: 40px;
    height: 40px;
  }
}

.footer-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 20px;
}

@media (max-width: 479px) {
  .footer-title {
    font-size: 10px;
  }
}

.footer-links { 
  display: flex; 
  flex-direction: column; 
  gap: 10px; 
  padding-left: 0;
}

.footer-links a {
  color: rgba(255,255,255,.55);
  transition: color .2s;
  font-size: 13.5px;
}

@media (max-width: 479px) {
  .footer-links a {
    font-size: 13px;
  }
}

.footer-links a:hover { 
  color: var(--rose-light); 
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.contact-details p {
  color: rgba(255,255,255,.55);
  font-size: 13.5px;
  margin: 0;
}

@media (max-width: 479px) {
  .contact-details p {
    font-size: 13px;
  }
}

.trust-badges { 
  display: flex; 
  flex-direction: column; 
  gap: 10px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: rgba(255,255,255,.5);
}

.trust-item svg { 
  color: var(--rose); 
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 24px var(--inner-pad);
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
}

@media (max-width: 479px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding: 16px var(--inner-pad);
  }
}

@media (min-width: 480px) and (max-width: 1023px) {
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
  }
}

.copyright { 
  color: rgba(255,255,255,.35);
}

.legal-links {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

@media (max-width: 479px) {
  .legal-links {
    gap: 8px;
    justify-content: center;
    flex-direction: column;
    font-size: 11px;
  }
}

.legal-links a { 
  color: rgba(255,255,255,.35); 
  transition: color .2s;
}

.legal-links a:hover { 
  color: var(--rose-light); 
}

.legal-links span { 
  color: rgba(255,255,255,.2);
}

/* ================================================================
   ANIMATIONS
   ================================================================ */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ================================================================
   RESPONSIVE - MOBILE FIRST STRATEGY
   ================================================================ */

/* ─── BREAKPOINTS ─── */
/* Mobile: < 480px */
/* Tablet: 480px - 1024px */
/* Desktop: > 1024px */

/* ─── MOBILE (< 480px) ─── */
@media (max-width: 479px) {
  :root {
    --header-h: 60px;
    --section-gap: clamp(32px, 5vw, 64px);
    --inner-pad: clamp(12px, 4vw, 20px);
  }

  /* HEADER */
  .header-main {
    height: 56px;
    padding: 0 14px;
    gap: 8px;
  }

  .logo-text {
    font-size: 20px;
  }

  .nav-center {
    display: none;
  }

  .search-wrapper.hidden-mobile {
    display: none !important;
  }

  .header-actions {
    gap: 4px;
  }

  .search-box {
    display: none;
  }

  .icon-btn {
    padding: 8px;
  }

  /* PAGE HEADER */
  .page-header {
    padding: 32px 0 40px;
    margin: -16px -16px 20px -16px;
  }

  .page-title {
    font-size: clamp(28px, 7vw, 40px);
    gap: 8px;
    margin-bottom: 12px;
  }

  .page-title svg {
    width: 24px;
    height: 24px;
  }

  .breadcrumb {
    font-size: 10px;
    margin-bottom: 12px;
  }

  /* SIDEBAR */
  .lovable-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 280px;
    height: 100vh;
    z-index: 45;
    border-radius: 0;
    padding: 80px 16px 16px;
    transition: right 0.3s ease;
  }

  .lovable-sidebar.open {
    right: 0;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
  }

  /* FORMULARIOS */
  .form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .form-card {
    padding: 20px;
    gap: 24px;
  }

  .form-section {
    gap: 14px;
  }

  .section-title {
    font-size: 16px;
  }

  .form-group label {
    font-size: 13px;
  }

  /* TABLAS (Mobile: Convertir a Cards) */
  .table-wrapper {
    display: none;
  }

  .data-table {
    display: none;
  }

  .mobile-table-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .table-card-item {
    background: white;
    border: 2px solid var(--rose);
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 2px 8px rgba(233, 30, 99, 0.08);
  }

  .table-card-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--rose-pale);
  }

  .table-card-row:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }

  .table-card-label {
    font-weight: 800;
    color: var(--ink);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .table-card-value {
    font-weight: 600;
    color: var(--rose);
  }

  /* BOTONES */
  .btn-primary {
    padding: 12px 24px;
    font-size: 12px;
    border-radius: 8px;
  }

  .action-buttons {
    gap: 6px;
  }

  .btn-icon {
    padding: 6px;
  }

  /* TIPOGRAFÍA */
  body {
    font-size: 14px;
  }

  .section-eyebrow {
    font-size: 10px;
    letter-spacing: 0.3em;
  }

  .section-title {
    font-size: clamp(28px, 6vw, 40px);
  }

  /* HERO */
  .hero-banner-wrapper {
    height: 280px;
  }

  .hero-banner-content {
    padding: 0 16px;
  }

  .hero-banner-title {
    font-size: 24px;
  }

  /* IMAGES */
  .images-grid {
    grid-template-columns: 1fr;
  }

  .main-image-container {
    grid-template-columns: 1fr;
  }

  .main-image-preview {
    width: 100%;
    max-width: 200px;
    height: 200px;
  }

  /* CTA */
  .cta-title {
    font-size: clamp(32px, 8vw, 48px);
  }

  .cta-input-group {
    flex-direction: column;
  }

  /* FOOTER */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 var(--inner-pad) 40px;
  }

  .footer-title {
    font-size: 10px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding: 16px var(--inner-pad);
  }
}

/* ─── TABLET (480px - 1024px) ─── */
@media (min-width: 480px) and (max-width: 1023px) {
  :root {
    --header-h: 64px;
    --section-gap: clamp(48px, 7vw, 80px);
    --inner-pad: clamp(16px, 5vw, 40px);
  }

  /* HEADER */
  .header-main {
    height: 64px;
    padding: 0 20px;
  }

  .logo-text {
    font-size: 24px;
  }

  .nav-center {
    gap: 32px;
  }

  .nav-link {
    font-size: 13px;
  }

  .search-box {
    width: 100%;
    max-width: 240px;
  }

  .search-input {
    width: 150px;
  }

  /* PAGE HEADER */
  .page-header {
    padding: 40px 0 48px;
  }

  .page-title {
    font-size: clamp(32px, 5vw, 48px);
  }

  /* SIDEBAR */
  .lovable-sidebar {
    width: 240px;
    top: 120px;
    border-radius: 8px;
  }

  /* FORMULARIOS */
  .form-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .form-card {
    padding: 28px;
  }

  /* TABLAS */
  .table-wrapper {
    overflow-x: auto;
    border-radius: 12px;
  }

  .data-table {
    font-size: 13px;
  }

  .data-table th {
    padding: 12px 12px;
  }

  .data-table td {
    padding: 14px 12px;
  }

  /* BOTONES */
  .btn-primary {
    padding: 12px 28px;
    font-size: 12px;
  }

  /* TIPOGRAFÍA */
  body {
    font-size: 14px;
  }

  .section-title {
    font-size: clamp(32px, 5vw, 48px);
  }

  /* HERO */
  .hero-banner-wrapper {
    height: 320px;
  }

  .hero-banner-title {
    font-size: 32px;
  }

  /* IMAGES */
  .images-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .main-image-container {
    grid-template-columns: 1fr;
  }

  /* CATEGORIES */
  .categories-grid {
    grid-template-columns: 1fr;
    height: auto;
  }

  .categories-right {
    flex-direction: column;
  }

  /* FOOTER */
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

/* ─── DESKTOP (> 1024px) ─── */
@media (min-width: 1024px) {
  /* HEADER */
  .header-main {
    height: 72px;
    padding: 0 32px;
  }

  .logo-text {
    font-size: 28px;
  }

  .nav-center {
    gap: 48px;
  }

  .nav-link {
    font-size: 14px;
  }

  .search-input {
    width: 200px;
  }

  /* PAGE HEADER */
  .page-header {
    padding: 56px 0 64px;
  }

  .page-title {
    font-size: clamp(42px, 6vw, 60px);
  }

  /* SIDEBAR */
  .lovable-sidebar {
    width: 256px;
    top: 145px;
  }

  /* FORMULARIOS */
  .form-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .form-card {
    padding: 36px;
  }

  /* IMAGES */
  .images-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }

  .main-image-container {
    grid-template-columns: 1fr 250px;
  }

  /* CATEGORIES */
  .categories-grid {
    grid-template-columns: 1fr 1fr;
    height: 520px;
  }

  .categories-right {
    flex-direction: column;
  }

  /* FOOTER */
  .footer-inner {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
  }
}

/* ─── LARGE DESKTOP (> 1440px) ─── */
@media (min-width: 1440px) {
  :root {
    --inner-pad: 80px;
    --section-gap: 120px;
  }

  .section-title {
    font-size: 60px;
  }

  .page-title {
    font-size: 60px;
  }

  .cta-title {
    font-size: 68px;
  }
}

/* ================================================================
   RESPONSIVE - PRODUCTOS PAGE
   ================================================================ */

/* MOBILE - Productos */
@media (max-width: 479px) {
  .productos-layout {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .lovable-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: calc(100% - 40px);
    height: 100vh;
    z-index: 999;
    border-radius: 0;
    padding: 80px 16px 16px;
    overflow-y: auto;
    transition: right 0.3s ease;
  }

  .lovable-sidebar.open {
    right: 0;
  }

  .productos-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .product-card {
    border-radius: 12px;
  }

  .product-image {
    height: 240px;
  }

  .filter-title-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    background: none;
    border: none;
    border-bottom: 2px solid var(--rose);
    color: var(--ink);
    font-weight: 800;
    cursor: pointer;
  }

  .collapse-icon {
    transform: rotate(0deg);
    transition: transform 0.3s ease;
  }

  .collapse-icon.expanded {
    transform: rotate(-180deg);
  }
}

/* TABLET - Productos */
@media (min-width: 480px) and (max-width: 1023px) {
  .productos-layout {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .lovable-sidebar {
    width: 240px;
    position: relative;
    height: auto;
    top: 0;
    border-radius: 8px;
  }

  .productos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .product-card {
    border-radius: 12px;
  }

  .product-image {
    height: 280px;
  }
}

/* DESKTOP - Productos */
@media (min-width: 1024px) {
  .productos-layout {
    display: flex;
    gap: 32px;
  }

  .lovable-sidebar {
    width: 256px;
    flex-shrink: 0;
  }

  .productos-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    flex: 1;
  }

  .product-card {
    border-radius: 16px;
  }

  .product-image {
    height: 320px;
  }
}

/* ================================================================
   RESPONSIVE - CARRITO
   ================================================================ */

/* MOBILE - Carrito */
@media (max-width: 479px) {
  .carrito-layout {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .carrito-items {
    order: 2;
  }

  .carrito-summary {
    order: 1;
  }

  .cart-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px;
    border-radius: 12px;
  }

  .item-image {
    width: 100%;
    height: 200px;
  }

  .item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
  }

  .item-quantity,
  .item-subtotal,
  .item-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .quantity-label,
  .subtotal-label,
  .price-label {
    font-weight: 600;
    font-size: 12px;
  }

  .quantity-controls {
    display: flex;
    gap: 6px;
    align-items: center;
  }

  .qty-input {
    width: 50px;
    text-align: center;
  }

  .carrito-summary {
    padding: 20px;
    border-radius: 12px;
  }
}

/* TABLET - Carrito */
@media (min-width: 480px) and (max-width: 1023px) {
  .carrito-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 24px;
  }

  .cart-item {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 16px;
    border-radius: 12px;
  }

  .item-image {
    width: 120px;
    height: 120px;
    grid-column: 1;
  }

  .item-info {
    grid-column: 2;
  }

  .item-remove {
    grid-column: 3;
    grid-row: 1 / 3;
  }

  .item-quantity,
  .item-price,
  .item-subtotal {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .carrito-summary {
    height: fit-content;
    padding: 24px;
    border-radius: 12px;
  }
}

/* DESKTOP - Carrito */
@media (min-width: 1024px) {
  .carrito-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 32px;
  }

  .cart-item {
    display: grid;
    grid-template-columns: 140px 1fr 100px 120px 100px auto;
    gap: 16px;
    align-items: center;
    padding: 20px;
    border-radius: 16px;
  }

  .item-image {
    width: 140px;
    height: 140px;
  }

  .carrito-summary {
    height: fit-content;
    position: sticky;
    top: 150px;
    padding: 28px;
    border-radius: 16px;
  }
}

/* ================================================================
   RESPONSIVE - CHECKOUT
   ================================================================ */

/* MOBILE - Checkout */
@media (max-width: 479px) {
  .checkout-layout {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .checkout-form {
    order: 2;
  }

  .checkout-summary {
    order: 1;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .payment-methods {
    flex-direction: column;
    gap: 12px;
  }

  .payment-option {
    padding: 16px;
  }
}

/* TABLET - Checkout */
@media (min-width: 480px) and (max-width: 1023px) {
  .checkout-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 24px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .payment-methods {
    flex-direction: column;
    gap: 12px;
  }

  .checkout-summary {
    height: fit-content;
  }
}

/* DESKTOP - Checkout */
@media (min-width: 1024px) {
  .checkout-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 32px;
  }

  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .payment-methods {
    flex-direction: row;
    gap: 16px;
  }

  .checkout-summary {
    height: fit-content;
    position: sticky;
    top: 150px;
  }
}

/* ================================================================
   RESPONSIVE - HERO & HOME
   ================================================================ */

/* MOBILE - Hero & Features */
@media (max-width: 479px) {
  .hero-banner-section {
    padding: 0 12px;
    margin-bottom: 24px;
  }

  .hero-banner-wrapper {
    height: 280px;
    border-radius: 12px;
  }

  .hero-banner-content {
    padding: 0 16px;
  }

  .hero-banner-title {
    font-size: 22px;
    margin-bottom: 8px;
  }

  .hero-banner-subtitle {
    font-size: 13px;
    margin-bottom: 16px;
  }

  .hero-banner-actions {
    flex-direction: column;
    gap: 12px;
  }

  .social-links {
    flex-direction: row;
    gap: 8px;
  }

  .social-btn {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .features-strip {
    padding: 20px 0;
  }

  .features-inner {
    flex-direction: column;
    gap: 20px;
  }

  .feature-item {
    padding: 0;
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .feature-divider {
    display: none;
  }

  .categories-grid {
    grid-template-columns: 1fr;
    height: auto;
    gap: 12px;
  }

  .categories-right {
    flex-direction: column;
    gap: 12px;
  }

  .cat-large,
  .cat-small {
    max-height: 240px;
    grid-column: 1;
  }

  .cat-overlay h3 {
    font-size: 18px;
  }

  .cat-overlay p {
    font-size: 12px;
  }
}

/* TABLET - Hero & Features */
@media (min-width: 480px) and (max-width: 1023px) {
  .hero-banner-wrapper {
    height: 320px;
    border-radius: 12px;
  }

  .hero-banner-content {
    padding: 0 24px;
  }

  .hero-banner-title {
    font-size: 28px;
  }

  .features-strip {
    padding: 28px 0;
  }

  .features-inner {
    flex-direction: column;
    gap: 20px;
  }

  .feature-item {
    gap: 12px;
  }

  .feature-divider {
    display: none;
  }

  .categories-grid {
    grid-template-columns: 1fr;
    height: auto;
    gap: 16px;
  }

  .categories-right {
    flex-direction: row;
    gap: 16px;
  }

  .cat-large {
    grid-column: 1;
    grid-row: auto;
    max-height: 300px;
  }

  .cat-small {
    max-height: auto;
    flex: 1;
  }

  .cat-overlay h3 {
    font-size: 20px;
  }
}

/* DESKTOP - Hero & Features */
@media (min-width: 1024px) {
  .hero-banner-wrapper {
    height: 400px;
    border-radius: 16px;
  }

  .hero-banner-content {
    padding: 0 48px;
  }

  .hero-banner-title {
    font-size: 40px;
  }

  .features-strip {
    padding: 32px 0;
  }

  .features-inner {
    flex-direction: row;
    gap: 0;
  }

  .feature-item {
    padding: 0 32px;
  }

  .feature-divider {
    display: block;
  }

  .categories-grid {
    grid-template-columns: 1fr 1fr;
    height: 520px;
    gap: 16px;
  }

  .categories-right {
    flex-direction: column;
    gap: 16px;
  }

  .cat-large {
    grid-column: 1;
    grid-row: 1 / 3;
  }

  .cat-small {
    flex: 1;
  }

  .cat-overlay h3 {
    font-size: 28px;
  }
}

/* ================================================================
   RESPONSIVE - ADMIN PAGES
   ================================================================ */

/* MOBILE - Admin */
@media (max-width: 479px) {
  .admin-header {
    flex-direction: column;
    gap: 12px;
    padding: 16px;
  }

  .table-wrapper {
    border-radius: 8px;
  }

  .data-table {
    font-size: 12px;
  }

  .data-table th,
  .data-table td {
    padding: 8px 4px;
  }

  .action-buttons {
    flex-direction: column;
    gap: 6px;
  }

  .btn-icon {
    padding: 6px;
    font-size: 12px;
  }

  .modal-dialog {
    width: calc(100% - 32px);
    max-width: none;
    margin: 16px 16px;
  }

  .form-card {
    padding: 16px;
    gap: 12px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}

/* TABLET - Admin */
@media (min-width: 480px) and (max-width: 1023px) {
  .admin-header {
    flex-direction: row;
    gap: 16px;
    flex-wrap: wrap;
  }

  .data-table {
    font-size: 13px;
  }

  .data-table th,
  .data-table td {
    padding: 12px;
  }

  .action-buttons {
    flex-direction: row;
    gap: 8px;
    flex-wrap: wrap;
  }

  .modal-dialog {
    width: calc(100% - 40px);
    max-width: 600px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}

/* DESKTOP - Admin */
@media (min-width: 1024px) {
  .admin-header {
    flex-direction: row;
    gap: 24px;
    justify-content: space-between;
  }

  .data-table {
    font-size: 14px;
  }

  .data-table th,
  .data-table td {
    padding: 14px;
  }

  .action-buttons {
    flex-direction: row;
    gap: 8px;
  }

  .modal-dialog {
    width: auto;
    max-width: 90vw;
  }

  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ================================================================
   RESPONSIVE - INFO PAGES (Envíos, Cookies, etc)
   ================================================================ */

/* MOBILE - Info Pages */
@media (max-width: 479px) {
  .content-wrapper {
    padding: 20px;
    border-radius: 12px;
    margin: 16px;
  }

  .content-wrapper h2 {
    font-size: 20px;
    margin: 24px 0 16px;
  }

  .content-wrapper h3 {
    font-size: 16px;
    margin: 20px 0 12px;
  }

  .content-wrapper p,
  .content-wrapper ul,
  .content-wrapper ol {
    font-size: 14px;
  }

  .info-box {
    padding: 16px;
    margin: 20px 0;
  }
}

/* TABLET - Info Pages */
@media (min-width: 480px) and (max-width: 1023px) {
  .content-wrapper {
    padding: 32px;
    border-radius: 12px;
  }

  .content-wrapper h2 {
    font-size: 24px;
    margin: 32px 0 16px;
  }

  .content-wrapper h3 {
    font-size: 18px;
    margin: 24px 0 12px;
  }

  .content-wrapper p,
  .content-wrapper ul,
  .content-wrapper ol {
    font-size: 14px;
  }

  .info-box {
    padding: 20px;
    margin: 24px 0;
  }
}

/* DESKTOP - Info Pages */
@media (min-width: 1024px) {
  .content-wrapper {
    padding: 48px;
    border-radius: 20px;
  }

  .content-wrapper h2 {
    font-size: 28px;
    margin: 48px 0 20px;
  }

  .content-wrapper h3 {
    font-size: 20px;
    margin: 32px 0 16px;
  }

  .content-wrapper p,
  .content-wrapper ul,
  .content-wrapper ol {
    font-size: 15px;
  }

  .info-box {
    padding: 24px;
    margin: 32px 0;
  }
}

/* ================================================================
   RESPONSIVE - DETALLE PRODUCTO
   ================================================================ */

/* MOBILE - Detalle Producto */
@media (max-width: 479px) {
  .producto-detail-layout {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .producto-images {
    width: 100%;
  }

  .producto-info {
    width: 100%;
  }

  .galeria-principal {
    height: 280px;
    border-radius: 12px;
  }

  .galeria-thumbnails {
    gap: 8px;
    margin-top: 12px;
  }

  .thumbnail {
    width: 60px;
    height: 60px;
    border-radius: 8px;
  }

  .variants-section {
    flex-direction: column;
    gap: 12px;
  }

  .variant-option {
    padding: 12px;
  }

  .form-group {
    gap: 8px;
  }

  .action-group {
    flex-direction: column;
    gap: 12px;
  }
}

/* TABLET - Detalle Producto */
@media (min-width: 480px) and (max-width: 1023px) {
  .producto-detail-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .galeria-principal {
    height: 320px;
    border-radius: 12px;
  }

  .galeria-thumbnails {
    gap: 10px;
  }

  .thumbnail {
    width: 70px;
    height: 70px;
  }

  .variants-section {
    flex-direction: column;
    gap: 14px;
  }

  .action-group {
    flex-direction: column;
    gap: 12px;
  }
}

/* DESKTOP - Detalle Producto */
@media (min-width: 1024px) {
  .producto-detail-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .galeria-principal {
    height: 500px;
    border-radius: 16px;
  }

  .galeria-thumbnails {
    gap: 12px;
  }

  .thumbnail {
    width: 80px;
    height: 80px;
  }

  .variants-section {
    flex-direction: row;
    gap: 16px;
    flex-wrap: wrap;
  }

  .action-group {
    flex-direction: row;
    gap: 16px;
  }
}

/* ================================================================
   RESPONSIVE - FORMULARIOS GENERALES
   ================================================================ */

/* MOBILE - Forms */
@media (max-width: 479px) {
  .form-group {
    margin-bottom: 12px;
  }

  .form-group label {
    font-size: 12px;
    margin-bottom: 6px;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    font-size: 14px;
    padding: 10px 12px;
    border-radius: 6px;
  }

  .input-error {
    font-size: 11px;
  }

  .checkbox-group,
  .radio-group {
    gap: 10px;
  }

  .checkbox-item,
  .radio-item {
    font-size: 13px;
  }

  .form-actions {
    flex-direction: column;
    gap: 12px;
  }

  .btn-primary,
  .btn-ghost {
    width: 100%;
    padding: 12px 16px;
    font-size: 12px;
  }
}

/* TABLET - Forms */
@media (min-width: 480px) and (max-width: 1023px) {
  .form-group {
    margin-bottom: 16px;
  }

  .form-group label {
    font-size: 13px;
    margin-bottom: 8px;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    font-size: 14px;
    padding: 12px 14px;
    border-radius: 8px;
  }

  .form-actions {
    flex-direction: row;
    gap: 12px;
  }

  .btn-primary,
  .btn-ghost {
    flex: 1;
    padding: 12px 24px;
    font-size: 13px;
  }
}

/* DESKTOP - Forms */
@media (min-width: 1024px) {
  .form-group {
    margin-bottom: 20px;
  }

  .form-group label {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    font-size: 14px;
    padding: 12px 16px;
    border-radius: 8px;
  }

  .form-actions {
    flex-direction: row;
    gap: 16px;
    justify-content: flex-start;
  }

  .btn-primary,
  .btn-ghost {
    padding: 14px 36px;
    font-size: 14px;
  }
}

/* ================================================================
   UTILITY - RESPONSIVE VISIBILITY
   ================================================================ */

.show-mobile {
  display: block;
}

.show-tablet {
  display: none;
}

.show-desktop {
  display: none;
}

@media (min-width: 480px) {
  .show-mobile {
    display: none;
  }

  .show-tablet {
    display: block;
  }
}

@media (min-width: 1024px) {
  .show-tablet {
    display: none;
  }

  .show-desktop {
    display: block;
  }
}

