/*
===========================================
  PREMIUM LIFESTYLE ECOMMERCE THEME
  Inspired by: Apple, Skims, LELO, Sephora
===========================================
*/

/* --- GLOBAL VARS & TYPOGRAPHY --- */
:root {
  --premium-black: #0a0a0a;
  --premium-dark-gray: #1a1a1a;
  --premium-gray: #333333;
  --premium-light-gray: #f5f5f5;
  --premium-white: #ffffff;
  --premium-beige: #f4f0eb;
  --premium-wine: #4a000f; /* Dark elegant wine/burgundy */
  --premium-accent: #c4a77d; /* Soft warm gold/sand */

  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Inter', sans-serif;

  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-soft: 0 10px 30px rgba(0,0,0,0.05);
  --shadow-elegant: 0 20px 40px rgba(0,0,0,0.08);
}

body, h1, h2, h3, h4, h5, h6, p, a, div, span {
  font-family: var(--font-secondary);
}

h1, h2, h3, h4, .h1-style, .h2-style, .h3-style {
  font-family: var(--font-primary);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--premium-black);
}

.page-content {
  background-color: var(--premium-white);
}

/* --- HEADER / NAVBAR PREMIUM (TRANSPARENT ON HOME) --- */

/* Base header styles */
.hdr-wrap {
  background-color: var(--premium-black);
  transition: var(--transition-smooth);
}
.hdr-wrap .hdr {
  background-color: transparent !important;
}

.hdr-topline {
  background-color: var(--premium-dark-gray) !important;
  color: var(--premium-white);
  font-family: var(--font-secondary);
  font-size: 12px;
  letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.hdr-content {
  padding-top: 15px;
  padding-bottom: 15px;
  transition: var(--transition-smooth);
}

/* Home Page specific transparent header */
.is-home-page .hdr-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: transparent;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.is-home-page .hdr-topline {
  background-color: transparent !important;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

/* Header Text & Links */
.hdr-wrap .mmenu-js > li > a {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--premium-white) !important;
  transition: var(--transition-smooth);
  position: relative;
}

.hdr-wrap .mmenu-js > li > a:hover {
  opacity: 0.7;
}

.hdr-wrap .mmenu-js > li > a::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background-color: var(--premium-white);
  transition: var(--transition-smooth);
}

.hdr-wrap .mmenu-js > li:hover > a::after {
  width: 100%;
}

/* Logo protection on home */
.is-home-page .hdr-logo img {
  filter: drop-shadow(0px 2px 4px rgba(0,0,0,0.5));
}
.hdr-logo img {
  max-height: 40px;
  transition: var(--transition-smooth);
}

/* Icons styling */
.hdr-wrap .icon-search,
.hdr-wrap .icon-basket,
.hdr-wrap .minicart-link {
  color: var(--premium-white) !important;
  font-size: 20px;
  transition: var(--transition-smooth);
}

.is-home-page .hdr-wrap .icon-search,
.is-home-page .hdr-wrap .icon-basket,
.is-home-page .hdr-wrap .minicart-link {
  filter: drop-shadow(0px 1px 3px rgba(0,0,0,0.3));
}

.hdr-wrap .minicart-qty {
  background-color: var(--premium-white) !important;
  color: var(--premium-black) !important;
  font-family: var(--font-secondary);
  font-weight: 600;
}

.hdr-wrap .minicart-total {
  color: var(--premium-white) !important;
  font-family: var(--font-secondary);
  font-weight: 400;
}

/* Sticky Header Behavior */
body.has-sticky .hdr-content-sticky {
  background-color: rgba(10, 10, 10, 0.85) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  opacity: 1 !important;
  padding-top: 10px;
  padding-bottom: 10px;
}

body.has-sticky .hdr-wrap {
  z-index: 1000;
}

body.has-sticky .hdr-logo img {
  max-height: 35px;
}

/* Mobile Toggle */
.mobilemenu-toggle i {
  color: var(--premium-white) !important;
}

/* Fixes for non-home pages so text doesn't disappear if background is black */
body:not(.is-home-page) .hdr-wrap {
  position: relative;
  border-bottom: none;
}

/* --- HERO SECTION PREMIUM --- */
.hero-premium {
  position: relative;
  width: 100%;
  height: 100vh; /* Fullscreen */
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--premium-black);
}

.hero-premium-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translateX(-50%) translateY(-50%);
  object-fit: cover;
  z-index: 1;
}

.hero-premium-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.4) 0%,
    rgba(0,0,0,0.6) 50%,
    rgba(0,0,0,0.8) 100%
  );
  z-index: 2;
}

.hero-premium-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--premium-white);
  max-width: 800px;
  padding: 0 20px;
  margin-top: 50px; /* Offset for header */
}

.hero-premium-title {
  font-family: var(--font-primary);
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
  color: var(--premium-white);
  animation: fadeUpSlow 1.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  opacity: 0;
}

.hero-premium-subtitle {
  font-family: var(--font-secondary);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 40px;
  color: rgba(255,255,255,0.8);
  animation: fadeUpSlow 1.5s cubic-bezier(0.2, 0.8, 0.2, 1) 0.3s forwards;
  opacity: 0;
}

.hero-premium-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUpSlow 1.5s cubic-bezier(0.2, 0.8, 0.2, 1) 0.6s forwards;
  opacity: 0;
}

/* Premium Buttons */
.btn-premium {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  font-family: var(--font-secondary);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px; /* Minimal rounded corners */
  transition: var(--transition-smooth);
  cursor: pointer;
  overflow: hidden;
  position: relative;
}

.btn-premium-primary {
  background-color: var(--premium-white);
  color: var(--premium-black);
  border: 1px solid var(--premium-white);
}

.btn-premium-primary:hover {
  background-color: transparent;
  color: var(--premium-white);
}

.btn-premium-secondary {
  background-color: transparent;
  color: var(--premium-white);
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(5px);
}

.btn-premium-secondary:hover {
  background-color: rgba(255,255,255,0.1);
  border-color: var(--premium-white);
}

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

/* Very subtle continuous zoom effect on the video for dynamic feel */
@keyframes subtleZoom {
  from { transform: translateX(-50%) translateY(-50%) scale(1); }
  to { transform: translateX(-50%) translateY(-50%) scale(1.05); }
}

.hero-premium-video {
  animation: subtleZoom 20s ease-in-out infinite alternate;
}

/* --- CATEGORIAS DESTACADAS PREMIUM --- */
.premium-section-title {
  text-align: center;
  margin-bottom: 50px;
}

.premium-section-title h2 {
  font-family: var(--font-primary);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--premium-black);
  margin-bottom: 15px;
}

.premium-section-title p {
  font-family: var(--font-secondary);
  font-size: 16px;
  color: var(--premium-gray);
  max-width: 600px;
  margin: 0 auto;
}

.category-premium-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

@media (max-width: 991px) {
  .category-premium-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 575px) {
  .category-premium-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.category-premium-card {
  display: block;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background-color: var(--premium-light-gray);
  aspect-ratio: 4/5;
  text-decoration: none;
  isolation: isolate;
}

.category-premium-card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1;
}

.category-premium-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,0) 50%,
    rgba(0,0,0,0.7) 100%
  );
  z-index: 2;
  transition: opacity 0.4s ease;
}

.category-premium-card:hover .category-premium-card-img {
  transform: scale(1.08);
}

.category-premium-card:hover::after {
  opacity: 0.8;
}

.category-premium-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.category-premium-title {
  font-family: var(--font-primary);
  color: var(--premium-white);
  font-size: 22px;
  font-weight: 500;
  margin: 0;
  letter-spacing: 0.02em;
  transform: translateY(10px);
  transition: transform 0.4s ease;
}

.category-premium-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.2);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--premium-white);
  opacity: 0;
  transform: translateX(-15px);
  transition: all 0.4s ease;
}

.category-premium-card:hover .category-premium-title {
  transform: translateY(0);
}

.category-premium-card:hover .category-premium-icon {
  opacity: 1;
  transform: translateX(0);
}

/* --- BENEFICIOS PREMIUM --- */
.benefits-premium-section {
  padding: 80px 0;
  background-color: var(--premium-beige);
  border-top: 1px solid rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.benefits-premium-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

@media (max-width: 991px) {
  .benefits-premium-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 575px) {
  .benefits-premium-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.benefit-premium-item {
  text-align: center;
  padding: 20px;
  transition: transform 0.3s ease;
}

.benefit-premium-item:hover {
  transform: translateY(-5px);
}

.benefit-premium-icon {
  font-size: 32px;
  color: var(--premium-black);
  margin-bottom: 20px;
  display: inline-block;
}

.benefit-premium-title {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 600;
  color: var(--premium-black);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}

.benefit-premium-desc {
  font-family: var(--font-secondary);
  font-size: 14px;
  color: var(--premium-gray);
  line-height: 1.5;
  margin: 0;
}

/* --- PRODUCTOS DESTACADOS PREMIUM --- */
.prd {
  border: none !important;
  box-shadow: none !important;
  transition: var(--transition-smooth) !important;
}

.prd:hover {
  box-shadow: var(--shadow-soft) !important;
  transform: translateY(-5px);
}

.prd-img-area {
  background-color: var(--premium-light-gray);
  border-radius: 8px;
  overflow: hidden;
}

.prd-info {
  text-align: center;
  padding-top: 20px;
}

.prd-title {
  font-family: var(--font-primary) !important;
  font-weight: 500 !important;
  font-size: 15px !important;
  color: var(--premium-black) !important;
  margin-bottom: 8px !important;
}

.prd-title a {
  color: var(--premium-black) !important;
  text-decoration: none;
}

.prd-price {
  font-family: var(--font-secondary);
  font-weight: 600;
  color: var(--premium-gray);
  font-size: 16px;
}

/* Redesign action buttons on hover */
.prd-action .btn {
  background-color: var(--premium-black) !important;
  color: var(--premium-white) !important;
  border-radius: 4px;
  font-family: var(--font-secondary);
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.02em;
  transition: var(--transition-smooth);
}

.prd-action .btn:hover {
  background-color: var(--premium-dark-gray) !important;
  transform: scale(1.02);
}

/* --- BANNER LIFESTYLE / EMOCIONAL PREMIUM --- */
.lifestyle-premium-banner {
  position: relative;
  width: 100%;
  padding: 180px 0; /* Aumentado para un feel más cinematográfico */
  background-color: var(--premium-black);
  background-image: url('https://images.unsplash.com/photo-1616627547584-bf28cee262db?q=80&w=1920&auto=format&fit=crop'); /* Placeholder HD */
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Parallax effect */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.lifestyle-premium-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay for text contrast */
  z-index: 1;
}

.lifestyle-premium-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
  color: var(--premium-white);
}

.lifestyle-eyebrow {
  font-family: var(--font-secondary);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 25px !important;
  margin-top: 0 !important;
}

.lifestyle-premium-title {
  font-family: var(--font-primary);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 300;
  letter-spacing: -0.02em;
  margin-bottom: 25px;
  color: var(--premium-white);
  line-height: 1.1;
}

.lifestyle-premium-subtitle {
  font-family: var(--font-secondary);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0 !important;
  margin-top: 0 !important;
}

.btn-premium-outline-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  font-family: var(--font-secondary);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--premium-white);
  border: 1px solid rgba(255,255,255,0.3);
  background: transparent;
  transition: all 0.4s ease;
  text-decoration: none;
  backdrop-filter: blur(5px);
}

.btn-premium-outline-light:hover {
  background-color: var(--premium-white);
  color: var(--premium-black);
  text-decoration: none;
}

/* --- CTA WHATSAPP PREMIUM --- */
.whatsapp-premium-cta {
  padding: 120px 0;
  background-color: #0a0a0a; /* Deep elegant black */
  text-align: center;
  color: var(--premium-white);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.whatsapp-eyebrow {
  font-family: var(--font-secondary);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px !important;
  margin-top: 0 !important;
}

.whatsapp-premium-title {
  font-family: var(--font-primary);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 300;
  color: var(--premium-white);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.whatsapp-premium-subtitle {
  font-family: var(--font-secondary);
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px !important;
  max-width: 600px;
  margin-left: auto !important;
  margin-right: auto !important;
  margin-top: 0 !important;
  line-height: 1.6;
}

.btn-whatsapp-premium {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: rgba(255,255,255,0.05);
  color: #ffffff;
  padding: 15px 40px;
  border-radius: 4px; /* Minimalist edge */
  border: 1px solid rgba(37, 211, 102, 0.4); /* Subtle green border */
  font-family: var(--font-secondary);
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.4s ease;
  backdrop-filter: blur(5px);
}

.btn-whatsapp-premium:hover {
  background-color: rgba(37, 211, 102, 0.1);
  border-color: #25D366;
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-whatsapp-premium i {
  font-size: 20px;
  color: #25D366; /* Elegant green accent only on the icon */
}

/* --- FOOTER PREMIUM POLISH --- */
.page-footer {
  background-color: var(--premium-black) !important;
  color: var(--premium-white) !important;
  font-family: var(--font-secondary) !important;
  border-top: none !important;
  padding-top: 60px !important;
}

.page-footer h4.title {
  font-family: var(--font-primary) !important;
  font-weight: 500 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  font-size: 14px !important;
  color: var(--premium-white) !important;
  margin-bottom: 25px !important;
  opacity: 0.9;
}

.page-footer a {
  color: rgba(255, 255, 255, 0.6) !important;
  transition: color 0.3s ease !important;
  font-size: 14px !important;
}

.page-footer a:hover {
  color: var(--premium-white) !important;
  text-decoration: none !important;
}

.page-footer .footer-logo img {
  filter: brightness(0) invert(1) !important; /* Force logo to white */
  max-height: 45px !important;
  opacity: 0.9;
}

.footer-copyright {
  background-color: var(--premium-dark-gray) !important;
  padding: 20px 0 !important;
  font-size: 12px !important;
  color: rgba(255, 255, 255, 0.5) !important;
}

.footer-copyright a {
  color: rgba(255, 255, 255, 0.7) !important;
}

/* Remove bulky elements */
.footer-shop-info {
  display: none !important;
}

/* Mobile specific fixes */
@media (max-width: 767px) {
  .hero-premium-content {
    margin-top: 0;
  }
  .hero-premium-title {
    font-size: 32px;
  }
  .hero-premium-subtitle {
    font-size: 15px;
  }
  .category-premium-card {
    aspect-ratio: 1/1; /* Square on mobile */
  }
  .btn-premium {
    width: 100%; /* Full width buttons on mobile */
  }
}

/* --- HEADER MINIMALISTA (HOME SPECIFIC FIXES) --- */

/* Ocultar la topline en el HOME para reducir carga visual */
.is-home-page .hdr-topline {
  display: none !important;
}

/* Reducir altura del header en general */
.is-home-page .hdr-content {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

/* Hacer que el logo sea blanco sobre el video oscuro (HOME) */
.is-home-page .hdr-logo img {
  max-height: 32px !important; /* Más pequeño y elegante */
  opacity: 0.95;
}

/* Estado sticky premium: negro translúcido con blur suave */
body.has-sticky .hdr-content-sticky {
  background-color: rgba(0, 0, 0, 0.75) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  border-bottom: none !important;
  box-shadow: 0 4px 30px rgba(0,0,0,0.1) !important;
  padding-top: 5px !important;
  padding-bottom: 5px !important;
}

/* Forzar logo blanco incluso cuando es sticky en el home */
body.has-sticky.is-home-page .hdr-content-sticky .hdr-logo img {
  filter: brightness(0) invert(1) !important;
}

/* Asegurar que iconos del menú también sean blancos */
.is-home-page .hdr-wrap .icon-search,
.is-home-page .hdr-wrap .icon-basket,
.is-home-page .hdr-wrap .minicart-link,
.is-home-page .mobilemenu-toggle i {
  color: #ffffff !important;
  font-size: 18px !important; /* Un poco más pequeños */
}

/* Eliminar colores morados/rosados residuales del tema base */
.icon-shield, .icon-cart, .icon-location {
  color: var(--premium-black) !important;
}

/* --- MENÚ Y BUSCADOR PREMIUM --- */

/* Tipografía del menú principal */
.hdr-wrap .mmenu-js > li > a {
  font-family: var(--font-secondary) !important; /* Inter */
  font-weight: 300 !important;
  font-size: 13px !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  padding: 10px 15px !important;
}

/* Hover minimalista: línea muy fina */
.hdr-wrap .mmenu-js > li > a::after {
  height: 1px !important;
  background-color: rgba(255,255,255,0.5) !important;
  bottom: 5px !important;
}

/* Rediseño del Buscador (Search input) */
.hdr-wrap .search-input[type] {
  font-family: var(--font-secondary) !important;
  font-weight: 300 !important;
  font-size: 14px !important;
  color: var(--premium-white) !important;
  border-bottom: 1px solid rgba(255,255,255,0.2) !important;
  padding-bottom: 5px !important;
  height: auto !important;
  line-height: normal !important;
  transition: border-color 0.4s ease !important;
}

.hdr-wrap .search-input[type]:focus {
  border-bottom-color: var(--premium-white) !important;
}

.hdr-wrap .search-button {
  color: var(--premium-white) !important;
  font-size: 16px !important;
}

/* Reducir espacio entre iconos derecha */
.hdr-links-wrap .hdr-inline-link {
  gap: 15px;
}

/* --- HERO TIPOGRAFÍA Y CTA REFINEMENTS --- */

/* Tipografía Principal (Explora nuevas experiencias) */
.hero-premium-title {
  font-family: var(--font-primary) !important;
  font-weight: 300 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  line-height: 1.3 !important;
  margin-bottom: 25px !important;
}

/* Tipografía Secundaria */
.hero-premium-subtitle {
  font-family: var(--font-secondary) !important;
  font-weight: 300 !important;
  letter-spacing: 0.02em !important;
  color: rgba(255, 255, 255, 0.7) !important;
  margin-bottom: 45px !important;
}

/* CTA "Comprar Ahora" (Primario) */
.btn-premium-primary {
  background-color: var(--premium-white) !important;
  color: var(--premium-black) !important;
  border: none !important;
  font-weight: 400 !important;
  letter-spacing: 0.08em !important;
  border-radius: 2px !important; /* Bordes muy sutiles, estilo lujo */
}

.btn-premium-primary:hover {
  background-color: rgba(255,255,255,0.85) !important;
  transform: translateY(-2px);
}

/* CTA "Ver Categorías" (Secundario Glassmorphism) */
.btn-premium-secondary {
  background-color: rgba(255,255,255,0.05) !important;
  color: var(--premium-white) !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  font-weight: 400 !important;
  letter-spacing: 0.08em !important;
  border-radius: 2px !important;
}

.btn-premium-secondary:hover {
  background-color: rgba(255,255,255,0.15) !important;
  border-color: rgba(255,255,255,0.5) !important;
  transform: translateY(-2px);
}

/* Mobile Adjustments for Hero */
@media (max-width: 767px) {
  .hero-premium-title {
    font-size: 28px !important;
    line-height: 1.4 !important;
  }
  .hero-premium-subtitle {
    font-size: 14px !important;
    margin-bottom: 30px !important;
  }
  .btn-premium {
    width: 100% !important;
    padding: 14px 20px !important;
  }
  .hero-premium-actions {
    flex-direction: column !important;
    gap: 15px !important;
  }
}

/* --- TRUST STRIP (BENEFICIOS) --- */
.trust-strip-premium {
  background-color: #0f0f11; /* Negro perlado / gris muy oscuro cálido */
  padding: 15px 0; /* Reduced padding for a thin strip look */
  border-bottom: 1px solid rgba(255,255,255,0.02); /* Made even more subtle */
  border-top: none; /* Ensure no top border interrupts the hero */
}

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

@media (max-width: 767px) {
  .trust-strip-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 15px;
  }
}

.trust-strip-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.trust-strip-item:hover {
  opacity: 0.8;
}

.trust-strip-icon {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 28px;
}

.trust-strip-icon svg {
  width: 24px;
  height: 24px;
  stroke: rgba(255,255,255,0.9);
  stroke-width: 1.2px;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-strip-title {
  font-family: var(--font-secondary);
  font-size: 13px;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.trust-strip-desc {
  font-family: var(--font-secondary);
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  margin: 0 !important;
  letter-spacing: 0.02em;
}

/* Hide the old bulky benefits section entirely */
.benefits-premium-section {
  display: none !important;
}

/* --- CATEGORIAS DESTACADAS (BENTO / EDITORIAL) --- */
.category-bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 350px;
  gap: 15px;
  margin-top: 40px;
}

/* Base Bento Card */
.bento-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 4px; /* Slightly sharper for editorial look */
  text-decoration: none;
  background-color: var(--premium-black);
  isolation: isolate;
}

/* Image styling & slow zoom hover */
.bento-card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1;
  opacity: 0.8; /* Base dark look */
}

.bento-card:hover .bento-card-img {
  transform: scale(1.05);
  opacity: 0.6;
}

/* Cinematic overlay */
.bento-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.4) 100%);
  z-index: 2;
  transition: opacity 0.5s ease;
}

.bento-card:hover::after {
  opacity: 0.8;
}

/* Text Container */
.bento-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  text-align: center;
  width: 90%;
}

.bento-title {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: clamp(20px, 2.5vw, 32px);
  color: #ffffff;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin: 0;
}

/* Specific Grid Placements (Optimized for 4 items) */
/* 1. Large Feature (e.g., Vibradores) */
.bento-item-1 {
  grid-column: span 2;
  grid-row: span 2;
}
.bento-item-1 .bento-title {
  font-size: clamp(28px, 4vw, 42px);
}

/* 2. Medium Feature (e.g., Parejas) */
.bento-item-2 {
  grid-column: span 2;
  grid-row: span 1;
}

/* 3. Standard (e.g., Lubricantes) */
.bento-item-3 {
  grid-column: span 1;
  grid-row: span 1;
}

/* 4. Standard (e.g., BDSM) */
.bento-item-4 {
  grid-column: span 1;
  grid-row: span 1;
}

/* Mobile Fallback */
@media (max-width: 991px) {
  .category-bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 250px;
  }

  .bento-item-1 { grid-column: span 2; grid-row: span 2; }
  .bento-item-2 { grid-column: span 2; grid-row: span 1; }
  .bento-item-3 { grid-column: span 1; grid-row: span 1; }
  .bento-item-4 { grid-column: span 1; grid-row: span 1; }
}

@media (max-width: 575px) {
  .category-bento-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 300px;
    gap: 10px;
  }

  /* Stack everything elegantly on mobile */
  .bento-card { grid-column: span 1 !important; grid-row: span 1 !important; }
}

/* --- PRODUCTOS DESTACADOS "MOST WANTED" --- */
.premium-product-section {
  padding: 120px 0; /* Aumentar breathing room respecto a la sección Bento superior */
  background-color: #faf9f8; /* Soft warm minimalist background */
}

.premium-section-eyebrow {
  font-family: var(--font-secondary);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--premium-gray);
  margin-bottom: 10px;
}

.premium-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px; /* Más aire entre columnas (estilo Zara) */
  margin-top: 60px;
}

@media (max-width: 991px) {
  .premium-product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
  }
}

.premium-product-card {
  display: block;
  text-decoration: none;
  background: transparent;
  transition: all 0.4s ease;
  group: item;
}

.premium-product-card:hover {
  text-decoration: none;
}

.premium-product-img-wrapper {
  position: relative;
  overflow: hidden;
  background-color: transparent; /* Eliminar el fondo gris para que no parezca caja si la imagen tiene fondo blanco */
  aspect-ratio: 3/4; /* Más alto, estilo editorial moda/luxury */
  border-radius: 0; /* Sin bordes redondeados para un look más serio y limpio */
  margin-bottom: 25px; /* Más aire antes del título */
}

.premium-product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* Hover más lento/suave */
}

.premium-product-card:hover .premium-product-img {
  transform: scale(1.04); /* Zoom aún más imperceptible */
}

.premium-product-add {
  position: absolute;
  bottom: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--premium-white);
  color: var(--premium-black);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

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

.premium-product-add i {
  font-size: 16px;
}

.premium-product-info {
  padding: 0; /* Sin padding lateral, alineado con la imagen perfectamente */
  text-align: left;
}

.premium-product-title {
  font-family: var(--font-primary);
  font-weight: 300; /* Tipografía más ligera */
  font-size: 13px; /* Más pequeña y elegante */
  text-transform: uppercase; /* Unificar estilo de nombres */
  letter-spacing: 0.06em; /* Añadir tracking de lujo */
  color: var(--premium-black);
  margin: 0 0 10px 0;
  line-height: 1.4;
  
  overflow: hidden;
  text-overflow: ellipsis;
}

.premium-product-price {
  font-family: var(--font-secondary);
  font-weight: 300;
  font-size: 14px;
  color: #777; /* Gris suave en lugar del color primario de texto */
  letter-spacing: 0.02em;
}

.premium-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 40px;
  font-family: var(--font-secondary);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--premium-black);
  border: 1px solid var(--premium-black);
  background: transparent;
  transition: all 0.4s ease;
  text-decoration: none;
}

.premium-btn-outline:hover {
  background-color: var(--premium-black);
  color: var(--premium-white);
  text-decoration: none;
}

/* --- BLOQUE SEO ELEGANTE --- */
.seo-premium-section {
  padding: 120px 0;
  background-color: var(--premium-white);
}

.seo-premium-h1 {
  font-family: var(--font-primary);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 400;
  color: var(--premium-black);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
}

.seo-premium-h1::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background-color: var(--premium-gray);
  opacity: 0.3;
}

.seo-premium-content {
  max-width: 700px;
  margin: 0 auto;
}

.seo-premium-text {
  font-family: var(--font-secondary);
  font-size: 15px;
  font-weight: 300;
  color: var(--premium-gray);
  line-height: 1.9;
  margin-bottom: 20px;
}

.seo-premium-text:last-child {
  margin-bottom: 0;
}

/* --- PASARELAS DE PAGO Y CONFIANZA --- */
.payment-trust-section {
  background-color: #faf9f8;
  padding: 60px 0;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.payment-trust-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.payment-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.payment-trust-item:hover {
  opacity: 1;
}

.payment-trust-icon {
  margin-bottom: 12px;
}

.payment-trust-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--premium-black);
  stroke-width: 1px;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.payment-trust-text {
  font-family: var(--font-secondary);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--premium-black);
  margin: 0 !important;
}

@media (max-width: 767px) {
  .payment-trust-grid {
    gap: 30px;
  }
  .payment-trust-item {
    width: 40%;
  }
}

/* --- PÁGINA DE COLECCIONES --- */

.collections-hero-premium {
  padding: 120px 0 60px 0; /* Espacio para el header global sólido */
  background-color: var(--premium-light-gray);
  border-bottom: 1px solid rgba(0,0,0,0.03);
}

.collections-filter-bar {
  background-color: var(--premium-light-gray);
  padding: 20px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.filter-list-premium {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.filter-item-premium {
  font-family: var(--font-secondary);
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--premium-gray);
  text-decoration: none;
  padding-bottom: 5px;
  position: relative;
  transition: color 0.3s ease;
}

.filter-item-premium:hover {
  color: var(--premium-black);
  text-decoration: none;
}

.filter-item-premium.active {
  color: var(--premium-black);
}

.filter-item-premium.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--premium-black);
}

.filter-item-premium::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background-color: var(--premium-black);
  transition: width 0.3s ease;
}

.filter-item-premium:not(.active):hover::after {
  width: 100%;
}

@media (max-width: 767px) {
  .collections-hero-premium {
    padding: 80px 0 40px 0;
  }

  .filter-list-premium {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 10px;
    flex-wrap: nowrap;
    gap: 20px;
    -webkit-overflow-scrolling: touch;
    /* Hide scrollbar */
    scrollbar-width: none;
  }
  .filter-list-premium::-webkit-scrollbar {
    display: none;
  }

  .filter-item-premium {
    white-space: nowrap;
  }
}

/* --- PREMIUM MOBILE MENU OVERLAY --- */
.premium-mobile-drawer {
  background-color: #0a0a0a !important; /* Deep elegant black */
  width: 100% !important; /* Make it feel like a full screen overlay rather than a panel */
  max-width: 400px !important;
}

.premium-mobile-content {
  background-color: #0a0a0a !important;
  display: flex;
  flex-direction: column;
  height: 100vh;
}

.premium-mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 40px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.premium-mobile-logo img {
  max-height: 35px;
}

.premium-mobile-close svg {
  width: 28px;
  height: 28px;
  stroke: #ffffff;
  stroke-width: 1px; /* Ultra thin X */
  fill: none;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.premium-mobile-close:hover svg {
  transform: scale(0.9);
}

.premium-mobile-scroll {
  flex-grow: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 40px;
  scrollbar-width: none;
}

.premium-mobile-scroll::-webkit-scrollbar {
  display: none;
}

.premium-mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.premium-mobile-nav li {
  margin-bottom: 25px;
}

.premium-mobile-nav a {
  font-family: var(--font-secondary);
  font-size: 18px;
  font-weight: 300;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 0.1em;
  transition: opacity 0.3s ease;
}

.premium-mobile-nav a:hover {
  opacity: 0.6;
}

/* Redesign Hamburger Icon */
.mobilemenu-toggle i {
  font-size: 24px !important;
}

/* Ensure the body overlay isn't a heavy gray, but a dark elegant blur */
.mbmenu-opened::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(5px);
  z-index: 1040;
}
