/* ============================================================
   BELLEZA & EQUILIBRIO — Centro Estético
   styles.css — Sistema de diseño y estilos personalizados

   PALETA
   --color-cream:     #FDFBF7  fondo principal, cálido marfil
   --color-blush:     #F7E8E3  rosa pálido, secciones suaves
   --color-terracota: #C97B63  acento principal (botones, precios promo)
   --color-sage:      #8A9A87  acento secundario (vitaminas / bienestar)
   --color-charcoal:  #3A3631  texto principal
   --color-gold:      #B8985A  detalles premium, líneas, iconos

   TIPOGRAFÍA
   Fraunces  -> títulos (serif cálida, con carácter)
   Outfit    -> cuerpo / interfaz (sans geométrica, limpia)
   ============================================================ */

:root {
  --color-cream: #FDFBF7;
  --color-blush: #F7E8E3;
  --color-terracota: #C97B63;
  --color-terracota-dark: #B3624A;
  --color-sage: #8A9A87;
  --color-charcoal: #3A3631;
  --color-gold: #B8985A;
  --shadow-soft: 0 8px 30px rgba(58, 54, 49, 0.08);
  --shadow-medium: 0 16px 40px rgba(58, 54, 49, 0.14);
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 10px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Outfit", sans-serif;
  background-color: var(--color-cream);
  color: var(--color-charcoal);
  -webkit-font-smoothing: antialiased;
}

body.no-scroll {
  overflow: hidden;
}

h1, h2, h3, .font-display {
  font-family: "Fraunces", serif;
}

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

/* Scrollbar personalizado */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--color-blush);
}
::-webkit-scrollbar-thumb {
  background: var(--color-gold);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-terracota);
}

/* Foco visible para accesibilidad */
button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--color-terracota);
  outline-offset: 3px;
}

/* ============================================================
   BOTONES GENÉRICOS
   ============================================================ */

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: var(--color-terracota);
  color: var(--color-cream);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover {
  background-color: var(--color-terracota-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}
.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: transparent;
  color: var(--color-charcoal);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.7rem 1.2rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(58, 54, 49, 0.18);
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.btn-secondary:hover {
  border-color: var(--color-terracota);
  background-color: rgba(201, 123, 99, 0.06);
}

.btn-block {
  width: 100%;
}

.btn-agregado {
  background-color: var(--color-sage) !important;
}

/* ============================================================
   HEADER
   ============================================================ */

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background-color: rgba(253, 251, 247, 0.92);
  backdrop-filter: blur(8px);
  transition: box-shadow 0.3s ease, padding 0.3s ease;
  border-bottom: 1px solid transparent;
}

.header--scrolled {
  box-shadow: var(--shadow-soft);
  border-bottom-color: rgba(58, 54, 49, 0.06);
}

.header__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.header__logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: var(--color-terracota);
  color: var(--color-cream);
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.header__logo-mark--footer {
  background-color: var(--color-gold);
}

.header__logo-text {
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--color-charcoal);
  letter-spacing: 0.01em;
}
.header__logo-text em {
  font-style: italic;
  color: var(--color-terracota);
  font-weight: 400;
  margin: 0 0.05em;
}

.header__nav {
  display: none;
  gap: 2rem;
  font-size: 0.92rem;
  font-weight: 500;
}
.header__nav a {
  position: relative;
  padding: 0.3rem 0;
  transition: color 0.2s ease;
}
.header__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-terracota);
  transition: width 0.25s ease;
}
.header__nav a:hover {
  color: var(--color-terracota);
}
.header__nav a:hover::after {
  width: 100%;
}

@media (min-width: 900px) {
  .header__nav {
    display: flex;
  }
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.cart-toggle {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.2s ease;
  color: var(--color-charcoal);
}
.cart-toggle:hover {
  background-color: var(--color-blush);
}
.icon-cart-header {
  width: 22px;
  height: 22px;
}

.cart-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  background-color: var(--color-terracota);
  color: var(--color-cream);
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.cart-badge--visible {
  opacity: 1;
  transform: scale(1);
}

/* Menú hamburguesa */
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--color-charcoal);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.menu-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 900px) {
  .menu-toggle {
    display: none;
  }
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  max-height: 0;
  overflow: hidden;
  background-color: var(--color-cream);
  border-top: 1px solid rgba(58, 54, 49, 0.06);
  transition: max-height 0.35s ease;
}
.mobile-menu.is-open {
  max-height: 420px;
}
.mobile-menu a {
  padding: 0.85rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(58, 54, 49, 0.05);
}
.mobile-menu a:hover {
  background-color: var(--color-blush);
  color: var(--color-terracota);
}

@media (min-width: 900px) {
  .mobile-menu {
    display: none;
  }
}

/* ============================================================
   HERO / SLIDER
   ============================================================ */

.hero {
  position: relative;
  height: 85vh;
  min-height: 480px;
  max-height: 820px;
  overflow: hidden;
}

.slider-wrapper {
  display: flex;
  height: 100%;
  transition: transform 0.6s ease-in-out;
}

.slide {
  flex: 0 0 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.slide__content {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  padding: 0 1.5rem;
  color: #fff;
}

.slide__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.1;
  max-width: 14ch;
  margin-bottom: 0.85rem;
  animation: heroFadeUp 0.8s ease both;
}

.slide__subtitle {
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  max-width: 38ch;
  margin-bottom: 1.75rem;
  opacity: 0.92;
  font-weight: 300;
  animation: heroFadeUp 0.8s 0.1s ease both;
}

.slide .btn-cta-slide {
  animation: heroFadeUp 0.8s 0.2s ease both;
}

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

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(253, 251, 247, 0.85);
  color: var(--color-charcoal);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.slider-arrow svg {
  width: 20px;
  height: 20px;
}
.slider-arrow:hover {
  background-color: var(--color-cream);
  transform: translateY(-50%) scale(1.08);
}
.slider-arrow--prev {
  left: 1rem;
}
.slider-arrow--next {
  right: 1rem;
}

@media (min-width: 768px) {
  .slider-arrow--prev { left: 2rem; }
  .slider-arrow--next { right: 2rem; }
}

.slider-dots {
  position: absolute;
  bottom: 1.75rem;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  z-index: 10;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(253, 251, 247, 0.5);
  border: none;
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.25s ease;
  padding: 0;
}
.slider-dot--active {
  background-color: var(--color-cream);
  transform: scale(1.25);
}

/* ============================================================
   SECCIÓN DE SERVICIOS
   ============================================================ */

.section-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

.services-section {
  background-color: var(--color-cream);
}

.section-eyebrow {
  display: block;
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold);
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.section-title {
  text-align: center;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 600;
  color: var(--color-charcoal);
  margin-bottom: 0.75rem;
}

.section-title--left {
  text-align: left;
}

.section-subtitle {
  text-align: center;
  max-width: 50ch;
  margin: 0 auto 2.75rem;
  color: rgba(58, 54, 49, 0.7);
  font-size: 0.98rem;
  line-height: 1.6;
}

/* Filtros de categoría */
.filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 3rem;
}

.filter-btn {
  font-family: "Outfit", sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.6rem 1.3rem;
  border-radius: 999px;
  border: 1.5px solid rgba(58, 54, 49, 0.14);
  background-color: transparent;
  color: var(--color-charcoal);
  cursor: pointer;
  transition: all 0.25s ease;
}
.filter-btn:hover {
  border-color: var(--color-terracota);
}
.filter-btn--active {
  background-color: var(--color-terracota);
  border-color: var(--color-terracota);
  color: var(--color-cream);
}

/* Grid de tarjetas */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  transition: opacity 0.18s ease;
}
.services-grid--fading {
  opacity: 0;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1280px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.services-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem 1rem;
  color: rgba(58, 54, 49, 0.55);
  font-style: italic;
}

/* Tarjeta de servicio */
.service-card {
  background-color: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  animation: cardFadeIn 0.45s ease both;
}
@keyframes cardFadeIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-medium);
}

.service-card__image-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.service-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card__image {
  transform: scale(1.07);
}

.service-card__badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  background-color: rgba(253, 251, 247, 0.92);
  color: var(--color-terracota);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.32rem 0.7rem;
  border-radius: 999px 999px 999px 4px;
}

.service-card__body {
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card__title {
  font-size: 1.12rem;
  font-weight: 600;
  margin-bottom: 0.45rem;
  color: var(--color-charcoal);
}

.service-card__desc {
  font-size: 0.85rem;
  color: rgba(58, 54, 49, 0.65);
  line-height: 1.55;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.service-card__prices {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  margin-bottom: 1.1rem;
}
.service-card__price-old {
  font-size: 0.85rem;
  color: rgba(58, 54, 49, 0.4);
  text-decoration: line-through;
}
.service-card__price-promo {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-terracota);
  font-family: "Fraunces", serif;
}

.service-card__actions {
  display: flex;
  gap: 0.6rem;
}
.service-card__actions .btn-secondary {
  flex: 1;
  font-size: 0.82rem;
  padding: 0.65rem 0.5rem;
}
.service-card__actions .btn-primary {
  flex: 1;
  font-size: 0.82rem;
  padding: 0.65rem 0.5rem;
}
.icon-cart {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ============================================================
   MODAL DE DETALLE
   ============================================================ */

.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(58, 54, 49, 0.55);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.modal {
  background-color: var(--color-cream);
  border-radius: var(--radius-lg);
  max-width: 560px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.94) translateY(10px);
  transition: transform 0.3s ease;
  box-shadow: var(--shadow-medium);
}
.modal-overlay.is-open .modal {
  transform: scale(1) translateY(0);
}

.modal__close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(253, 251, 247, 0.92);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  color: var(--color-charcoal);
  transition: background-color 0.2s ease;
}
.modal__close:hover {
  background-color: #fff;
}
.modal__close svg {
  width: 18px;
  height: 18px;
}

.modal__image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.modal__content {
  padding: 1.75rem;
}

.modal__badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-terracota);
  background-color: var(--color-blush);
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}

.modal__title {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.modal__desc {
  font-size: 0.92rem;
  color: rgba(58, 54, 49, 0.7);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.modal__benefits {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.modal__benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--color-charcoal);
}
.icon-check {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
  color: var(--color-sage);
  margin-top: 1px;
}

.modal__prices {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(58, 54, 49, 0.08);
}
.modal__price-old {
  font-size: 1rem;
  color: rgba(58, 54, 49, 0.4);
  text-decoration: line-through;
}
.modal__price-promo {
  font-size: 1.85rem;
  font-weight: 700;
  font-family: "Fraunces", serif;
  color: var(--color-terracota);
}

/* ============================================================
   SIDE CART (CARRITO LATERAL)
   ============================================================ */

.cart-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(58, 54, 49, 0.5);
  z-index: 110;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.cart-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  max-width: 420px;
  background-color: var(--color-cream);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  box-shadow: -10px 0 40px rgba(58, 54, 49, 0.15);
}
.cart-overlay.is-open .cart-drawer {
  transform: translateX(0);
}

.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(58, 54, 49, 0.08);
}
.cart-drawer__title {
  font-size: 1.3rem;
  font-weight: 600;
}
.cart-drawer__close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background-color: var(--color-blush);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-charcoal);
  transition: background-color 0.2s ease;
}
.cart-drawer__close:hover {
  background-color: var(--color-terracota);
  color: #fff;
}
.cart-drawer__close svg {
  width: 16px;
  height: 16px;
}

.cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.5rem;
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3.5rem 1rem;
  color: rgba(58, 54, 49, 0.55);
}
.cart-empty.hidden {
  display: none;
}
.cart-empty__icon {
  width: 52px;
  height: 52px;
  margin-bottom: 1rem;
  opacity: 0.4;
}
.cart-empty p {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--color-charcoal);
  margin-bottom: 0.4rem;
}
.cart-empty span {
  font-size: 0.85rem;
  max-width: 26ch;
}

.cart-items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-item {
  display: flex;
  gap: 0.85rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(58, 54, 49, 0.08);
  animation: cardFadeIn 0.3s ease both;
}

.cart-item__image {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
}

.cart-item__info {
  flex: 1;
  min-width: 0;
}
.cart-item__name {
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 0.15rem;
}
.cart-item__category {
  display: inline-block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-sage);
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.cart-item__price {
  font-size: 0.78rem;
  color: rgba(58, 54, 49, 0.55);
  margin-bottom: 0.5rem;
}

.cart-item__qty {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background-color: var(--color-blush);
  border-radius: 999px;
  padding: 0.2rem 0.5rem;
}
.qty-btn {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: none;
  background-color: #fff;
  color: var(--color-charcoal);
  font-size: 1rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.qty-btn:hover {
  background-color: var(--color-terracota);
  color: #fff;
}
.qty-value {
  font-size: 0.85rem;
  font-weight: 600;
  min-width: 1ch;
  text-align: center;
}

.cart-item__side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
}
.cart-item__subtotal {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--color-terracota);
  white-space: nowrap;
}
.cart-item__remove {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(58, 54, 49, 0.4);
  padding: 0.2rem;
  transition: color 0.2s ease;
}
.cart-item__remove:hover {
  color: #b3402c;
}
.icon-trash {
  width: 17px;
  height: 17px;
}

.cart-drawer__footer {
  padding: 1.25rem 1.5rem 1.5rem;
  border-top: 1px solid rgba(58, 54, 49, 0.08);
  background-color: var(--color-cream);
}
.cart-drawer__footer.hidden {
  display: none;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1rem;
  font-weight: 600;
}
.cart-total-row span:first-child {
  font-size: 0.95rem;
  color: rgba(58, 54, 49, 0.7);
}
#cart-total {
  font-family: "Fraunces", serif;
  font-size: 1.5rem;
  color: var(--color-terracota);
}

.cart-footer-note {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(58, 54, 49, 0.5);
  margin-top: 0.75rem;
}

/* ============================================================
   SECCIÓN NOSOTROS
   ============================================================ */

.about-section {
  background-color: var(--color-blush);
  padding: 5rem 1.5rem;
}

.about-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .about-inner {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.about-image-wrap {
  position: relative;
}
.about-image {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-medium);
}
.about-image-tag {
  position: absolute;
  bottom: -1rem;
  left: 1.5rem;
  background-color: var(--color-cream);
  color: var(--color-terracota);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
}

.about-text {
  font-size: 0.97rem;
  line-height: 1.7;
  color: rgba(58, 54, 49, 0.75);
  margin-bottom: 1.1rem;
}

.about-stats {
  display: flex;
  gap: 2rem;
  margin-top: 1.75rem;
  flex-wrap: wrap;
}
.about-stat {
  display: flex;
  flex-direction: column;
}
.about-stat__number {
  font-family: "Fraunces", serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--color-terracota);
}
.about-stat__label {
  font-size: 0.78rem;
  color: rgba(58, 54, 49, 0.6);
  max-width: 14ch;
}

/* ============================================================
   FOOTER / CONTACTO
   ============================================================ */

.footer {
  background-color: var(--color-charcoal);
  color: rgba(253, 251, 247, 0.85);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 1.5rem 2.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 700px) {
  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .footer-inner {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--color-cream);
  margin-bottom: 0.9rem;
}
.footer-logo em {
  color: var(--color-gold);
  font-style: italic;
  font-weight: 400;
  margin: 0 0.05em;
}

.footer-text {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(253, 251, 247, 0.6);
  margin-bottom: 1.25rem;
  max-width: 32ch;
}

.footer-socials {
  display: flex;
  gap: 0.65rem;
}
.footer-social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(253, 251, 247, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}
.footer-social-icon:hover {
  background-color: var(--color-terracota);
}
.footer-social-icon svg {
  width: 16px;
  height: 16px;
}

.footer-heading {
  font-family: "Fraunces", serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-cream);
  margin-bottom: 1rem;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: rgba(253, 251, 247, 0.65);
}
.footer-list a:hover {
  color: var(--color-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(253, 251, 247, 0.1);
  text-align: center;
  padding: 1.25rem 1.5rem;
  font-size: 0.8rem;
  color: rgba(253, 251, 247, 0.45);
}

/* ============================================================
   BOTÓN FLOTANTE DE WHATSAPP
   ============================================================ */

.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-medium);
  z-index: 90;
  animation: floatPulse 2.4s ease-in-out infinite;
  transition: transform 0.2s ease;
}
.whatsapp-float:hover {
  transform: scale(1.08);
}
.icon-whatsapp {
  width: 28px;
  height: 28px;
}

@keyframes floatPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45), var(--shadow-medium); }
  50% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0), var(--shadow-medium); }
}

/* ============================================================
   UTILIDADES
   ============================================================ */

.hidden {
  display: none !important;
}

/* Respeta la preferencia de movimiento reducido */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
