/* ---- Variables ---- */
:root {
  --accent: #e69c91;
  --accent-dark: #d4786b;
  --accent-light: #f9ece9;
  --accent-bg: #fdf5f3;
  --bg-main: #ffffff;
  --bg-section: #f9f9f9;
  --bg-beige: #f5e6d3;
  --text-primary: #222222;
  --text-secondary: #666666;
  --text-light: #999999;
  --border: #eeeeee;
  --border-dark: #dddddd;
  --star: #f5a623;
  --font-main: 'Jost', sans-serif;
  --font-script: 'Dancing Script', cursive;
  --shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.14);
  --radius: 6px;
  --radius-pill: 30px;
  --transition: all 0.3s ease;
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 20px;
  width: 75px;
  height: 75px;
  z-index: 1000;
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.whatsapp-float img:hover {
  transform: scale(1.1);
}

body {
  font-family: var(--font-main);
  font-size: 16px;
  color: var(--text-primary);
  background: var(--bg-main);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

input,
button,
select,
textarea {
  font-family: var(--font-main);
}

/* ---- Contenedor ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Botón Volver Arriba */
#scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 998;
}

#scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

#scroll-top svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

#scroll-top:hover {
  background: var(--text-primary);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  #scroll-top {
    bottom: 85px;
    /* Lo subimos para que no tape el de WhatsApp en móviles */
    right: 15px;
    width: 40px;
    height: 40px;
  }
}


/* ---- Tipografía ---- */
h1,
h2,
h3,
h4,
h5 {
  font-weight: 700;
  line-height: 1.2;
}

.script-title {
  font-family: var(--font-script);
  font-weight: 600;
}

.script-title-large {
  font-family: var(--font-script);
  font-size: 32px;
  font-weight: 600;
  color: var(--text-primary);
  display: block;
}

.hero-script-text {
  font-family: var(--font-script);
  font-size: 26px;
  /* Ajustado para que sea legible pero delicado */
  color: var(--text-primary);
  line-height: 1.4;
  margin-bottom: 25px;
  text-transform: none;
  font-weight: 500;
}

.section-subtitle {
  font-family: var(--font-script);
  font-size: 18px;
  color: var(--text-primary);
  font-weight: 500;
  margin-top: 5px;
  opacity: 0.9;
}

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  background: var(--bg-section);
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-secondary);
  padding: 8px 0;
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 6px;
}

.topbar-left svg {
  width: 14px;
  height: 14px;
  fill: var(--accent);
  flex-shrink: 0;
}

.topbar-right {
  display: flex;
  gap: 20px;
}

.topbar-right a {
  color: var(--text-secondary);
  transition: var(--transition);
}

.topbar-right a:hover {
  color: var(--accent);
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  background: var(--bg-main);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
}

/* Logo */
.site-logo {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1;
}

.site-logo span.logo-accent {
  color: var(--accent);
}

.site-logo span.logo-dark {
  color: var(--text-primary);
}

/* Buscador Centro */
.header-search-box {
  flex: 1;
  max-width: 500px;
  display: flex;
  align-items: center;
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  transition: var(--transition);
}

.header-search-box:focus-within {
  border-color: var(--accent);
  background: #fff;
}

.header-search-box input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font-size: 14px;
  color: var(--text-primary);
  text-align: center;
}

.header-search-box input::placeholder {
  color: var(--text-secondary);
}

.header-search-box button {
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 10px;
}

.header-search-box button svg {
  width: 20px;
  height: 20px;
  stroke: var(--text-secondary);
  fill: none;
  stroke-width: 2;
  transition: var(--transition);
}

.header-search-box button:hover svg {
  stroke: var(--accent);
}

/* Acciones a la derecha */
.header-right-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

/* Cuenta */
.header-account {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
}

.header-account:hover .header-account-icon svg {
  stroke: var(--accent);
}

.header-account:hover .header-account-text span {
  color: var(--accent);
}

.header-account-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.header-account-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--text-secondary);
  fill: none;
  stroke-width: 1.5;
  transition: var(--transition);
}

.header-account-text {
  display: flex;
  flex-direction: column;
}

.header-account-text span {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  transition: var(--transition);
}

/* Cart header */
.header-cart {
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  position: relative;
}

.header-cart-icon {
  position: relative;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-cart-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--text-secondary);
  fill: none;
  stroke-width: 1.5;
}

.cart-count-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-cart-info .label {
  font-size: 13px;
  color: var(--text-secondary);
}

.header-cart-info .value {
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
}

/* ---- Separador punteado (diseño Gifymo) ---- */
.dotted-separator {
  border: none;
  border-top: 2px dotted var(--border);
  margin: 0;
}



/* ============================================================
   NAV
   ============================================================ */
.site-nav {
  background: var(--bg-main);
  padding: 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
}

.nav-links a {
  display: inline-block;
  padding: 14px 22px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-primary);
  transition: var(--transition);
  position: relative;
}

/* Dropdown Menu Styles */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 220px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
  z-index: 1001;
  top: 100%;
  left: 0;
  border-radius: 0 0 8px 8px;
  border: 1px solid var(--border);
  border-top: none;
  overflow: hidden;
}

.dropdown-content a {
  color: var(--text-primary) !important;
  padding: 12px 20px !important;
  text-decoration: none;
  display: block !important;
  font-size: 13px !important;
  text-transform: none !important;
  font-weight: 500 !important;
  border-bottom: 1px solid #f8f8f8;
  transition: all 0.2s ease;
  text-align: left !important;
}

.dropdown-content a:last-child {
  border-bottom: none;
}

.dropdown-content a:hover {
  background-color: var(--bg-section);
  color: var(--accent) !important;
  padding-left: 25px !important;
}

.nav-dropdown:hover .dropdown-content {
  display: block;
  animation: fadeInDown 0.3s ease;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Indicador de dropdown */
.nav-dropbtn::after {
  content: '▼';
  font-size: 8px;
  margin-left: 6px;
  vertical-align: middle;
  opacity: 0.5;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
}

.nav-links a.active {
  background: var(--accent-light);
  border-radius: var(--radius);
}

/* Sub-navegación Ayuda */
.help-subnav {
  border-bottom: 2px dotted var(--border);
  padding: 15px 0;
  margin-bottom: 30px;
}

.help-subnav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.help-nav-links {
  display: flex;
  gap: 30px;
}

.help-nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 600;
  transition: color 0.3s;
  text-transform: uppercase;
}

.help-nav-links a:hover,
.help-nav-links a.active {
  color: var(--accent);
}

.help-nav-right a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
}

.nav-search {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  transition: var(--transition);
}

.nav-search:focus-within {
  border-color: var(--accent);
}

.nav-search input {
  border: none;
  outline: none;
  font-size: 14px;
  color: var(--text-primary);
  background: transparent;
  width: 180px;
}

.nav-search input::placeholder {
  color: var(--text-light);
}

.nav-search svg {
  width: 18px;
  height: 18px;
  stroke: var(--text-secondary);
  fill: none;
  cursor: pointer;
}

.nav-search svg:hover {
  stroke: var(--accent);
}

/* ============================================================
   HERO / BANNER PRINCIPAL
   ============================================================ */
.hero-section {
  display: grid;
  grid-template-columns: 280px 1fr;
  min-height: 500px;
}

/* Sidebar de categorías */
.category-sidebar {
  background: var(--accent-light);
  padding: 32px 28px;
}

.category-sidebar h3 {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 25px;
  font-family: 'Playfair Display', serif;
  /* Assuming we want a more elegant font if available, or just keep it clean */
}

.category-list {
  display: flex;
  flex-direction: column;
}

.category-list li {
  border-bottom: 1px solid rgba(212, 184, 179, 0.15);
  padding: 22px 0;
}

.category-list li:first-child {
  padding-top: 0;
}

.category-list li:last-child {
  border-bottom: none;
}

.category-list a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-primary);
  transition: var(--transition);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.category-list a:hover {
  color: var(--accent);
  padding-left: 4px;
}

.category-list li.special-link a {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--text-primary);
  opacity: 1;
  margin-bottom: 0;
}

.category-list li.special-link {
  border-bottom: 2px solid rgba(212, 184, 179, 0.2);
  margin-bottom: 15px;
}

/* Banner Hero */
.hero-banner {
  position: relative;
  overflow: hidden;
}

/* Slider */
.hero-slider {
  position: relative;
  overflow: hidden;
}

.slider-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  background: var(--accent-light);
  /* Fondo para completar espacios */
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Volvemos a cover ahora que son 16:9 */
}

.hero-overlay {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(245, 230, 211, 0.72);
  padding: 40px 48px;
  border-radius: var(--radius);
  max-width: 360px;
  text-align: center;
}

.hero-overlay .eyebrow {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.hero-overlay h1 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 8px;
}

.hero-overlay .subtitle {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 13px 34px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--accent);
  padding: 12px 32px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  border: 2px solid var(--accent);
  cursor: pointer;
  transition: var(--transition);
}

.btn-secondary:hover {
  background: var(--accent);
  color: #fff;
}

/* ============================================================
   SECCIÓN BENEFICIOS
   ============================================================ */
.benefits-section {
  background: var(--bg-section);
  padding: 40px 0;
  border-top: 2px dotted var(--border);
  border-bottom: 2px dotted var(--border);
}

.benefits-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 10px;
  flex: 0 1 320px;
}

.benefit-icon {
  width: 80px;
  height: 80px;
  background: var(--accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
}

.benefit-item h4 {
  font-size: 18px;
  font-weight: 700;
}

.benefit-item p {
  font-size: 14px;
  color: var(--text-secondary);
}

/* ============================================================
   SECCIÓN DE PRODUCTOS
   ============================================================ */
.section-header {
  text-align: center;
  padding: 60px 0 32px;
}

.section-header .script-title {
  font-size: 48px;
  color: var(--text-primary);
  display: block;
}

.section-header .section-sep {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 12px;
}

.section-header .section-sep span {
  display: block;
  height: 1px;
  width: 80px;
  background: repeating-linear-gradient(to right, var(--border) 0, var(--border) 5px, transparent 5px, transparent 10px);
}

.section-header .section-sep i {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  display: block;
}

/* Grid de productos */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-bottom: 60px;
}

.products-grid.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

/* Tarjeta de producto */
.product-card {
  background: var(--bg-main);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.product-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.product-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--bg-section);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.06);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.product-badge.sale {
  background: #d4786b;
}

.product-actions {
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  transition: var(--transition);
}

.product-card:hover .product-actions {
  bottom: 0;
}

.btn-add-cart {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-add-cart:hover {
  background: var(--accent-dark);
}

.btn-wishlist {
  background: #fff;
  border: 1px solid var(--border);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.btn-wishlist:hover {
  border-color: var(--accent);
}

.btn-wishlist svg {
  width: 16px;
  height: 16px;
  stroke: var(--text-secondary);
  fill: none;
}

.btn-wishlist:hover svg {
  stroke: var(--accent);
}

.product-info {
  padding: 16px;
}

.product-price {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.price-current {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
}

.price-old {
  font-size: 14px;
  color: var(--text-light);
  text-decoration: line-through;
}

.product-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
  line-height: 1.3;
  transition: var(--transition);
}

.product-name a:hover {
  color: var(--accent);
}

.product-category-tag {
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.stars {
  display: flex;
  gap: 2px;
}

.stars svg {
  width: 14px;
  height: 14px;
  fill: var(--star);
}

.stars svg.empty {
  fill: var(--border-dark);
}

/* ============================================================
   BANNER SECUNDARIO
   ============================================================ */
.promo-banner {
  background: var(--bg-beige);
  padding: 60px 0;
  text-align: center;
  margin: 20px 0;
}

.promo-banner h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.promo-banner p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.promo-kits-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.promo-kit-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: var(--transition);
  max-width: 280px;
}

.promo-kit-card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.promo-kit-card span {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.promo-kit-card:hover {
  transform: translateY(-5px);
}

.promo-kit-card:hover img {
  border-color: var(--accent);
  box-shadow: var(--shadow-hover);
}

.promo-kit-card:hover span {
  color: var(--accent);
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter-section {
  background: var(--accent-light);
  padding: 50px 0;
  text-align: center;
}

.newsletter-section h3 {
  font-size: 28px;
  margin-bottom: 8px;
}

.newsletter-section p {
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 0;
  max-width: 460px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 13px 20px;
  border: 2px solid var(--border);
  border-right: none;
  border-radius: var(--radius-pill) 0 0 var(--radius-pill);
  font-size: 14px;
  outline: none;
  transition: var(--transition);
}

.newsletter-form input:focus {
  border-color: var(--accent);
}

.newsletter-form button {
  padding: 13px 28px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 0 var(--radius-pill) var(--radius-pill) 0;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-form button:hover {
  background: var(--accent-dark);
}

.newsletter-status {
  display: none;
  margin-top: 20px;
  font-size: 16px;
  font-weight: 600;
  padding: 15px;
  border-radius: var(--radius);
  transition: var(--transition);
}

.newsletter-status.success {
  color: #27ae60;
  background: #ebf7f0;
  border: 1px solid #c3e6cb;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #1a1a1a;
  color: #aaa;
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #333;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}

.footer-logo {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.footer-logo .logo-accent {
  color: var(--accent);
}

.footer-logo .logo-dark {
  color: #fff;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.7;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #aaa;
  font-size: 14px;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--accent);
  padding-left: 4px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--accent);
}

.footer-social svg {
  width: 16px;
  height: 16px;
  fill: #fff;
}

.footer-bottom {
  padding: 18px 0;
  text-align: center;
  font-size: 13px;
  color: #666;
}

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
#scroll-top {
  position: fixed;
  bottom: 95px;
  /* Ajuste para dar espacio al whatsapp */
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 998;
}

#scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}

#scroll-top:hover {
  background: var(--accent-dark);
}

/* ============================================================
   WHATSAPP FLOTANTE
   ============================================================ */
.whatsapp-float {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 28px;
  right: 28px;
  border-radius: 50%;
  z-index: 999;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#scroll-top svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.5;
}

/* ============================================================
   PÁGINA TIENDA (SHOP)
   ============================================================ */
.page-header {
  background: var(--bg-section);
  padding: 32px 0;
  border-bottom: 2px dotted var(--border);
}

.page-header h1 {
  font-size: 28px;
  margin-bottom: 4px;
}

.breadcrumb {
  font-size: 13px;
  color: var(--text-secondary);
}

.breadcrumb a {
  color: var(--text-secondary);
}

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb span {
  margin: 0 6px;
}

.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  padding: 40px 0;
}

.shop-sidebar {
  background: var(--accent-light);
  padding: 32px 28px;
  border-radius: var(--radius);
}

.sidebar-widget {
  margin-bottom: 36px;
}

.sidebar-widget h4 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-primary);
  padding-bottom: 14px;
  border-bottom: 2px dotted var(--border);
  margin-bottom: 18px;
}

.filter-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px dotted var(--border);
}

.filter-list li:last-child {
  border-bottom: none;
}

.filter-list a {
  font-size: 15px;
  color: var(--text-secondary);
  transition: var(--transition);
  text-transform: none;
}

.filter-list a:hover {
  color: var(--accent);
}

.filter-list .count {
  display: none;
}

.filter-list li.active a {
  color: var(--accent);
  font-weight: 600;
}

.filter-list li:first-child a {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
}

.filter-list li:first-child {
  border-bottom: 2px solid rgba(212, 184, 179, 0.2);
  margin-bottom: 10px;
  padding-bottom: 18px;
}

/* Price range */
.price-range {
  padding: 4px 0;
}

.range-inputs {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.range-inputs input {
  flex: 1;
  padding: 8px 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 13px;
  color: var(--text-primary);
  outline: none;
}

.range-inputs input:focus {
  border-color: var(--accent);
}

.price-range input[type=range] {
  -webkit-appearance: none;
  width: 100%;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  outline: none;
  margin-bottom: 8px;
}

.price-range input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  background: var(--accent);
  border-radius: 50%;
  cursor: pointer;
}

/* Shop toolbar */
.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.shop-toolbar .results {
  font-size: 14px;
  color: var(--text-secondary);
}

.shop-toolbar select {
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--text-primary);
  outline: none;
  cursor: pointer;
}

.shop-toolbar select:focus {
  border-color: var(--accent);
}

/* ============================================================
   PÁGINA PRODUCTO INDIVIDUAL
   ============================================================ */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 50px 0;
  align-items: start;
}

/* --- Galería de Producto (Detalle) --- */
.product-visuals {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.product-gallery-main {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: #fff;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #eee;
}

.product-gallery-main img {
  max-height: 100%;
  width: auto;
  transition: opacity 0.3s ease;
}

.product-gallery-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.thumb {
  width: 70px;
  height: 70px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}

.thumb:hover,
.thumb.active {
  border-color: var(--accent);
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail-info .product-price {
  font-size: 28px;
  margin-bottom: 16px;
}

.product-detail-info .price-current {
  font-size: 32px;
}

.product-detail-info .product-name {
  font-size: 28px;
  margin-bottom: 12px;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--text-secondary);
  font-size: 14px;
}

.product-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 24px;
  border-bottom: 1px dotted var(--border);
  padding-bottom: 24px;
}

.qty-selector {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 20px;
}

.qty-btn {
  width: 40px;
  height: 44px;
  background: var(--bg-section);
  border: 1px solid var(--border);
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--text-primary);
}

.qty-btn:hover {
  background: var(--accent-light);
  border-color: var(--accent);
  color: var(--accent);
}

.qty-input {
  width: 60px;
  height: 44px;
  border: 1px solid var(--border);
  border-left: none;
  border-right: none;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  outline: none;
}

.add-to-cart-btn {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 14px 36px;
  border-radius: var(--radius-pill);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 10px;
}

.add-to-cart-btn:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.add-to-cart-btn svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
}

.product-meta {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.product-meta span strong {
  color: var(--text-primary);
}

/* Tabs */
.product-tabs {
  margin-top: 50px;
}

.tabs-nav {
  display: flex;
  border-bottom: 2px solid var(--border);
  margin-bottom: 24px;
}

.tab-btn {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  border: none;
  background: none;
  position: relative;
  transition: var(--transition);
}

.tab-btn.active {
  color: var(--accent);
}

.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
}

.tab-content {
  display: none;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.tab-content.active {
  display: block;
}

/* ============================================================
   CARRITO
   ============================================================ */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  padding: 40px 0 80px;
  align-items: start;
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
}

.cart-table th {
  text-align: left;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 12px 16px;
  border-bottom: 2px solid var(--border);
}

.cart-table td {
  padding: 20px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.cart-product {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cart-thumb {
  width: 76px;
  height: 76px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
}

.cart-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-product-name {
  font-weight: 600;
  font-size: 15px;
}

.cart-product-cat {
  font-size: 13px;
  color: var(--text-secondary);
}

.cart-price {
  font-weight: 700;
  color: var(--accent);
  font-size: 16px;
}

.cart-qty {
  display: flex;
  align-items: center;
  gap: 0;
}

.remove-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-light);
  transition: var(--transition);
  padding: 4px;
}

.remove-btn:hover {
  color: #e74c3c;
}

.remove-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.cart-summary {
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: sticky;
  top: 90px;
}

.cart-summary h3 {
  font-size: 18px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px dotted var(--border);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  margin-bottom: 12px;
  color: var(--text-secondary);
}

.summary-row.total {
  font-weight: 700;
  font-size: 18px;
  color: var(--text-primary);
  border-top: 2px solid var(--border);
  padding-top: 14px;
  margin-top: 6px;
}

.summary-row.total .amount {
  color: var(--accent);
}

.checkout-btn {
  width: 100%;
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 15px;
  border-radius: var(--radius-pill);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 20px;
  transition: var(--transition);
}

.checkout-btn:hover {
  background: var(--accent-dark);
}

.continue-btn {
  width: 100%;
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  padding: 12px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  cursor: pointer;
  margin-top: 10px;
  transition: var(--transition);
}

.continue-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.empty-cart {
  text-align: center;
  padding: 80px 20px;
}

.empty-cart svg {
  width: 80px;
  height: 80px;
  stroke: var(--border-dark);
  fill: none;
  stroke-width: 1;
  margin: 0 auto 20px;
}

.empty-cart h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.empty-cart p {
  color: var(--text-secondary);
  margin-bottom: 24px;
}

/* ============================================================
   NOSOTROS
   ============================================================ */
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
}

.about-content h2 {
  font-size: 38px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-content h2 span {
  color: var(--accent);
}

.about-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.about-img {
  border-radius: 12px;
  overflow: hidden;
  max-height: 480px;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 50px 0;
}

.value-card {
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}

.value-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--accent-light);
}

.value-card .icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.value-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.value-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================================
   CONTACTO
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 60px 0;
}

.contact-info h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.contact-info p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-detail svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-detail div .label2 {
  font-size: 13px;
  color: var(--text-secondary);
}

.contact-detail div .val {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
}

.contact-form {
  background: var(--bg-section);
  padding: 36px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.contact-form h3 {
  font-size: 22px;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: var(--font-main);
  outline: none;
  transition: var(--transition);
  background: var(--bg-main);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-submit {
  width: 100%;
}

/* ============================================================
   MODAL CARRITO / TOAST
   ============================================================ */
.toast {
  position: fixed;
  bottom: 80px;
  right: 28px;
  background: var(--text-primary);
  color: #fff;
  padding: 14px 20px;
  border-radius: var(--radius);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 9999;
  pointer-events: none;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast svg {
  width: 18px;
  height: 18px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
/* Newsletter */
.newsletter-section {
  background: var(--accent-bg);
  padding: 80px 0;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.newsletter-section h3 {
  font-size: 32px;
  margin-bottom: 15px;
  color: var(--text-primary);
}

.newsletter-section p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 35px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 15px;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 15px 25px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 15px;
  outline: none;
  transition: var(--transition);
}

.newsletter-form input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(230, 156, 145, 0.1);
}

.newsletter-form button {
  background: var(--text-primary);
  color: #fff;
  border: none;
  padding: 0 40px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-form button:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .newsletter-form {
    flex-direction: column;
    padding: 0 20px;
  }

  .newsletter-form button {
    padding: 15px;
  }
}

/* ============================================================ */
@media (max-width: 1024px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .header-divider:nth-child(4) {
    display: none;
  }

  .header-info:last-of-type {
    display: none;
  }

  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .cart-layout {
    grid-template-columns: 1fr;
  }

  .cart-summary {
    position: static;
  }
}

@media (max-width: 768px) {
  .topbar .container {
    flex-direction: column;
    text-align: center;
    gap: 8px;
    padding: 10px 0;
  }

  .hero-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-banner {
    min-height: 400px;
  }

  .category-sidebar {
    display: none;
  }

  .header-inner {
    flex-wrap: wrap;
    gap: 15px;
  }

  .header-search-box {
    order: 3;
    width: 100%;
    max-width: 100%;
    margin-top: 5px;
  }

  .header-info {
    display: none;
  }

  .header-divider {
    display: none;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .shop-layout {
    grid-template-columns: 1fr;
  }

  .shop-sidebar {
    display: none;
  }

  .product-detail {
    grid-template-columns: 1fr;
  }

  .about-hero {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .nav-inner {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 5px;
  }

  .nav-inner::-webkit-scrollbar {
    display: none;
  }

  .nav-links {
    width: max-content;
    gap: 5px;
  }

  .nav-links a {
    padding: 12px 16px;
    font-size: 13px;
    white-space: nowrap;
  }

  .help-subnav .container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 5px;
    justify-content: flex-start;
  }

  .help-subnav .container::-webkit-scrollbar {
    display: none;
  }

  .help-nav-links {
    width: max-content;
    gap: 20px;
    padding: 0 10px;
  }

  .help-nav-links a {
    white-space: nowrap;
    font-size: 12px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  /* Mobile Dropdown Fix */
  .nav-dropdown:hover .dropdown-content {
    display: none;
    /* Disable native hover on mobile to avoid clipping inside nav-inner */
  }

  .nav-dropdown.show-mobile-menu .dropdown-content {
    display: block !important;
    position: fixed;
    bottom: 0px;
    top: auto;
    left: 0;
    width: 100vw;
    background: #fff;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    animation: slideUp 0.3s ease;
    padding-bottom: 20px;
    padding-top: 10px;
  }

  .nav-dropdown.show-mobile-menu .dropdown-content a {
    font-size: 16px !important;
    padding: 16px 20px !important;
    text-align: center !important;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }

  to {
    transform: translateY(0);
  }
}

/* ============================================================
   TESTIMONIALS SECTION (CARRUSEL)
   ============================================================ */
.testimonials-section {
  padding: 80px 0;
  background-color: var(--accent-bg);
  text-align: center;
  overflow: hidden;
  position: relative;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}

.testimonials-wrapper {
  overflow: hidden;
  padding: 20px 0 40px;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 30px;
}

.testimonial-card {
  min-width: calc(33.333% - 20px); /* 3 por fila en desktop */
  background: #fff;
  padding: 40px 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: auto;
  text-align: left;
}

@media (max-width: 992px) {
  .testimonial-card {
    min-width: calc(50% - 15px); /* 2 por fila en tablet */
  }
}

@media (max-width: 768px) {
  .testimonial-card {
    min-width: 100%; /* 1 por fila en móvil */
  }
  .testimonials-container {
    padding: 0 20px;
  }
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.testimonial-stars {
  color: var(--star);
  margin-bottom: 20px;
  font-size: 16px;
}

.testimonial-text {
  font-size: 14px;
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}

.testimonial-author {
  font-family: var(--font-script);
  font-size: 20px;
  color: var(--text-primary);
  font-weight: 600;
  margin-top: auto;
}

.google-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 30px;
  font-size: 11px;
  color: var(--text-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.google-badge svg {
  width: 14px;
  height: 14px;
}

/* Controles del Carrusel */
.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.carousel-btn {
  background: #fff;
  border: 1px solid var(--border);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.carousel-btn:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 25px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-dark);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--accent);
  width: 20px;
  border-radius: 10px;
}


@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .header-right-actions {
    gap: 15px;
  }

  .header-account-text {
    display: none;
  }

  .header-cart-info {
    display: none;
  }

  .hero-overlay {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    margin: 40px auto;
    max-width: 90%;
    padding: 24px 20px;
  }

  .hero-overlay h1 {
    font-size: 28px;
  }

  .hero-script-text {
    font-size: 20px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .site-logo img {
    height: 35px !important;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 15px;
    width: 50px;
    height: 50px;
  }

  .contact-form {
    margin-bottom: 80px;
    /* Espacio extra para que el botón de WhatsApp no tape el botón de enviar */
  }
}