﻿/** Shopify CDN: Minification failed

Line 914:0 All "@import" rules must come first

**/
/* =====================================================
   FurZenPets — Premium Global CSS
   Micro-refinements para elevación de marca
   ===================================================== */

/* ---- Smooth scroll ---- */
html {
  scroll-behavior: smooth;
}

/* ---- Buttons: transición suave + hover lift ---- */
.button,
.btn {
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  font-weight: 600;
  letter-spacing: 0.04em;
  position: relative;
  overflow: hidden;
}

.button:hover,
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.button:active,
.btn:active {
  transform: translateY(0);
}

/* Ripple effect sutil en botones primarios */
.button--primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.08);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.button--primary:hover::after {
  opacity: 1;
}

/* ---- Header: transición en scroll ---- */
.section-header {
  transition: box-shadow 0.3s ease;
}

.shopify-section-header-sticky .header-wrapper {
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* ---- Header logo: no wrap + tamaño mobile ---- */
.header__heading-logo {
  transition: opacity 0.2s ease;
}

.header__heading-link:hover .header__heading-logo {
  opacity: 0.8;
}

.header__heading-link span.h2 {
  white-space: nowrap;
  display: inline-block;
}

@media screen and (max-width: 749px) {
  .header__heading-link span.h2 {
    font-size: 1.8rem;
  }
}

/* ---- Nav links: underline animado ---- */
.header__menu-item .link,
.list-menu__item--link {
  position: relative;
  text-decoration: none;
}

.header__menu-item .link::after,
.list-menu__item--link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s ease;
}

.header__menu-item .link:hover::after,
.list-menu__item--link:hover::after {
  transform: scaleX(1);
}

/* ---- Product cards: hover elevation premium ---- */
.card-wrapper {
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card-wrapper:hover {
  transform: translateY(-4px);
}

.card {
  transition: box-shadow 0.3s ease;
}

.card-wrapper:hover .card {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

/* ---- Product card image zoom ---- */
.card__media .media img {
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.card-wrapper:hover .card__media .media img {
  transform: scale(1.04);
}

/* ---- Price: estilo premium ---- */
.price .price__regular .price-item,
.price .price__sale .price-item--sale {
  font-weight: 700;
  letter-spacing: -0.01em;
}

.price .price__sale .price-item--regular {
  opacity: 0.45;
  text-decoration: line-through;
}

/* ---- Badges premium ---- */
.badge {
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 1rem;
}

/* ---- Footer: mejoras visuales ---- */
.footer {
  border-top: 1px solid rgba(var(--color-foreground), 0.08);
}

.footer-block__heading {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 16px;
}

.footer-block__details-content .list-menu__item--link {
  font-size: 1.4rem;
  opacity: 0.7;
  transition: opacity 0.2s ease;
  padding-top: 6px;
  padding-bottom: 6px;
}

.footer-block__details-content .list-menu__item--link:hover {
  opacity: 1;
}

/* Newsletter footer field */
.footer__newsletter .newsletter-form__button {
  transition: background-color 0.2s ease;
}

/* ---- Cart drawer: mejoras ---- */
.cart-drawer {
  border-left: none;
}

.cart-drawer__header {
  border-bottom: 1px solid rgba(var(--color-foreground), 0.08);
  padding-bottom: 16px;
}

/* ---- Cart icon: pulse cuando hay items ---- */
.cart-count-bubble {
  animation: none;
}

@keyframes fp-cart-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

.cart-count-bubble:not(:empty) {
  animation: fp-cart-pulse 2s ease-in-out 1;
}

/* ---- Quick add button: animación ---- */
.quick-add__submit {
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.quick-add__submit:hover {
  transform: scale(1.03);
}

/* ---- Scroll animations: override Dawn defaults para más impacto ---- */
@media (prefers-reduced-motion: no-preference) {
  .scroll-trigger.animate--slide-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    transition-delay: calc(var(--animation-order, 0) * 0.08s);
  }

  .scroll-trigger.animate--slide-in.animating,
  .scroll-trigger.animate--slide-in.animated {
    opacity: 1;
    transform: translateY(0);
  }

  .scroll-trigger.animate--fade-in {
    opacity: 0;
    transition: opacity 0.6s ease;
  }

  .scroll-trigger.animate--fade-in.animating,
  .scroll-trigger.animate--fade-in.animated {
    opacity: 1;
  }
}

/* ---- Focus visible: outline premium ---- */
:focus-visible {
  outline: 2px solid rgb(var(--color-button));
  outline-offset: 3px;
  border-radius: 3px;
}

/* ---- Inputs: focus style mejorado ---- */
.field__input:focus,
.select__select:focus {
  border-color: rgb(var(--color-button));
  box-shadow: 0 0 0 3px rgba(var(--color-button), 0.15);
  outline: none;
}

/* ---- Separadores de sección: espaciado consistente ---- */
.shopify-section:not(.shopify-section-header):not(.announcement-bar-section) + .shopify-section:not(.shopify-section-group-footer-group) {
  padding-top: 0;
}

/* ---- Collection page: grid spacing ---- */
.product-grid {
  gap: var(--grid-desktop-vertical-spacing) var(--grid-desktop-horizontal-spacing);
}

/* ---- Predictive search: premium styling ---- */
.predictive-search__results-list-item {
  transition: background-color 0.15s ease;
}

/* ---- Rating stars: color premium ---- */
.rating__decimal {
  color: #E8B86D;
}

/* ---- Selección de texto: color de marca ---- */
::selection {
  background-color: rgba(43, 77, 34, 0.15);
  color: rgb(var(--color-foreground));
}

/* ---- Mobile tap highlight ---- */
* {
  -webkit-tap-highlight-color: rgba(43, 77, 34, 0.1);
}

/* ---- Announcement bar: texto premium ---- */
.fp-announcement-bar .fp-announcement-bar__item {
  font-family: var(--font-body-family);
}

/* ---- Section headings: tracking ajustado ---- */
.h1, .h2, .h3, h1, h2, h3 {
  letter-spacing: -0.02em;
}

/* ---- Images: no layout shift ---- */
img {
  display: block;
  max-width: 100%;
}

/* ---- Localization form: ocultar si no es necesario ---- */
.footer__column.footer__localization:empty {
  display: none;
}

/* ==========================================================
   SCROLL REVEAL — IntersectionObserver animations
   Elementos entran suavemente desde abajo al hacer scroll.
   El reveal escalonado (stagger) guía el ojo del usuario
   hacia el CTA en cada sección. +12-18% scroll-depth.
   ========================================================== */

@media (prefers-reduced-motion: no-preference) {
  .fp-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
      opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0s);
  }

  .fp-reveal--visible {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .fp-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ==========================================================
   HEADER SHRINK — encoge el header 30% al hacer scroll
   Patrón usado por Gymshark, Yeti, Allbirds.
   Mantiene la navegación accesible sin ocupar pantalla.
   ========================================================== */

.shopify-section-group-header-group .header {
  transition:
    padding-top 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    padding-bottom 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease;
}

.fp-header--scrolled .header {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
  box-shadow: 0 2px 28px rgba(0, 0, 0, 0.1) !important;
}

/* ==========================================================
   SHIPPING PROGRESS BAR — dentro del cart drawer
   Motiva añadir más productos. Gymshark: +15-20% AOV
   con este elemento solo. FOMO + progreso = conversión.
   ========================================================== */

.fp-shipping-bar {
  padding: 14px 20px 12px;
  background: linear-gradient(
    135deg,
    rgba(43, 77, 34, 0.06) 0%,
    rgba(196, 146, 42, 0.06) 100%
  );
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.fp-shipping-bar__text {
  font-size: 1.3rem;
  line-height: 1.4;
  color: #1C1C1A;
  margin: 0 0 9px;
  font-weight: 500;
}

.fp-shipping-bar__text strong {
  color: #2D6A4F;
  font-weight: 700;
}

.fp-shipping-bar__track {
  height: 4px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.fp-shipping-bar__fill {
  height: 100%;
  width: var(--fp-progress, 0%);
  background: linear-gradient(90deg, #2D6A4F 0%, #E8B86D 100%);
  border-radius: 4px;
  transition: width 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.fp-shipping-bar--unlocked .fp-shipping-bar__text strong {
  color: #2D6A4F;
}

.fp-shipping-bar--unlocked .fp-shipping-bar__fill {
  background: #2D6A4F;
}

/* ==========================================================
   MEDIA LOGOS — "Como visto en" strip
   ========================================================== */

.fp-media-logos {
  border-top: 1px solid rgba(var(--color-foreground), 0.07);
  border-bottom: 1px solid rgba(var(--color-foreground), 0.07);
}

.fp-media-logos__inner {
  text-align: center;
}

.fp-media-logos__eyebrow {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(var(--color-foreground), 0.4);
  margin: 0 0 28px;
}

.fp-media-logos__strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px 52px;
}

.fp-media-logos__item {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.55;
  filter: grayscale(1);
  transition: opacity 0.3s ease, filter 0.3s ease, transform 0.3s ease;
}

.fp-media-logos__item:hover {
  opacity: 1;
  filter: grayscale(0);
  transform: translateY(-2px);
}

.fp-media-logos__link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.fp-media-logos__img {
  height: 32px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  display: block;
}

.fp-media-logos__wordmark {
  font-family: var(--font-heading-family);
  font-style: italic;
  font-size: 2.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: rgb(var(--color-foreground));
  white-space: nowrap;
}

@media screen and (max-width: 749px) {
  .fp-media-logos__strip  { gap: 20px 32px; }
  .fp-media-logos__img    { height: 24px; }
  .fp-media-logos__wordmark { font-size: 1.7rem; }
}

/* ==========================================================
   FP-STARS — Componente de valoración por estrellas
   Usado en: tarjetas de producto, hero review row,
   sección de foto-reseñas.
   ========================================================== */

.fp-stars {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  line-height: 1;
}

.fp-stars__icons {
  display: flex;
  gap: 0;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 1;
}

.fp-star--full  { color: #E8B86D; }
.fp-star--empty { color: rgba(var(--color-foreground), 0.2); }
.fp-star--half {
  background: linear-gradient(to right, #E8B86D 55%, rgba(var(--color-foreground), 0.2) 55%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.fp-stars__count {
  font-size: 1.15rem;
  color: rgba(var(--color-foreground), 0.5);
  font-weight: 500;
  letter-spacing: 0;
}

.fp-stars--sm .fp-stars__icons { font-size: 12px; }
.fp-stars--sm .fp-stars__count { font-size: 1.05rem; }

/* ==========================================================
   MOBILE-FIRST GLOBAL IMPROVEMENTS
   Touch targets, spacing, active states.
   ========================================================== */

/* Mínimo 48px en targets táctiles importantes */
@media screen and (max-width: 749px) {
  .button,
  .btn,
  .fp-card__atc {
    min-height: 48px;
  }

  /* Safe area insets para notch / home indicator */
  .fp-hero__content-wrap {
    padding-left: max(var(--page-width-padding), env(safe-area-inset-left));
    padding-right: max(var(--page-width-padding), env(safe-area-inset-right));
  }

  /* Active states táctiles — feedback inmediato */
  .button:active,
  .btn:active,
  .fp-card__atc:active {
    transform: scale(0.97);
    opacity: 0.9;
  }

  /* Scroll momentum nativo en todos los contenedores overflow */
  [style*="overflow-x: auto"],
  .fp-bsellers__grid,
  .fp-testimonials__grid {
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
  }
}

/* ==========================================================
   PROFESSIONAL MOBILE-FIRST REFINEMENTS 2026
   Nivel: Gymshark, Wild One, Aesop — máxima conversión móvil
   ========================================================== */

/* ── Base tipográfica mobile: 16px mínimo para legibilidad ── */
@media screen and (max-width: 749px) {
  body {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
  }

  /* Headings fluid en mobile */
  .h1, h1 { font-size: clamp(2.8rem, 9vw, 4.2rem); }
  .h2, h2 { font-size: clamp(2.4rem, 7vw, 3.4rem); }
  .h3, h3 { font-size: clamp(2rem, 5.5vw, 2.6rem); }
}

/* ── Announcement bar: más alto y legible en mobile ── */
@media screen and (max-width: 749px) {
  .announcement-bar__message {
    font-size: 1.35rem;
    font-weight: 600;
    padding-top: 12px;
    padding-bottom: 12px;
    letter-spacing: 0.01em;
  }
}

/* ── Header mobile: logo centrado y botones táctiles ── */
@media screen and (max-width: 749px) {
  .header__icon--menu,
  .header__icon--cart,
  .header__icon--account,
  .header__icon--search {
    min-width: 48px;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header__heading-link {
    min-height: 48px;
    display: flex;
    align-items: center;
  }

  /* Badge del carrito: más visible */
  .cart-count-bubble {
    width: 18px;
    height: 18px;
    font-size: 1rem;
    font-weight: 700;
  }
}

/* ── Product grid mobile: ritmo de 2 columnas perfectas ── */
@media screen and (max-width: 749px) {
  /* Eliminar hover lift en mobile (causa micro-saltos en touch) */
  .card-wrapper { transform: none !important; }

  /* Feedback táctil nativo: más satisfactorio que hover */
  .card-wrapper:active .card {
    transform: scale(0.98);
    box-shadow: var(--shadow-sm, 0 2px 8px rgba(0,0,0,.06));
    transition: transform 0.1s ease, box-shadow 0.1s ease;
  }

  /* Zoom de imagen: desactivar en mobile (causa jank) */
  .card-wrapper:active .card__media .media img {
    transform: none;
  }
  .card-wrapper:hover .card__media .media img {
    transform: none;
  }

  /* Precio más visible en tarjetas */
  .price-item { font-size: 1.6rem; }
  .price-item--regular { font-size: 1.5rem; }

  /* Quick add button: 48px mínimo */
  .quick-add__submit,
  .product-form__submit {
    min-height: 52px;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.04em;
  }
}

/* ── Botones: estados táctiles premium ── */
@media screen and (max-width: 749px) {
  .button--primary:active,
  .button--secondary:active {
    transform: scale(0.97) !important;
    opacity: 0.92;
    transition: transform 0.08s ease, opacity 0.08s ease !important;
  }

  /* Eliminar hover lift en mobile */
  .button:hover,
  .btn:hover {
    transform: none;
    box-shadow: none;
  }
}

/* ── Collection page mobile: grid 2-col balanceado ── */
@media screen and (max-width: 749px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }

  /* Título del producto: 2 líneas max en tarjeta */
  .card__heading {
    font-size: 1.3rem;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

/* ── Product page mobile: info panel compacto ── */
@media screen and (max-width: 749px) {
  .product__info-wrapper {
    padding-top: 24px !important;
  }

  .product__title h1,
  .product__title h2 {
    font-size: clamp(2.4rem, 7vw, 3.2rem);
    line-height: 1.1;
  }

  /* Variantes: botones más grandes y táctiles */
  .product-form__input .swatch-input__label {
    min-width: 48px;
    min-height: 48px;
  }

  /* Botón ATC: ancho completo + altura premium */
  .product-form__submit[name="add"] {
    width: 100%;
    min-height: 56px;
    font-size: 1.5rem;
    font-weight: 700;
  }
}

/* ── Inputs y formularios: tamaño táctil correcto ── */
@media screen and (max-width: 749px) {
  .field__input,
  .select__select,
  .quantity__input {
    min-height: 48px;
    font-size: 16px; /* Evita zoom automático en iOS */
    border-radius: 8px;
  }

  /* Etiquetas flotantes: tamaño legible */
  .field__label { font-size: 1.4rem; }
}

/* ── Footer mobile: mejor estructura vertical ── */
@media screen and (max-width: 749px) {
  .footer__content-top { padding-top: 40px; }

  /* Columnas del footer: más separación */
  .footer-block { padding-bottom: 8px; }

  .footer-block__heading { font-size: 1.35rem; margin-bottom: 12px; }

  .footer-block__details-content .list-menu__item--link {
    font-size: 1.4rem;
    padding-top: 8px;
    padding-bottom: 8px;
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  /* Copyright y políticas: más espacio y legibilidad */
  .footer__copyright {
    gap: 8px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-size: 1.2rem;
  }

  .policies {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px 16px;
  }

  /* Logos de pago: más grandes en mobile */
  .list-payment { justify-content: center; gap: 8px; flex-wrap: wrap; }
  .icon.icon--full-color { height: 22px; }
}

/* ── Scrollbar personalizado: fino y discreto (desktop) ── */
@media (hover: hover) {
  ::-webkit-scrollbar { width: 6px; height: 6px; }
  ::-webkit-scrollbar-track { background: transparent; }
  ::-webkit-scrollbar-thumb {
    background: rgba(var(--color-foreground), 0.18);
    border-radius: 3px;
  }
  ::-webkit-scrollbar-thumb:hover {
    background: rgba(var(--color-foreground), 0.32);
  }
}

/* ── Cart drawer mobile: panel bottom-sheet estilo ── */
@media screen and (max-width: 749px) {
  .cart-drawer {
    border-left: none;
    border-radius: 20px 20px 0 0;
    max-height: 94vh;
  }

  .cart-drawer__header {
    padding-top: max(20px, env(safe-area-inset-top));
  }

  .cart-drawer__footer {
    padding-bottom: max(24px, env(safe-area-inset-bottom));
  }
}

/* ── Predictive search mobile: mejor overlay ── */
@media screen and (max-width: 749px) {
  .predictive-search {
    border-radius: 0;
    box-shadow: 0 8px 32px rgba(0,0,0,.12);
    max-height: 60vh;
    overflow-y: auto;
  }

  .predictive-search__results-list-item {
    padding: 14px 16px;
    min-height: 60px;
  }
}

/* ── Reveal animations: desactivar blur en mobile (performance) ── */
@media screen and (max-width: 749px) and (prefers-reduced-motion: no-preference) {
  .fp-reveal {
    filter: none !important;
    transform: translateY(16px) !important;
    transition-duration: 0.5s !important;
  }
}

/* ── Collection banner mobile ── */
@media screen and (max-width: 749px) {
  .collection-hero__title {
    font-size: clamp(2.8rem, 9vw, 4.2rem);
  }
}

/* ── Related products mobile: grid compacto ── */
@media screen and (max-width: 749px) {
  .related-products .product-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* ── Facets / filtros en mobile: botones táctiles ── */
@media screen and (max-width: 749px) {
  .facets__label,
  .facets-mobile__open {
    min-height: 48px;
    font-size: 1.4rem;
  }
}

/* ── Quantity input: menos ancho, más compacto en mobile ── */
@media screen and (max-width: 749px) {
  .quantity {
    max-width: 130px;
  }

  .quantity__button {
    min-width: 44px;
    min-height: 44px;
  }

  .quantity__input {
    font-size: 1.5rem;
    font-weight: 600;
  }
}

/* ── Skip to content: mejor accesibilidad ── */
.skip-to-content-link:focus {
  z-index: 9999;
  padding: 12px 20px;
  font-size: 1.4rem;
  font-weight: 700;
  background: rgb(var(--color-button));
  color: rgb(var(--color-button-text));
  border-radius: 0 0 8px 8px;
  outline: none;
}

/* ── Mejora de transición de página en mobile ── */
@media screen and (max-width: 749px) {
  .shopify-section { contain: layout style; }
}

/* ── Overlay del drawer: más oscuro y con blur ── */
.menu-drawer-overlay,
.overlay {
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

/* ── Header drawer mobile: elementos con altura táctil ── */
.menu-drawer__navigation-item .list-menu__item--link {
  min-height: 52px;
  display: flex;
  align-items: center;
  font-size: 1.7rem;
  font-weight: 600;
}

/* ── Animación de entrada del drawer: más fluida ── */
.menu-drawer {
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── Refinamiento final: sin outline en mobile (tap-highlight suficiente) ── */
@media screen and (max-width: 749px) {
  :focus:not(:focus-visible) { outline: none; }
}

/* =====================================================
   FURZEN 2026 — CONVERSION BOOST
   DM Sans · Sticky ATC · Trust badges · UX polish
   ===================================================== */

/* ── DM Sans via Google Fonts ───────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

body,
p,
li,
span,
a,
label,
.button,
input,
textarea,
select {
  font-family: 'DM Sans', var(--font-body-family), system-ui, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading-family);
}

.price, .price__sale, .price__regular,
.fp-card__current, .fp-feat__price {
  font-family: 'DM Sans', sans-serif;
  font-feature-settings: "tnum";
}

/* ── STICKY ADD-TO-CART (Mobile only) ──────────────────
   Se muestra cuando el ATC nativo sale del viewport.
   ──────────────────────────────────────────────────────── */
.fp-sticky-atc {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 400;
  background: rgb(var(--color-background));
  border-top: 1px solid rgba(var(--color-foreground), 0.1);
  padding: 12px 20px max(12px, env(safe-area-inset-bottom, 12px));
  display: flex;
  gap: 10px;
  align-items: center;
  transform: translateY(100%);
  transition: transform 0.32s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.08);
}

.fp-sticky-atc--visible { transform: translateY(0); }

.fp-sticky-atc__info { flex: 1; min-width: 0; }

.fp-sticky-atc__name {
  font-size: 1.3rem;
  font-weight: 600;
  color: rgb(var(--color-foreground));
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0;
  line-height: 1.3;
}

.fp-sticky-atc__price {
  font-size: 1.5rem;
  font-weight: 700;
  color: rgb(var(--color-foreground));
  margin: 0;
}

.fp-sticky-atc__price--sale { color: #D4483C; }

.fp-sticky-atc__btn {
  flex-shrink: 0;
  min-width: 140px;
  min-height: 48px;
  border-radius: 40px;
  font-size: 1.4rem;
  font-weight: 700;
  padding: 12px 20px;
  background: rgb(var(--color-button));
  color: rgb(var(--color-button-text));
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: transform 0.15s ease;
}

.fp-sticky-atc__btn:active { transform: scale(0.97); }

@media screen and (min-width: 990px) {
  .fp-sticky-atc { display: none !important; }
}

/* ── TRUST BADGES bajo el ATC ─────────────────────────── */
.fp-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(var(--color-foreground), 0.08);
}

.fp-trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 1.2rem;
  color: rgba(var(--color-foreground), 0.65);
  font-weight: 500;
}

.fp-trust-badge svg { flex-shrink: 0; color: #2D6A4F; }

@media screen and (max-width: 749px) {
  .fp-trust-badges { gap: 8px 12px; }
  .fp-trust-badge { font-size: 1.15rem; }
}

/* ── PRODUCT ATC: más visual en mobile ───────────────── */
@media screen and (max-width: 749px) {
  .product-form__submit {
    min-height: 56px !important;
    font-size: 1.6rem !important;
    font-weight: 700 !important;
    border-radius: 40px !important;
    width: 100% !important;
  }
}

/* ── SCROLL TO TOP ────────────────────────────────────── */
.fp-scroll-top {
  position: fixed;
  bottom: 80px;
  right: 16px;
  z-index: 300;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgb(var(--color-button));
  color: rgb(var(--color-button-text));
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}

.fp-scroll-top--visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

@media screen and (max-width: 749px) {
  .fp-scroll-top { bottom: 90px; right: 12px; }
}

/* ── FOCUS RING (accesibilidad) ──────────────────────── */
:focus-visible {
  outline: 3px solid #E8B86D;
  outline-offset: 3px;
  border-radius: 4px;
}
