/* ===========================
   HOME.CSS — Momenti
   All page sections
   =========================== */

/* ======= HERO ======= */
.hero-section {
  min-height: 100vh;
  padding-top: 80px;               /* Offset for fixed header */
  display: grid;
  grid-template-columns: 45% 55%;
  grid-template-rows: 1fr;
  align-items: center;
  background: radial-gradient(circle at 75% 40%, #FFFFFF 0%, #FCF8F5 60%, #F7EFEA 100%);
  overflow: hidden;
  position: relative;
}

/* Decorative golden branch — top-left, BEHIND header */
.hero-section::before {
  content: "";
  background: url('../assets/banners/ramaSuperior.png') no-repeat top left;
  background-size: contain;
  width: 280px;
  height: 280px;
  position: absolute;
  top: 80px;       /* starts right where header ends */
  left: 0;
  opacity: 0.75;
  z-index: 0;      /* behind content, behind header */
  pointer-events: none;
}

.hero-content {
  padding: 48px 4% 48px 8%; /* 8% matches the padding of other sections */
  animation: fadeInUp 0.8s ease-out both;
  z-index: 1;
  position: relative;
}

.hero-text-block {
  padding-left: 15%; /* Push text MAS MAS A LA DERECHA */
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(229,152,148,0.12);
  color: var(--rose);
  font-family: var(--font-ui);
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 1.6rem;
}

.hero-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
}
/* Golden heart image inline at end of title */
.hero-title-heart {
  display: inline;
  width: 28px;
  height: 28px;
  object-fit: contain;
  vertical-align: middle;
  margin-left: 4px;
  position: relative;
  top: -3px;
}

.hero-desc {
  font-size: 0.98rem;
  color: var(--text-mid);
  max-width: 360px;
  margin-bottom: 2.2rem;
  line-height: 1.75;
}

/* Hero visual — PNG floats freely, NO rigid box */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 520px;
  padding: 20px 4% 20px 0;
  z-index: 1;
}

/* Key fix: PNG with transparent bg — use CONTAIN, no crop */
.hero-product-img {
  width: 100%;
  max-width: 580px;
  height: auto;
  object-fit: contain;       /* ← No más recorte cuadrado */
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 24px 48px rgba(197,168,128,0.22));
  animation: fadeInRight 0.9s 0.15s ease-out both;
}

/* Floating emoji decorations */
.hero-float {
  position: absolute;
  z-index: 3;
  pointer-events: none;
  line-height: 1;
}
.hero-float-balloon {
  top: 8%;
  right: 6%;
  font-size: 88px;
  animation: float 5s ease-in-out infinite;
}
.hero-float-petal-1 {
  top: 22%;
  left: 2%;
  font-size: 38px;
  opacity: 0.65;
  animation: float2 4.2s 0.5s ease-in-out infinite;
}
.hero-float-petal-2 {
  bottom: 20%;
  right: 2%;
  font-size: 30px;
  opacity: 0.55;
  animation: float2 5.5s 1s ease-in-out infinite;
}

/* Polaroid sticky note */
.hero-note {
  position: absolute;
  top: 12%;
  right: 3%;
  background: #fff;
  border-radius: 8px;
  padding: 10px 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.09);
  font-family: var(--font-serif);
  font-size: 0.68rem;
  font-style: italic;
  color: var(--text-dark);
  max-width: 120px;
  text-align: center;
  z-index: 4;
  transform: rotate(4deg);
}

/* Feature strip — sits INSIDE hero-content, below CTA button */
.hero-features {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 2.4rem;
  flex-wrap: nowrap;
}

.hero-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  text-align: center;
  padding: 0 1.4rem;
  position: relative;
}
/* Separator line between features */
.hero-feature + .hero-feature::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  height: calc(100% - 8px);
  width: 1px;
  background: rgba(197, 168, 128, 0.35);
}
.hero-feature:first-child {
  padding-left: 0;
}
.hero-feature-icon-wrap {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}
.hero-feature-icon-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.hero-feature span {
  font-family: var(--font-ui);
  font-size: 0.55rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-mid);
  line-height: 1.5;
}

/* ======= ABOUT ======= */
.about-section {
  background: #FCF8F5;
  padding: 80px 10% 30px;
  display: grid;
  grid-template-columns: 1fr 1.5fr 1.2fr;
  align-items: center;
  gap: 4rem;
}

/* Logo Izquierdo — libre, sin círculo CSS */
.about-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-pure-logo {
  width: 100%;
  max-width: 260px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(197,168,128,0.18));
}

/* Contenido Central */
.about-content {
  text-align: left;
  max-width: 460px;
}
.about-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 2.5vw, 2.5rem);
  font-weight: 600;
  color: #1F1A17;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.about-content h2 .gold-heart-3d {
  font-style: normal;
  display: inline-block;
  animation: float 3.5s ease-in-out infinite;
}
.about-content p {
  font-size: 0.97rem;
  color: #6E6560;
  line-height: 1.75;
  margin-bottom: 2rem;
}

/* Botón CTA renovado — gradiente rosa, texto blanco, mayúsculas */
.btn-about-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(90deg, #E5989B, #EEB1B3);
  color: #FFFFFF !important;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 14px 36px;
  border-radius: 50px;
  box-shadow: 0 8px 20px rgba(229, 152, 155, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
}
.btn-about-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(229, 152, 155, 0.48);
}


/* Contenedor derecho — imagen polaroid real sin marco CSS */
.about-polaroid-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* PNG ya lleva su propio marco inclinado; solo añadimos drop-shadow en la silueta */
.about-polaroid-img {
  width: 100%;
  max-width: 420px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 28px rgba(31, 26, 23, 0.15));
  transition: transform 0.3s ease;
}
.about-polaroid-img:hover {
  transform: scale(1.03);
}


/* ======= CATEGORIES (CORREGIDO) ======= */
.categories-section {
  background: #FCF8F5;
  padding: 20px 5% 60px;
  text-align: center;
}

.section-header {
  margin-bottom: 2rem;
}
.section-header h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.3rem);
}

/* Línea decorativa con corazón bajo el título */
.header-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
  margin-bottom: 8px;
}
.divider-line {
  display: block;
  width: 80px;
  height: 1.5px;
  background-color: var(--gold);
  opacity: 0.5;
}
.divider-heart {
  font-size: 1.2rem;
  line-height: 1;
}

.categories-grid {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

/* Tarjetas blancas con sombra suave */
.category-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 24px 16px;
  width: 190px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(31, 26, 23, 0.04);
  border: 1px solid rgba(197, 168, 128, 0.1);
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s;
}
.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(197, 168, 128, 0.18);
}

.category-img-wrap {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(197, 168, 128, 0.3);
  flex-shrink: 0;
  transition: border-color 0.3s;
}
.category-card:hover .category-img-wrap {
  border-color: var(--gold);
}
.category-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
  transition: transform 0.4s ease;
}
.category-card:hover .category-img-wrap img {
  transform: scale(1.06);
}

.category-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: #1F1A17;
  margin-top: 4px;
}
.category-desc {
  font-size: 0.73rem;
  color: #6E6560;
  text-align: center;
  max-width: 150px;
  line-height: 1.4;
}

/* ======= PRODUCTS (CORREGIDO) ======= */
.products-section {
  background: var(--bg-alt);
  padding: 40px 6% 50px;
  text-align: center;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
  text-align: center;
}

.product-card {
  background: #FFFFFF !important;
  border-radius: 16px !important;
  padding: 0 !important;
  box-shadow: 0 10px 28px rgba(31, 26, 23, 0.04) !important;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  border: 1px solid rgba(197, 168, 128, 0.08);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 15px 36px rgba(197, 168, 128, 0.15) !important;
}

/* Foto de borde a borde, sin fondo extra ni padding */
.product-img-wrap {
  background-color: #FAF3EE !important;
  overflow: hidden;
  height: 200px;
  width: 100%;
  border-radius: 0;
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
  padding: 0 !important;
  transition: transform 0.45s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.06); }

/* Corazón flotante */
.product-fav {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 30px;
  height: 30px;
  background: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.2s ease;
  z-index: 3;
}
.product-fav:hover { transform: scale(1.15); }
.product-fav svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: var(--rose);
  stroke-width: 2;
  transition: fill 0.2s, stroke 0.2s;
  display: block;
}
.product-fav.is-fav svg {
  fill: var(--rose);
  stroke: var(--rose);
}

/* Info del producto */
.product-info {
  padding: 16px 14px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: #1F1A17;
  margin-bottom: 0.4rem;
}
.product-price {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  color: #1F1A17;
  margin-bottom: 1rem;
}
.price-label {
  font-size: 0.75rem;
  font-weight: 400;
  color: #6E6560;
  margin-right: 2px;
}

/* Botón "LO QUIERO" — centrado, ancho controlado */
.btn-lo-quiero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 85%;
  margin-top: auto !important;
  background-color: #E5989B !important;
  color: #FFFFFF !important;
  font-family: var(--font-ui) !important;
  font-size: 0.63rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  padding: 9px 0 !important;
  border: none !important;
  border-radius: 50px !important;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(229, 152, 155, 0.3) !important;
  transition: background 0.25s ease, transform 0.2s ease !important;
}
.btn-lo-quiero:hover {
  background-color: #D68285 !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 18px rgba(229, 152, 155, 0.4) !important;
}

/* Botón inferior con margen controlado */
#ver-todos-productos-btn {
  margin-top: 1rem;
}

/* ======= FOOTER (BANNER HORIZONTAL) ======= */
.site-footer {
  background: linear-gradient(135deg, #E08B8B 0%, #D16F6F 100%);
  color: #FAF3EE;
  position: relative;
  overflow: hidden;
  width: 100%;
}

/* Contenedor flex de dos columnas */
.footer-main-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 8%;
  gap: 4rem;
}

/* Columna Izquierda */
.footer-cta-left {
  flex: 1;
  text-align: left;
}
.footer-cta-left h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  color: #FFFFFF;
  margin-bottom: 0.5rem;
  line-height: 1.25;
}
.footer-cta-left p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  margin-bottom: 1.6rem;
}

/* Botón blanco sólido con texto rosa */
.btn-footer-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFFFFF;
  color: #D16F6F;
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 11px 28px;
  border-radius: 50px;
  border: none;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-footer-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.btn-heart-icon {
  font-size: 1rem;
  color: #E5989B;
}

/* Columna Derecha: badges horizontales */
.footer-badges-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.f-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
}
/* Divisor vertical entre badges */
.f-badge + .f-badge::before {
  content: '';
  position: absolute;
  left: -1rem;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(255, 255, 255, 0.25);
}
.footer-badges-right .f-badge-icon {
  width: 28px !important;
  height: 28px !important;
  object-fit: contain;
  display: inline-block;
  filter: brightness(0) invert(1); /* Mantiene estos iconos en blanco puro */
}
.f-badge span {
  font-family: var(--font-ui);
  font-size: 0.56rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.82);
  max-width: 90px;
  text-align: center;
  line-height: 1.3;
}

/* Barra inferior crema */
.footer-bar-light {
  background: #FAF3EE;
  padding: 14px 6%;
  display: flex !important;
  flex-direction: row !important; /* Fuerza a que se queden en fila */
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  border-top: 1px solid rgba(197, 168, 128, 0.2);
}
.foot-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 500;
  color: #6E6560;
  text-decoration: none;
  transition: color 0.2s ease;
  white-space: nowrap; /* Evita saltos de línea raros */
}
.foot-item:hover { color: #D16F6F; }

/* Círculos dorados para cada icono de red social */
.footer-bar-light .icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px !important;
  height: 28px !important;
  background: #C5A880; /* Tu color dorado global */
  border-radius: 50%;
  padding: 5px !important;
  overflow: hidden;
  flex-shrink: 0;
}

/* Arreglo crucial: Evitar que las imágenes internas se estiren al 100% */
.footer-bar-light .icon-circle img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain;
  display: block;
  filter: none !important; /* QUITA el invertido para que se vean tus logos originales */
}

/* ======= RESPONSIVE ======= */

/* ---- Hamburger & Mobile Nav (oculto en desktop) ---- */
.hamburger-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-dark);
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
  transition: color 0.2s;
}
.hamburger-btn:hover { color: var(--rose); }

.mobile-nav {
  display: none; /* solo se activa en mobile */
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(252, 248, 245, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.8rem;
  padding: 80px 5% 40px;
  transform: translateY(-100%);
  transition: transform 0.38s cubic-bezier(0.25,0.8,0.25,1);
}
.mobile-nav.open {
  transform: translateY(0);
}
.mobile-nav-link {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--text-dark);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.mobile-nav-link:hover,
.mobile-nav-link.active { color: var(--rose); }

.mobile-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #E5989B;
  color: #fff;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 14px 36px;
  border-radius: 50px;
  margin-top: 1rem;
  box-shadow: 0 6px 20px rgba(229,152,155,0.35);
}


/* ---- Botón de favorito activo ---- */
.product-fav.is-fav {
  background: #FFF0F0;
  transform: scale(1.05);
}

/* ============================================================
   TABLET  (≤1080px)
   ============================================================ */
@media (max-width: 1080px) {
  .about-section {
    grid-template-columns: 1fr 1.6fr;
    gap: 2.5rem;
    padding: 70px 6%;
  }
  .about-polaroid-container { display: none; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main-container { gap: 2.5rem; padding: 40px 5%; }
}

/* ============================================================
   MÓVIL  (≤768px)
   ============================================================ */
@media (max-width: 768px) {

  /* Header */
  .navbar        { display: none; }
  .nav-icon-btn  { display: none; }
  .nav-icons     { gap: 0.5rem; }
  .site-header   { padding: 0 5%; height: 64px; }
  .header-logo img { height: 42px; }
  .hamburger-btn { display: flex; }
  .mobile-nav    { display: flex; }
  .whatsapp-fab  { display: flex; }
  #nav-cta-btn   { display: none; } /* ocultar "Pedir Ahora" del nav en mobile */

  /* Hero */
  .hero-section {
    grid-template-columns: 1fr;
    padding-top: 64px;
    text-align: center;
    min-height: auto;
  }
  .hero-section::before { width: 120px; height: 120px; opacity: 0.4; top: 64px; }
  .hero-content { order: 2; padding: 28px 6% 36px; }
  .hero-text-block { padding-left: 0; }
  .hero-title { font-size: clamp(1.7rem, 6vw, 2.4rem); }
  .hero-visual {
    order: 1;
    min-height: 240px;
    padding: 16px 5%;
  }
  .hero-product-img { max-width: 280px; }
  .hero-desc { max-width: 100%; font-size: 0.9rem; }
  .hero-cta-row { justify-content: center; }
  .hero-features {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .hero-feature { padding: 0 1rem; }
  .hero-float-balloon { font-size: 60px; top: 4%; right: 2%; }
  .hero-float-petal-1,
  .hero-float-petal-2 { display: none; }

  /* About */
  .about-section {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 48px 6% 36px;
    gap: 2rem;
  }
  .about-logo-wrap   { justify-content: center; }
  .about-pure-logo   { max-width: 180px; }
  .about-content     { max-width: 100%; }
  .about-content h2  { font-size: clamp(1.4rem, 5vw, 2rem); }
  .about-content p   { font-size: 0.9rem; }
  .btn-about-cta     { font-size: 0.65rem; padding: 12px 28px; }

  /* Categories — scroll horizontal en mobile */
  .categories-section { padding: 28px 0 48px; }
  .section-header { padding: 0 5%; }
  .categories-grid {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    gap: 1rem;
    padding: 12px 5% 16px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .categories-grid::-webkit-scrollbar { display: none; }
  .category-card {
    flex-shrink: 0;
    width: 145px;
    padding: 18px 12px;
  }
  .category-img-wrap { width: 100px; height: 100px; }
  .categories-section > .btn-secondary { margin: 0 5%; }

  /* Products */
  .products-section  { padding: 28px 4% 40px; }
  .products-grid     { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; margin: 1.5rem 0; }
  .product-img-wrap  { height: 160px; }
  .product-name      { font-size: 0.9rem; }
  .product-price     { font-size: 0.85rem; margin-bottom: 0.8rem; }
  .btn-lo-quiero     { font-size: 0.58rem; padding: 8px 0 !important; width: 90%; }

  /* Footer */
  .footer-main-container {
    flex-direction: column;
    text-align: center;
    padding: 36px 6%;
    gap: 2rem;
  }
  .footer-cta-left   { text-align: center; }
  .footer-cta-left h2 { font-size: 1.4rem; }
  .footer-badges-right {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.2rem;
  }
  .f-badge + .f-badge::before { display: none; }
  .footer-bar-light {
    justify-content: center;
    gap: 1rem;
    padding: 16px 5%;
    flex-wrap: wrap;
  }
  .foot-item { font-size: 0.65rem; }
}

/* ============================================================
   MÓVIL PEQUEÑO  (≤420px)
   ============================================================ */
@media (max-width: 420px) {
  .products-grid     { grid-template-columns: 1fr; }
  .product-img-wrap  { height: 200px; }
  .categories-grid   { gap: 0.8rem; }
  .category-card     { width: 130px; }
  .category-img-wrap { width: 85px; height: 85px; }
  .hero-product-img  { max-width: 240px; }
  .about-pure-logo   { max-width: 150px; }
  .footer-bar-light  { gap: 0.8rem; }
}

