/* ============================================
   HAPPY UP — Styles v2
   ============================================ */

:root {
  --teal: #0f675f;
  --teal-dark: #0b403c;
  --teal-light: #e6f2f1;
  --copper: #b87942;
  --copper-dark: #8f5b30;
  --ink: #17211f;
  --body: #374140;
  --muted: #7a8584;
  --paper: #fff7ed;
  --surface: #ffffff;
  --border: #e8e3da;
  --mist: #f0f5f4;
  --shadow-sm: 0 1px 3px rgba(21,31,29,.06), 0 3px 10px rgba(21,31,29,.06);
  --shadow-md: 0 4px 14px rgba(21,31,29,.07), 0 10px 28px rgba(21,31,29,.07);
  --shadow-lg: 0 8px 32px rgba(21,31,29,.08), 0 24px 56px rgba(21,31,29,.10);
  --radius: 14px;
  --radius-sm: 8px;
  --px: clamp(18px, 5vw, 80px);
  --py: clamp(72px, 10vh, 112px);
  --ease: cubic-bezier(.4, 0, .2, 1);
  --ease-out: cubic-bezier(0, 0, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--body);
  background: var(--paper);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.icon-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1em;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: .75em;
  font-style: normal;
  font-weight: 800;
  line-height: 1;
}

h1, h2, h3, h4 {
  font-family: 'Calistoga', Georgia, serif;
  color: var(--ink);
  line-height: 1.1;
  margin: 0;
}
p { margin: 0; }

/* ---- Labels ---- */
.label {
  display: inline-block;
  margin-bottom: 14px;
  padding: 5px 14px;
  border-radius: 999px;
  background: var(--teal-light);
  color: var(--teal-dark);
  font-family: 'Inter', sans-serif;
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.label-ghost {
  background: rgba(255, 255, 255, .16);
  color: rgba(255, 255, 255, .9);
  border: 1px solid rgba(255, 255, 255, .22);
}

/* ---- Skip navigation ---- */
.skip-link {
  position: absolute;
  top: -120%;
  left: 16px;
  z-index: 9999;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  background: var(--teal);
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
  transition: top .2s ease;
  white-space: nowrap;
}
.skip-link:focus { top: 10px; }

/* ---- Reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 13px 22px;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform .22s var(--ease-out), box-shadow .22s var(--ease), background .2s var(--ease), border-color .2s var(--ease);
}
.btn:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn.primary {
  color: #fff;
  background: var(--teal);
  box-shadow: 0 8px 24px rgba(15, 103, 95, .28);
}
.btn.primary:hover, .btn.primary:focus-visible {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(15, 103, 95, .36);
}
.btn.outline {
  color: #fff;
  border-color: rgba(255, 255, 255, .48);
  background: rgba(255, 255, 255, .08);
}
.btn.outline:hover { background: rgba(255, 255, 255, .16); border-color: rgba(255, 255, 255, .8); }

.btn.light {
  color: var(--teal-dark);
  background: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .12);
}
.btn.light:hover { background: var(--paper); transform: translateY(-2px); }

.btn.outline-light {
  color: #fff;
  border-color: rgba(255, 255, 255, .48);
  background: transparent;
}
.btn.outline-light:hover { background: rgba(255, 255, 255, .12); }

.btn.full { width: 100%; }

/* ============================================
   HEADER
   ============================================ */
@keyframes headerSlideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0);      opacity: 1; }
}
@keyframes logoReveal {
  from { opacity: 0; transform: translateX(-14px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes actionsReveal {
  from { opacity: 0; transform: translateX(14px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes waSweep {
  0%   { transform: translateX(-100%) skewX(-18deg); }
  100% { transform: translateX(260%)  skewX(-18deg); }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 80px;
  padding: 10px var(--px);
  background: rgba(250, 248, 244, .90);
  border-bottom: 1px solid rgba(232, 227, 218, .55);
  backdrop-filter: blur(22px) saturate(170%);
  -webkit-backdrop-filter: blur(22px) saturate(170%);
  box-shadow: 0 1px 0 rgba(232, 227, 218, .7), 0 4px 20px rgba(21, 31, 29, .06);
  transition: min-height .35s var(--ease), background .3s ease,
              box-shadow .3s ease, border-color .3s ease;
  animation: headerSlideDown .55s var(--ease-out) both;
}

/* teal top accent — appears on scroll */
.site-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal-dark) 0%, var(--teal) 55%, var(--copper) 100%);
  opacity: 0;
  transition: opacity .4s ease;
}

.site-header.scrolled {
  min-height: 66px;
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 1px 0 rgba(232, 227, 218, .7), 0 8px 32px rgba(21, 31, 29, .10);
}
.site-header.scrolled::before { opacity: 1; }

/* brand */
.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  animation: logoReveal .5s var(--ease-out) .08s both;
}
.brand-logo {
  height: 50px;
  width: auto;
  max-width: 210px;
  object-fit: contain;
  object-position: left;
  transition: height .35s var(--ease);
}
.site-header.scrolled .brand-logo { height: 42px; }

/* nav pill */
.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
  padding: 5px;
  border: 1px solid rgba(232, 227, 218, .7);
  border-radius: var(--radius);
  background: rgba(245, 244, 240, .65);
  backdrop-filter: blur(6px);
  transition: background .3s ease, border-color .3s ease;
}
.site-header.scrolled .site-nav {
  background: rgba(240, 245, 244, .75);
  border-color: rgba(15, 103, 95, .12);
}

.site-nav a {
  position: relative;
  padding: 8px 15px;
  border-radius: var(--radius-sm);
  color: var(--muted);
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .01em;
  transition: color .2s, background .2s, box-shadow .2s;
}
/* dot indicator */
.site-nav a::after {
  content: '';
  position: absolute;
  bottom: 5px; left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 16px; height: 2px;
  background: var(--teal);
  border-radius: 1px;
  transition: transform .22s var(--ease), opacity .22s;
  opacity: 0;
}
.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--teal-dark);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.site-nav a:hover::after { transform: translateX(-50%) scaleX(1); opacity: 1; }

/* header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  animation: actionsReveal .5s var(--ease-out) .12s both;
}

.btn-tel {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  color: var(--teal-dark);
  background: var(--mist);
  border: 1px solid rgba(15, 103, 95, .10);
  font-size: .86rem;
  font-weight: 700;
  white-space: nowrap;
  transition: background .2s, border-color .2s, transform .2s;
}
.btn-tel svg { width: 16px; height: 16px; }
.btn-tel:hover {
  background: var(--teal-light);
  border-color: rgba(15, 103, 95, .22);
  transform: translateY(-1px);
}

.btn-wa {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  color: #fff;
  background: linear-gradient(135deg, #12857c 0%, var(--teal-dark) 60%, #0a4e4a 100%);
  background-size: 200% 200%;
  font-size: .86rem;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(15, 103, 95, .30), 0 1px 3px rgba(15, 103, 95, .18);
  transition: transform .22s var(--ease), box-shadow .22s, background-position .4s ease;
}
/* shimmer sweep */
.btn-wa::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
    transparent 30%,
    rgba(255, 255, 255, .22) 50%,
    transparent 70%);
  transform: translateX(-100%) skewX(-18deg);
  transition: none;
}
.btn-wa:hover::before { animation: waSweep .55s var(--ease-out) forwards; }
.btn-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(15, 103, 95, .38), 0 2px 6px rgba(15, 103, 95, .20);
  background-position: right center;
}
.btn-wa svg { width: 16px; height: 16px; position: relative; }

/* hamburger toggle */
.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: background .2s, border-color .2s, box-shadow .2s;
}
.nav-toggle:hover {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(15, 103, 95, .10);
}
.nav-toggle.is-open {
  background: var(--teal-light);
  border-color: rgba(15, 103, 95, .25);
}
.nav-toggle span {
  display: block;
  width: 18px; height: 2px;
  background: var(--ink);
  border-radius: 1px;
  transition: transform .3s var(--ease), opacity .22s ease, width .22s ease;
  transform-origin: center;
}
.nav-toggle.is-open span { background: var(--teal-dark); }
/* Hamburger → X */
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   PROMO BANNER
   ============================================ */
.promo-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px var(--px);
  background: linear-gradient(90deg, var(--teal-dark) 0%, var(--teal) 55%, #9a6436 100%);
  color: #fff;
}
.promo-banner-inner { display: flex; align-items: center; gap: 12px; min-width: 0; }
.promo-badge {
  flex-shrink: 0;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .2);
  border: 1px solid rgba(255, 255, 255, .3);
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.promo-banner p {
  font-weight: 600;
  font-size: .87rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0;
}
.promo-cta {
  flex-shrink: 0;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .18);
  border: 1px solid rgba(255, 255, 255, .38);
  font-size: .8rem;
  font-weight: 700;
  white-space: nowrap;
  transition: background .2s;
}
.promo-cta:hover { background: rgba(255, 255, 255, .28); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: calc(100svh - 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  will-change: transform;
  overflow: hidden;
}

/* Slideshow slides */
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
  will-change: opacity, transform;
}
.hero-slide.active {
  opacity: 1;
  animation: kenBurns 6s ease-out forwards;
}
@keyframes kenBurns {
  from { transform: scale(1.08); }
  to   { transform: scale(1); }
}

/* Navigation dots */
.hero-dots {
  position: absolute;
  bottom: 72px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, .55);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: width .35s var(--ease), background .35s ease, border-color .35s ease;
}
.hero-dot.active {
  width: 26px;
  background: var(--copper);
  border-color: var(--copper);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(108deg, rgba(8, 18, 17, .92) 0%, rgba(8, 18, 17, .64) 52%, rgba(8, 18, 17, .25) 100%),
    linear-gradient(0deg, rgba(8, 18, 17, .6) 0%, transparent 48%);
}
.hero-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 40px;
  align-items: center;
  padding: 100px var(--px) 80px;
}
.hero-text { color: #fff; }
.hero-text h1 {
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.04;
  margin: 8px 0 20px;
}
.hero-text h1 em {
  font-style: italic;
  color: var(--copper);
  background: linear-gradient(90deg, var(--copper) 20%, #f5d9a8 50%, var(--copper) 80%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s linear 1.8s infinite;
}
.hero-text > p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, .82);
  max-width: 540px;
  line-height: 1.76;
  margin-bottom: 30px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 26px; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.hero-tags span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  color: rgba(255, 255, 255, .88);
  background: rgba(255, 255, 255, .08);
  font-size: .84rem;
  font-weight: 600;
  transition: transform .22s var(--ease), border-color .22s ease, background .22s ease;
  cursor: default;
}
.hero-tags span:hover {
  transform: translateY(-3px);
  border-color: rgba(184, 121, 66, .55);
  background: rgba(184, 121, 66, .14);
}
.hero-tags svg { width: 15px; height: 15px; color: var(--copper); }

.hero-card {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--radius);
  background: rgba(11, 64, 60, .84);
  backdrop-filter: blur(18px);
  color: #fff;
  box-shadow: var(--shadow-lg);
  animation: heroRise .85s ease .1s both, heroFloat 6s ease-in-out 1.2s infinite;
}
.hero-card-badge {
  display: inline-block;
  margin-bottom: 16px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .16);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.hero-card > strong {
  display: block;
  font-family: 'Calistoga', serif;
  font-size: 1.38rem;
  line-height: 1.22;
  margin-bottom: 12px;
}
.hero-card > p {
  color: rgba(255, 255, 255, .74);
  font-size: .91rem;
  line-height: 1.65;
  margin-bottom: 22px;
}
.hero-card-footer {
  display: flex;
  gap: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .16);
}
.hero-card-footer div { display: flex; flex-direction: column; gap: 2px; }
.hero-card-footer span { font-size: .74rem; color: rgba(255, 255, 255, .58); font-weight: 500; }
.hero-card-footer strong {
  font-size: .95rem;
  font-family: 'Calistoga', serif;
  color: #fff;
}

.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: rgba(255, 255, 255, .5);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  animation: scrollBounce 2.2s ease-in-out infinite;
}
.scroll-hint svg { width: 20px; height: 20px; }

@keyframes heroRise {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}
/* Hero text stagger */
.hero-text .label     { animation: heroRise .65s var(--ease-out) .08s both; }
.hero-text h1         { animation: heroRise .7s  var(--ease-out) .18s both; }
.hero-text > p        { animation: heroRise .65s var(--ease-out) .30s both; }
.hero-ctas            { animation: heroRise .65s var(--ease-out) .42s both; }
.hero-stats           { animation: heroRise .6s  var(--ease-out) .54s both; }

/* Hero extra animations */
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
@keyframes shimmer {
  to { background-position: 200% center; }
}
@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(22px, -28px) scale(1.06); }
  66%       { transform: translate(-16px, 18px) scale(.94); }
}
@keyframes cardBadgePulse {
  0%, 100% { background: rgba(255, 255, 255, .16); }
  50%       { background: rgba(255, 255, 255, .30); box-shadow: 0 0 14px rgba(255,255,255,.12); }
}
@keyframes btnShine {
  from { transform: translateX(-120%) skewX(-18deg); }
  to   { transform: translateX(280%) skewX(-18deg); }
}

/* Atmospheric blobs */
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.hero::before {
  width: 540px; height: 540px;
  top: -140px; right: 6%;
  background: radial-gradient(circle, rgba(15, 103, 95, .50) 0%, transparent 68%);
  filter: blur(72px);
  animation: blobFloat 13s ease-in-out infinite;
}
.hero::after {
  width: 400px; height: 400px;
  bottom: -60px; left: -80px;
  background: radial-gradient(circle, rgba(184, 121, 66, .38) 0%, transparent 68%);
  filter: blur(64px);
  animation: blobFloat 17s ease-in-out -7s infinite reverse;
}
/* Keep hero content above blobs */
.hero-body { position: relative; z-index: 1; }
.scroll-hint { z-index: 1; }

/* Hero card badge glow pulse */
.hero-card-badge {
  animation: cardBadgePulse 3.5s ease-in-out 2.5s infinite;
}

/* Primary CTA button — shine sweep on hover */
.btn.primary {
  position: relative;
  overflow: hidden;
}
.btn.primary::after {
  content: '';
  position: absolute;
  inset: 0;
  width: 38%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
  transform: translateX(-120%) skewX(-18deg);
  pointer-events: none;
}
.btn.primary:hover::after {
  animation: btnShine .55s ease forwards;
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee-strip {
  overflow: hidden;
  padding: 16px 0;
  background: var(--teal-dark);
  border-top: 1px solid rgba(255, 255, 255, .08);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 26px;
  width: max-content;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}
.marquee-track span {
  color: rgba(255, 255, 255, .88);
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .04em;
}
.marquee-track b {
  color: var(--copper);
  font-weight: 700;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-strip:hover .marquee-track { animation-play-state: paused; }

/* ============================================
   FEATURES
   ============================================ */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-bottom: 1px solid var(--border);
}
.feature {
  padding: 44px var(--px);
  background: var(--surface);
  transition: background .25s var(--ease);
}
.feature:hover { background: var(--mist); }
.feature-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--teal-light);
  margin-bottom: 18px;
  transition: background .25s var(--ease), box-shadow .25s var(--ease);
}
.feature:hover .feature-icon {
  background: var(--teal);
  box-shadow: 0 8px 20px rgba(15, 103, 95, .28);
}
.feature-icon svg {
  width: 26px; height: 26px;
  color: var(--teal);
  transition: color .25s var(--ease), transform .3s var(--ease-out);
}
.feature:hover .feature-icon svg { color: #fff; transform: scale(1.12) rotate(-6deg); }
.feature h3 { font-size: 1.08rem; margin-bottom: 10px; }
.feature p { color: var(--muted); font-size: .92rem; line-height: 1.65; }

/* ============================================
   PRODUCTS — E-commerce premium v3
   ============================================ */
.products-section {
  padding: var(--py) var(--px);
  background: #f2f4f3;
}

/* ── Section header ── */
.catalog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.catalog-header-text .label { margin-bottom: 8px; }
.catalog-header-text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 8px;
  line-height: 1.05;
}
.catalog-header-text p { color: var(--muted); font-size: .95rem; max-width: 420px; }
.catalog-header-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.catalog-meta-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-align: center;
}
.catalog-meta-stat strong {
  font-family: 'Calistoga', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--teal-dark);
  line-height: 1;
}
.catalog-meta-stat span {
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--muted);
}
.catalog-meta-stat i { color: var(--teal); }
.catalog-meta-stat svg { width: 22px; height: 22px; }
.catalog-meta-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}
.catalog-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 999px;
  background: var(--teal);
  color: #fff;
  font-size: .84rem;
  font-weight: 700;
  white-space: nowrap;
  transition: background .2s ease, transform .2s var(--ease), box-shadow .2s ease;
  box-shadow: 0 4px 16px rgba(15,103,95,.25);
}
.catalog-wa-btn:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15,103,95,.35);
}
.catalog-wa-btn svg { width: 16px; height: 16px; }

/* ── Controls ── */
.catalog-controls {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

/* ── Category tabs — card style (like reference) ── */
.product-tabs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
}
.product-tabs::-webkit-scrollbar { display: none; }

.tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px 20px;
  min-width: 90px;
  border: 2px solid transparent;
  border-radius: 16px;
  background: #fff;
  cursor: pointer;
  transition: all .22s var(--ease);
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
  font-family: 'Inter', sans-serif;
}
.tab:hover {
  border-color: var(--teal);
  box-shadow: 0 4px 16px rgba(15,103,95,.14);
  transform: translateY(-2px);
}
.tab.active {
  background: var(--teal);
  border-color: var(--teal);
  box-shadow: 0 6px 20px rgba(15,103,95,.32);
  transform: translateY(-2px);
}
.tab:focus-visible { outline: 2px solid var(--teal); outline-offset: 2px; }

/* Icon circle */
.tab-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: var(--teal-light);
  transition: background .22s ease;
  flex-shrink: 0;
}
.tab-icon svg { width: 20px; height: 20px; color: var(--teal); transition: color .22s ease; }
.tab:hover .tab-icon { background: rgba(15,103,95,.12); }
.tab.active .tab-icon { background: rgba(255,255,255,.18); }
.tab.active .tab-icon svg { color: #fff; }

/* Name + count */
.tab-copy {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
}
.tab-copy strong {
  font-size: .82rem; font-weight: 700;
  color: var(--ink); white-space: nowrap;
  transition: color .22s ease;
}
.tab-copy span {
  font-size: .7rem; font-weight: 500;
  color: var(--muted); white-space: nowrap;
  transition: color .22s ease;
}
.tab.active .tab-copy strong,
.tab.active .tab-copy span { color: rgba(255,255,255,.92); }

/* legacy .tab-count hidden — using tab-copy now */
.tab-count { display: none; }

/* ── Product grid — 4 col ── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

/* ── Product card — image-first, btn full-width ── */
.product-card {
  border-radius: 16px;
  background: #fff;
  border: 1.5px solid rgba(0,0,0,.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 12px rgba(21,31,29,.07);
  transition: transform .26s var(--ease), box-shadow .26s var(--ease), border-color .22s ease;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(21,31,29,.13);
  border-color: rgba(15,103,95,.15);
}
.product-card:focus-within { outline: 2px solid var(--teal); outline-offset: 2px; }
.product-card.hidden { display: none; }

/* Image — aspect-ratio on container for reliable sizing */
.product-img {
  position: relative;
  overflow: hidden;
  background: #fff;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  padding: 10px;
  transition: transform .4s var(--ease);
}
.product-card:hover .product-img img { transform: scale(1.05) translateY(-3px); }

/* No dark overlay — cleaner like reference */
.product-img::after { display: none; }

/* Category tag */
.product-tag {
  position: absolute;
  top: 10px; left: 10px;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(11,64,60,.80);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: .62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  z-index: 1;
}

/* Nouveau badge */
.product-badge-new {
  position: absolute;
  top: 10px; right: 10px;
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--copper);
  color: #fff;
  font-size: .62rem;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 1;
  animation: badgePulse 2.2s ease-in-out infinite;
}

/* Card body */
.product-body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 4px;
}
.product-body h3 {
  font-size: .97rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.28;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-body > p {
  color: var(--muted);
  font-size: .8rem;
  line-height: 1.55;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Price row */
.product-footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
  padding-top: 0;
  border-top: none;
}
.product-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.product-price strong {
  font-family: 'Calistoga', serif;
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--teal-dark);
  line-height: 1;
}
.product-price span {
  font-size: .7rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* Full-width "Commander" button — like "Add to Dish" in reference */
.product-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  padding: 11px 16px;
  border-radius: 12px;
  background: var(--teal);
  color: #fff;
  font-size: .84rem;
  font-weight: 700;
  transition: background .2s ease, transform .18s var(--ease), box-shadow .2s ease;
}
.product-btn:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(15,103,95,.30);
}
.product-btn svg { width: 15px; height: 15px; }

/* ── Bottom CTA ── */
.catalog-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 48px;
  padding: 32px 40px;
  border-radius: 20px;
  background: linear-gradient(120deg, var(--teal-dark) 0%, var(--teal) 60%, #1a8a80 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.catalog-cta::before {
  content: '';
  position: absolute;
  right: -60px; top: -60px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  pointer-events: none;
}
.catalog-cta-text { display: flex; flex-direction: column; gap: 4px; }
.catalog-cta-text strong {
  font-family: 'Calistoga', serif;
  font-size: 1.22rem;
  color: #fff;
}
.catalog-cta-text span { font-size: .88rem; color: rgba(255,255,255,.74); }
.catalog-cta .btn.primary {
  background: #fff;
  color: var(--teal-dark);
  box-shadow: 0 8px 28px rgba(0,0,0,.18);
}
.catalog-cta .btn.primary:hover { background: var(--paper); transform: translateY(-2px); }

/* ============================================
   SPOTLIGHT / PROMOS
   ============================================ */
.spotlight {
  display: grid;
  grid-template-columns: minmax(280px, .62fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: var(--py) var(--px);
  background:
    linear-gradient(115deg, rgba(15, 103, 95, .07), rgba(184, 121, 66, .1)),
    var(--surface);
}
.spotlight-copy h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin: 6px 0 16px; }
.spotlight-copy p { color: var(--muted); line-height: 1.75; margin-bottom: 28px; }

.deal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: end;
}
.deal-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  transition: transform .22s ease, box-shadow .22s ease;
}
.deal-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.deal-card.featured { transform: translateY(-20px); }
.deal-card.featured:hover { transform: translateY(-26px); }
.deal-card img {
  width: 100%; aspect-ratio: 4 / 3.2; object-fit: cover;
  transition: transform .36s var(--ease);
}
.deal-card:hover img { transform: scale(1.06); }
.deal-body { padding: 16px; }
.deal-tag {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--teal);
  color: #fff;
  font-size: .67rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.deal-body h3 { font-size: .98rem; margin-bottom: 6px; }
.deal-body p { color: var(--muted); font-size: .84rem; line-height: 1.55; }

/* ============================================
   SERVICES PRIORITY
   ============================================ */
.service-priority-section {
  padding: clamp(58px, 7vw, 92px) var(--px);
  background: linear-gradient(180deg, #fffaf3 0%, #f5fbf7 100%);
  color: var(--ink);
}

.service-priority-head {
  width: min(1180px, 100%);
  margin: 0 auto 26px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
}

.service-priority-head h2 {
  max-width: 760px;
  margin: 8px 0 10px;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.service-priority-head p {
  max-width: 690px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(.98rem, 1.25vw, 1.08rem);
  font-weight: 560;
  line-height: 1.72;
}

.service-priority-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.service-priority-actions .btn {
  min-height: 48px;
  white-space: nowrap;
}

.service-priority-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.service-priority-card {
  position: relative;
  min-width: 0;
  min-height: 248px;
  display: flex;
  flex-direction: column;
  padding: 22px 18px 18px;
  border: 1px solid rgba(15, 103, 95, .12);
  border-radius: 18px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 18px 42px rgba(17, 35, 31, .08);
  transition: transform .24s var(--ease-out), border-color .24s ease, box-shadow .24s ease;
}

.service-priority-card.featured {
  color: #fff;
  border-color: rgba(15, 103, 95, .22);
  background: linear-gradient(145deg, #0f675f 0%, #0a3f3c 58%, #7a4a22 100%);
  box-shadow: 0 24px 58px rgba(15, 103, 95, .24);
}

.service-priority-card:hover {
  transform: translateY(-6px);
  border-color: rgba(15, 103, 95, .28);
  box-shadow: 0 24px 58px rgba(17, 35, 31, .13);
}

.service-priority-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 14px;
  color: #0f675f;
  background: rgba(15, 103, 95, .1);
}

.service-priority-card.featured .service-priority-icon {
  color: #fff;
  background: rgba(255, 255, 255, .16);
}

.service-priority-icon svg {
  width: 23px;
  height: 23px;
}

.service-priority-card span {
  color: #0f675f;
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.service-priority-card.featured span {
  color: rgba(255, 248, 237, .78);
}

.service-priority-card h3 {
  margin: 8px 0 10px;
  color: var(--ink);
  font-size: 1.04rem;
  font-weight: 900;
  line-height: 1.2;
}

.service-priority-card.featured h3 {
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.42rem;
  line-height: 1.12;
}

.service-priority-card p {
  margin: 0;
  color: var(--muted);
  font-size: .86rem;
  font-weight: 560;
  line-height: 1.6;
}

.service-priority-card.featured p {
  color: rgba(255, 248, 237, .78);
}

@media (max-width: 1100px) {
  .service-priority-head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .service-priority-actions {
    justify-content: flex-start;
  }

  .service-priority-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-priority-card.featured {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .service-priority-section {
    padding: 48px var(--px);
  }

  .service-priority-actions,
  .service-priority-actions .btn {
    width: 100%;
  }

  .service-priority-actions .btn {
    justify-content: center;
  }

  .service-priority-grid {
    grid-template-columns: 1fr;
  }

  .service-priority-card {
    min-height: auto;
  }
}

/* ============================================
   SERVICES — redesign premium
   ============================================ */
.services {
  padding: var(--py) var(--px);
  background:
    radial-gradient(ellipse 80% 60% at 10% 0%,  rgba(15,103,95,.55) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 90% 100%, rgba(11,60,60,.70) 0%, transparent 55%),
    linear-gradient(160deg, #071e1b 0%, #0b3230 50%, #071a18 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
/* subtle noise texture overlay */
.services::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='.03'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: .6;
}
.section-head.light h2 { color: #fff; }
.section-head.light p { color: rgba(255, 255, 255, .65); }

/* ── Grid ── */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 44px;
  position: relative;
  z-index: 1;
}

/* ── Card ── */
.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 28px 24px 22px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow: hidden;
  cursor: default;
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}
/* Top accent bar */
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sa), var(--sb));
  border-radius: 20px 20px 0 0;
  opacity: .9;
  transition: opacity .3s;
}
/* Glow on hover */
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, color-mix(in srgb, var(--sa) 20%, transparent) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,255,255,.22);
  box-shadow: 0 24px 60px rgba(0,0,0,.35), 0 0 0 1px rgba(255,255,255,.06);
}
.service-card:hover::before { opacity: 1; }
.service-card:hover::after  { opacity: 1; }

/* Number badge */
.sc-num {
  position: absolute;
  top: 16px; right: 18px;
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(255,255,255,.06);
  letter-spacing: -.03em;
  user-select: none;
  transition: color .3s;
}
.service-card:hover .sc-num { color: rgba(255,255,255,.10); }

/* Icon wrapper */
.sc-icon-wrap { margin-bottom: 18px; }
.service-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--sa) 25%, transparent), color-mix(in srgb, var(--sb) 18%, transparent));
  border: 1px solid color-mix(in srgb, var(--sa) 30%, transparent);
  transition: transform .3s var(--ease-out), background .3s;
}
.service-card:hover .service-icon {
  transform: scale(1.10) rotate(-6deg);
  background: linear-gradient(135deg, color-mix(in srgb, var(--sa) 38%, transparent), color-mix(in srgb, var(--sb) 28%, transparent));
}
.service-icon svg {
  width: 24px; height: 24px;
  color: var(--sa);
  stroke-width: 1.8;
}

/* Body */
.sc-body { flex: 1; }
.sc-tag {
  display: inline-block;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--sa);
  background: color-mix(in srgb, var(--sa) 14%, transparent);
  border: 1px solid color-mix(in srgb, var(--sa) 22%, transparent);
  padding: 2px 8px;
  border-radius: 999px;
  margin-bottom: 9px;
}
.service-card h3 {
  font-size: 1.02rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.3;
}
.service-card p {
  font-size: .845rem;
  color: rgba(255,255,255,.58);
  line-height: 1.65;
  margin: 0;
}

/* Arrow hint */
.sc-arrow {
  display: inline-block;
  margin-top: 14px;
  font-size: .9rem;
  color: var(--sa);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .25s, transform .25s;
  font-weight: 700;
}
.service-card:hover .sc-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ── CTA row ── */
.services-cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.btn.ghost-light {
  background: transparent;
  border: 2px solid rgba(255,255,255,.25);
  color: #fff;
}
.btn.ghost-light:hover {
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.5);
}

.fresh-fish-service {
  background:
    radial-gradient(circle at 82% 16%, rgba(125, 211, 252, .18), transparent 34%),
    linear-gradient(145deg, rgba(8, 145, 178, .18), rgba(255, 255, 255, .055));
}

.fresh-fish-service .sc-body {
  display: flex;
  flex-direction: column;
}

.fresh-fish-prices {
  display: grid;
  gap: 7px;
  margin: 16px 0 18px;
}

.fresh-fish-prices span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, .72);
  font-size: .78rem;
  line-height: 1.35;
}

.fresh-fish-prices span::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: var(--sa);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--sa) 18%, transparent);
}

.fresh-fish-prices strong {
  color: #fff;
  font-weight: 900;
}

.fresh-fish-order {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  min-height: 38px;
  margin-top: auto;
  padding: 0 14px;
  border-radius: 999px;
  color: #072522;
  background: #fff;
  font-size: .78rem;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
}

.fresh-fish-order svg {
  width: 16px;
  height: 16px;
}

.fresh-fish-order:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, .24);
}

/* ============================================
   STATS
   ============================================ */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-bottom: 1px solid var(--border);
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 52px 20px;
  background: var(--surface);
  text-align: center;
  position: relative;
  transition: background .25s var(--ease);
}
.stat::before {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 40px; height: 3px;
  border-radius: 2px;
  background: var(--teal);
  transition: transform .3s var(--ease-out);
}
.stat:hover { background: var(--mist); }
.stat:hover::before { transform: translateX(-50%) scaleX(1); }
.stat-number {
  font-family: 'Calistoga', serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 700;
  color: var(--teal-dark);
  line-height: 1;
  letter-spacing: -.02em;
}
.stat span {
  font-size: .84rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: var(--py) var(--px);
  background: var(--paper);
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.testi-card {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease);
}
.testi-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.testi-card.featured {
  background: linear-gradient(145deg, var(--teal) 0%, var(--teal-dark) 100%);
  border-color: var(--teal);
  box-shadow: 0 16px 48px rgba(15, 103, 95, .32);
  transform: translateY(-14px);
}
.testi-card.featured:hover { transform: translateY(-19px); box-shadow: 0 24px 60px rgba(15, 103, 95, .38); }

.testi-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.star-svg { fill: var(--copper); flex-shrink: 0; display: block; }
.testi-card.featured .star-svg { fill: #f6c86e; }
.testi-card.featured .testi-stars { color: #f6c86e; }
.testi-card p {
  font-size: .92rem;
  line-height: 1.72;
  font-style: italic;
  color: var(--body);
  margin-bottom: 20px;
}
.testi-card.featured p { color: rgba(255, 255, 255, .86); }
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.testi-card.featured .testi-author { border-color: rgba(255, 255, 255, .18); }
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--teal-light);
  color: var(--teal-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; font-weight: 800;
  flex-shrink: 0;
  overflow: hidden;
  border: 2px solid var(--border);
}
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.testi-card.featured .testi-avatar { border-color: rgba(255,255,255,.3); }
.testi-author strong { display: block; font-size: .92rem; color: var(--ink); }
.testi-author span { font-size: .78rem; color: var(--muted); }
.testi-card.featured .testi-author strong { color: #fff; }
.testi-card.featured .testi-author span { color: rgba(255, 255, 255, .62); }

/* ============================================
   ABOUT
   ============================================ */
.about {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, .7fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  padding: var(--py) var(--px);
  background: linear-gradient(90deg, var(--surface) 55%, var(--mist) 100%);
}
.about-text h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin: 6px 0 16px; }
.about-text > p { color: var(--muted); line-height: 1.75; margin-bottom: 24px; }
.trust-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.trust-chips span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  color: var(--teal-dark);
  font-size: .85rem;
  font-weight: 700;
}
.trust-chips svg { width: 15px; height: 15px; color: var(--teal); }

/* About stats row */
.about-stats {
  display: flex;
  gap: 28px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.about-stat strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--teal-dark);
  line-height: 1;
  margin-bottom: 4px;
}
.about-stat span { font-size: .78rem; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }

/* About right visual column */
.about-visual-col { display: flex; flex-direction: column; gap: 18px; }
.about-photo-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-photo-wrap img {
  width: 100%; height: 240px;
  object-fit: cover;
  display: block;
  transition: transform .5s var(--ease);
}
.about-photo-wrap:hover img { transform: scale(1.04); }
.about-photo-badge {
  position: absolute;
  bottom: 12px; left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(11,60,60,.88);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.15);
}
.about-photo-badge svg { width: 13px; height: 13px; color: #4ade80; }

.about-card {
  padding: 26px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.about-card h3 { font-size: 1.02rem; margin-bottom: 16px; }
.hours-list {
  list-style: none;
  padding: 0; margin: 0 0 26px;
  display: grid; gap: 12px;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  font-size: .91rem;
}
.hours-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.hours-list span { color: var(--muted); }
.hours-list strong { font-weight: 700; color: var(--ink); }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  padding: 80px var(--px);
  background:
    linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 48%, #9a6436 100%);
  color: #fff;
  text-align: center;
}
.cta-banner-body { max-width: 720px; margin: 0 auto; }
.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.28);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.cta-badge svg { width: 13px; height: 13px; }
.cta-banner h2 { font-size: clamp(2rem, 4vw, 3.2rem); color: #fff; margin-bottom: 16px; }
.cta-banner p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .8);
  line-height: 1.72;
  margin-bottom: 36px;
}
.cta-banner-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ============================================
   CONTACT
   ============================================ */
.contact {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, .7fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  padding: var(--py) var(--px);
  background: #fdf7f0;
}
.contact-copy h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin: 6px 0 16px; }
.contact-copy > p { color: var(--muted); line-height: 1.75; margin-bottom: 28px; }
.contact-social { display: flex; gap: 12px; }
.social-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
  transition: background .2s var(--ease), color .2s, border-color .2s, transform .2s var(--ease-out), box-shadow .2s;
}
.social-btn:hover {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(15, 103, 95, .28);
}
.social-btn.wa {
  background: var(--teal); color: #fff; border-color: var(--teal);
  box-shadow: 0 6px 20px rgba(15, 103, 95, .28);
}
.social-btn svg { width: 20px; height: 20px; }

.contact-card {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 4px solid var(--copper);
  box-shadow: var(--shadow-md);
  display: grid;
  gap: 10px;
}
.contact-card h3 { font-size: 1.08rem; margin-bottom: 6px; }
.contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border-radius: var(--radius-sm);
  background: var(--mist);
  transition: all .18s;
}
.contact-row:hover { background: var(--teal); color: #fff; }
.contact-row-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-row-icon svg { width: 20px; height: 20px; color: var(--teal); }
.contact-row:hover .contact-row-icon { background: rgba(255, 255, 255, .2); }
.contact-row:hover .contact-row-icon svg { color: #fff; }
.contact-row span { font-size: .76rem; color: var(--muted); display: block; }
.contact-row strong { font-size: .91rem; font-weight: 700; color: var(--ink); }
.contact-row:hover span, .contact-row:hover strong { color: #fff; }

.primary-row { background: var(--teal); }
.primary-row .contact-row-icon { background: rgba(255, 255, 255, .18); }
.primary-row .contact-row-icon svg { color: #fff; }
.primary-row span, .primary-row strong { color: #fff; }
.primary-row:hover { background: var(--teal-dark); }

.contact-address {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  color: var(--muted);
  font-size: .86rem;
  margin: 0;
}
.contact-address svg { width: 17px; height: 17px; flex-shrink: 0; }

/* ============================================
   FLOATING WHATSAPP
   ============================================ */
.float-wa {
  position: fixed;
  left: 20px; bottom: 20px;
  z-index: 200;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: #fff;
  font-weight: 700;
  font-size: .88rem;
  box-shadow: 0 12px 36px rgba(15, 103, 95, .42);
  animation: floatUp 2.6s ease-in-out infinite;
  transition: box-shadow .2s, transform .2s;
  isolation: isolate;
}
.float-wa::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  z-index: -1;
  animation: waPing 2.8s ease-out 1.2s infinite;
}
.float-wa:hover {
  box-shadow: 0 18px 48px rgba(15, 103, 95, .54);
  transform: translateY(-3px) !important;
}
.float-wa svg { width: 22px; height: 22px; }

@keyframes floatUp {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}
@keyframes waPing {
  0%   { transform: scale(1); opacity: .55; }
  70%  { transform: scale(1.55); opacity: 0; }
  100% { transform: scale(1.55); opacity: 0; }
}

/* ============================================
   FOOTER
   ============================================ */
footer { background: #111918; color: rgba(255, 255, 255, .68); }

.footer-main {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: clamp(24px, 4vw, 56px);
  padding: 64px var(--px) 48px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}
.footer-brand-name {
  font-family: 'Calistoga', serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}
.footer-brand p {
  font-size: .87rem;
  line-height: 1.72;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, .52);
}
.footer-contacts { display: flex; flex-direction: column; gap: 8px; }
.footer-contacts a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .84rem;
  color: rgba(255, 255, 255, .64);
  transition: color .15s;
}
.footer-contacts a:hover { color: #fff; }
.footer-contacts svg { width: 15px; height: 15px; }

.footer-links h4 {
  font-family: 'Inter', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255, 255, 255, .45);
  margin-bottom: 18px;
}
.footer-links ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-links li a {
  font-size: .87rem;
  color: rgba(255, 255, 255, .6);
  transition: color .2s var(--ease);
  position: relative;
  display: inline-block;
}
.footer-links li a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: rgba(255, 255, 255, .5);
  transition: width .22s var(--ease-out);
}
.footer-links li a:hover { color: #fff; }
.footer-links li a:hover::after { width: 100%; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 20px var(--px);
  font-size: .8rem;
  color: rgba(255, 255, 255, .35);
}

/* ============================================
   HERO STATS
   ============================================ */
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 14px 22px;
  background: rgba(255, 255, 255, .09);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius-sm);
  min-width: 88px;
  animation: heroRise .6s var(--ease-out) calc(.54s + var(--i, 0) * .14s) both;
  transition: background .22s ease, border-color .22s ease, transform .22s var(--ease);
}
.hero-stat:hover {
  background: rgba(255, 255, 255, .14);
  border-color: rgba(184, 121, 66, .45);
  transform: translateY(-3px);
}
.hero-stat strong {
  font-family: 'Calistoga', serif;
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--copper);
  line-height: 1;
}
.hero-stat strong sup {
  font-size: .7em;
  vertical-align: super;
}
.hero-stat span {
  font-size: .72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .72);
  text-transform: uppercase;
  letter-spacing: .07em;
  white-space: nowrap;
}
.hero-stat-icon {
  width: 26px;
  height: 26px;
  color: var(--copper);
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  padding: var(--py) var(--px);
  max-width: 860px;
  margin: 0 auto;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 48px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .22s ease, border-color .22s ease;
}
.faq-item:hover { border-color: var(--teal); box-shadow: var(--shadow-md); }
.faq-item[open] { border-color: var(--teal); box-shadow: var(--shadow-sm); }
.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230f675f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E");
  background-size: cover;
  transition: transform .28s var(--ease);
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item summary:hover { color: var(--teal); }
.faq-answer {
  padding: 0 24px 20px;
  color: var(--body);
  font-size: .95rem;
  line-height: 1.75;
  border-top: 1px solid var(--border);
  padding-top: 16px;
  animation: faqOpen .22s var(--ease-out) both;
}
@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: none; }
}

/* ============================================
   GOOGLE MAPS
   ============================================ */
.map-embed {
  margin-top: 28px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  grid-column: 1 / -1;
}
.map-embed iframe {
  display: block;
  width: 100%;
  height: 300px;
}

/* ============================================
   FOOTER SOCIALS
   ============================================ */
.footer-contacts { margin-bottom: 20px; }
.footer-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .65);
  transition: background .2s ease, color .2s ease, transform .2s var(--ease), border-color .2s ease;
}
.footer-social:hover { transform: translateY(-3px); color: #fff; }
.footer-social.wa:hover { background: #25D366; border-color: #25D366; }
.footer-social.fb:hover { background: #1877F2; border-color: #1877F2; }
.footer-social.ig:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); border-color: #dc2743; }
.footer-social.tt:hover { background: #010101; border-color: #69C9D0; color: #69C9D0; }
.footer-social svg { width: 18px; height: 18px; }

/* Social btn extras */
.social-btn.ig:hover { background: linear-gradient(135deg, #f09433, #dc2743, #bc1888); }
.social-btn.fb:hover { background: #1877F2; }
.contact-address {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .84rem;
  color: var(--muted);
  margin-top: 18px;
  transition: color .15s ease;
}
.contact-address:hover { color: var(--teal); }
.contact-address svg { width: 15px; height: 15px; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .hero-body { grid-template-columns: 1fr; }
  .hero-card { max-width: 480px; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-card.featured { transform: none; }
  .testi-card.featured:hover { transform: translateY(-5px); }
  .spotlight { grid-template-columns: 1fr; }
  .deal-card.featured { transform: none; }
  .deal-card.featured:hover { transform: translateY(-8px); }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 860px) {
  .site-nav {
    position: absolute;
    top: calc(100% + 6px);
    left: 16px; right: 16px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(15, 103, 95, .12);
    border-radius: var(--radius);
    box-shadow: 0 16px 48px rgba(21, 31, 29, .14), 0 2px 8px rgba(21, 31, 29, .06);
    padding: 8px;
    z-index: 99;
    /* hidden by default — animate in */
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px) scale(.98);
    transform-origin: top center;
    transition: opacity .25s var(--ease), transform .25s var(--ease);
  }
  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }
  .site-nav a {
    justify-content: flex-start;
    min-height: 46px;
    padding-inline: 16px;
    border-radius: 10px;
    font-size: .92rem;
  }
  .site-nav a::after { display: none; }
  .btn-tel, .btn-wa { display: none; }
  .nav-toggle { display: flex; }
  .hero-body { padding: 90px var(--px) 64px; }
  .features { grid-template-columns: 1fr; }
  .about, .contact { grid-template-columns: 1fr; }
  .deal-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .promo-banner { flex-direction: column; align-items: flex-start; gap: 8px; }
  .promo-banner p { white-space: normal; }
  .hero-text h1 { font-size: 2.5rem; }
  .product-grid,
  .testi-grid,
  .deal-grid,
  .stats { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .service-card { padding: 20px 16px 16px; }
  .service-icon { width: 44px; height: 44px; }
  .service-card h3 { font-size: .93rem; }
  .sc-num { font-size: 2rem; top: 12px; right: 14px; }
  .services-cta-row { flex-direction: column; align-items: center; }
  .testi-card.featured { transform: none; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-banner-actions { flex-direction: column; align-items: stretch; }
  .cta-banner-actions .btn { width: 100%; }
  .product-tabs { flex-wrap: nowrap; }
  .catalog-cta { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================
   SEARCH BAR
   ============================================ */
.search-bar {
  position: relative;
  margin-bottom: 20px;
}
.search-bar-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  display: flex;
  z-index: 1;
}
.search-bar-icon svg { width: 18px; height: 18px; color: var(--muted); }

.search-input {
  width: 100%;
  height: 50px;
  padding: 0 16px 0 46px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  color: var(--ink);
  outline: none;
  transition: border-color .18s, box-shadow .18s;
}
.search-input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(15, 103, 95, .12);
}
.search-input::placeholder { color: var(--muted); }
.search-input::-webkit-search-cancel-button { cursor: pointer; }

/* ============================================
   TAB COUNT BADGE
   ============================================ */
.tab-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: rgba(15, 103, 95, .1);
  color: var(--teal-dark);
  font-size: .68rem;
  font-weight: 700;
  margin-left: 5px;
  vertical-align: middle;
  transition: background .18s, color .18s;
}
.tab.active .tab-count {
  background: rgba(255, 255, 255, .28);
  color: #fff;
}
.tab:focus-visible { outline: 2px solid var(--teal); outline-offset: 2px; }

/* ============================================
   PRODUCT BADGE "NOUVEAU"
   ============================================ */
.product-badge-new {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--copper);
  color: #fff;
  font-size: .67rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  z-index: 1;
  pointer-events: none;
  animation: badgePulse 2.6s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(184, 121, 66, .45); }
  55%       { box-shadow: 0 0 0 7px rgba(184, 121, 66, 0); }
}

/* ============================================
   NO RESULTS
   ============================================ */
.no-results {
  padding: 56px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.no-results svg { width: 44px; height: 44px; color: var(--border); }
.no-results p { color: var(--muted); font-size: .97rem; line-height: 1.6; }
.no-results strong { color: var(--ink); }
.no-results-reset {
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background: var(--surface);
  color: var(--teal);
  font-family: 'Inter', sans-serif;
  font-size: .88rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .18s;
}
.no-results-reset:hover { background: var(--teal); color: #fff; border-color: var(--teal); }
.no-results-reset:focus-visible { outline: 2px solid var(--teal); outline-offset: 2px; }

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 88px;
  z-index: 198;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--surface);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(12px) scale(.88);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease, background .18s, color .18s, border-color .18s;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}
.back-to-top:hover {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
  transform: translateY(-2px);
}
.back-to-top:focus-visible { outline: 2px solid var(--teal); outline-offset: 2px; }
.back-to-top svg { width: 20px; height: 20px; }

/* ============================================
   CATALOG PREMIUM OVERRIDES
   ============================================ */
.products-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #fbfaf7 0%, #f3efe7 48%, #fbfaf7 100%);
}

.products-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(15, 103, 95, .055) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(15, 103, 95, .045) 0 1px, transparent 1px 100%);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, transparent, #000 14%, #000 76%, transparent);
}

.catalog-header,
.catalog-controls,
.product-grid,
.catalog-cta,
.no-results {
  position: relative;
  z-index: 1;
}

.catalog-header {
  align-items: center;
  margin-bottom: 28px;
  padding: 28px;
  border: 1px solid rgba(15, 103, 95, .12);
  border-radius: 24px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 22px 70px rgba(23, 33, 31, .08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.catalog-header-text h2 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
}

.catalog-header-text p {
  max-width: 560px;
  color: #5f6b69;
}

.catalog-header-meta {
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.catalog-controls {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 30px;
}

.search-bar {
  display: flex;
  align-items: center;
  margin: 0;
  min-height: 52px;
  border: 1px solid rgba(15, 103, 95, .14);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: 0 4px 16px rgba(23, 33, 31, .06);
}

.search-bar-icon {
  left: 16px;
}

.search-input {
  height: 52px;
  min-height: unset;
  padding-left: 48px;
  border: 0;
  border-radius: 16px;
  background: transparent;
  font-size: .95rem;
}

.search-input:focus {
  box-shadow: inset 0 0 0 2px rgba(15, 103, 95, .30);
}

.product-tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 0 0 4px;
}
.product-tabs::-webkit-scrollbar { display: none; }

.tab {
  flex: 1 1 auto;
  min-width: 110px;
  min-height: 74px;
  justify-content: flex-start;
  gap: 12px;
  padding: 13px;
  border: 1px solid rgba(15, 103, 95, .12);
  border-radius: 20px;
  background: rgba(255, 255, 255, .9);
  color: var(--body);
  box-shadow: 0 14px 34px rgba(23, 33, 31, .06);
}

.tab:hover {
  border-color: rgba(15, 103, 95, .38);
  background: #fff;
  color: var(--teal-dark);
  transform: translateY(-2px);
}

.tab.active {
  border-color: var(--teal);
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  color: #fff;
  box-shadow: 0 18px 44px rgba(15, 103, 95, .28);
}

.tab-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--teal-light);
  color: var(--teal);
}

.tab-icon svg {
  width: 20px;
  height: 20px;
  opacity: 1;
}

.tab.active .tab-icon {
  background: rgba(255, 255, 255, .18);
  color: #fff;
}

.tab-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  text-align: left;
}

.tab-copy strong {
  max-width: 100%;
  overflow: hidden;
  color: inherit;
  font-size: .9rem;
  font-weight: 800;
  line-height: 1.2;
  text-overflow: ellipsis;
}

.tab-copy span {
  color: var(--muted);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.tab.active .tab-copy span {
  color: rgba(255, 255, 255, .72);
}

.product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.product-card {
  border-radius: 22px;
  border: 1px solid rgba(15, 103, 95, .10);
  background: #fff;
  box-shadow: 0 14px 44px rgba(23, 33, 31, .08);
}

.product-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 28px 74px rgba(23, 33, 31, .16);
}

.product-img {
  background: #fff;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 12px;
}

.product-tag {
  top: 14px;
  left: 14px;
  border: 1px solid rgba(255, 255, 255, .26);
  background: rgba(11, 64, 60, .82);
}

.product-badge-new {
  top: 14px;
  right: 14px;
}

.product-body {
  padding: 20px;
}

.product-body h3 {
  font-size: 1.08rem;
}

.product-body > p {
  flex: 1;
}

.product-footer {
  align-items: stretch;
  gap: 12px;
  padding-top: 12px;
  margin-top: auto;
}

.product-price {
  justify-content: center;
  min-width: 0;
}

.product-price strong {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: .95rem;
  font-weight: 800;
  white-space: nowrap;
}

.product-btn {
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 12px;
  background: #111918;
  box-shadow: 0 10px 24px rgba(17, 25, 24, .16);
}

.product-btn:hover {
  background: var(--teal);
  transform: translateY(-2px);
}

.catalog-cta {
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(15, 103, 95, .20);
}

/* ── Catalog polish layer ── */
.catalog-header {
  margin-bottom: 20px;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.97) 0%, rgba(237,244,242,.90) 100%);
  border: 1px solid rgba(15,103,95,.10);
  box-shadow: 0 8px 32px rgba(23,33,31,.07);
}
.catalog-header .label {
  background: var(--teal);
  color: #fff;
}

/* Tabs — center-aligned cards */
.tab {
  min-height: auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  gap: 8px;
}
.tab.active {
  background: linear-gradient(145deg, var(--teal-dark) 0%, var(--teal) 100%);
  border-color: var(--teal-dark);
  box-shadow: 0 8px 24px rgba(11,64,60,.30);
}
.tab-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}

/* Product card — no fake ::before labels */
.product-card { position: relative; }

/* "Disponible CM" badge (opt-in via .badge-cm class on card) */
.product-card.badge-cm .product-img::before {
  content: 'Disponible CM';
  position: absolute;
  top: 10px; right: 10px;
  z-index: 2;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(252,209,22,.92);
  backdrop-filter: blur(4px);
  color: #17211f;
  font-size: .6rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}

/* "Nouveau" badge stays red */
.product-badge-new { background: #ce1126; }

/* Button */
.product-btn {
  background: var(--teal);
  box-shadow: 0 8px 20px rgba(15,103,95,.20);
}
.product-btn:hover {
  background: var(--teal-dark);
  box-shadow: 0 12px 28px rgba(11,64,60,.28);
}

/* Price — slightly larger */
.product-price strong {
  font-size: 1.15rem;
  color: var(--teal-dark);
}

/* Catalog CTA refinement */
.catalog-cta { border-radius: 24px; }

/* ── Responsive ── */
@media (max-width: 1180px) {
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
  .catalog-header { padding: 22px; }
  .catalog-header-meta { width: 100%; justify-content: space-between; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
  .product-tabs { gap: 8px; }
  .tab { padding: 12px 14px; min-width: 80px; }
  .tab-icon { width: 38px; height: 38px; }
}

@media (max-width: 640px) {
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .tab { flex: 0 0 auto; min-width: 76px; padding: 10px 12px; }
  .tab-icon { width: 34px; height: 34px; border-radius: 10px; }
  .tab-copy strong { font-size: .78rem; }
  .tab-copy span { font-size: .64rem; }
  .product-body { padding: 12px 12px 14px; }
  .product-body h3 { font-size: .9rem; }
  .product-body > p { display: none; }
  .product-price strong { font-size: 1rem; }
  .product-btn { padding: 9px 12px; font-size: .8rem; gap: 5px; }
  .product-btn svg { width: 13px; height: 13px; }
}

/* ============================================
   LOCAL PRODUCT PRESENTATION
   ============================================ */
.product-img {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.product-img::before,
.product-img::after {
  display: none;
}

.product-img img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  padding: 10px;
  object-fit: contain;
  filter: saturate(1.03) contrast(1.02);
}

.product-tag,
.product-badge-new {
  z-index: 4;
}

@media (max-width: 640px) {
  .product-img img {
    width: 100%;
    height: 100%;
    padding: 8px;
  }
}

/* ============================================
   NAV SCROLLSPY ACTIVE
   ============================================ */
.products-section {
  background: #fff;
  padding-top: clamp(54px, 8vw, 88px);
}

.products-section::before {
  display: none;
}

.catalog-market-strip,
.catalog-controls,
.product-grid,
.catalog-cta,
.no-results,
.market-section-heading,
.browse-categories {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin-inline: auto;
}

.market-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  align-items: center;
  min-height: 360px;
  max-width: 1180px;
  margin: 0 auto 34px;
  padding: clamp(34px, 5vw, 56px);
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 88% 18%, rgba(184, 121, 66, .18), transparent 30%),
    linear-gradient(100deg, #fbf7ef 0%, #ffffff 52%, #f4ede4 100%);
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.market-hero::before {
  content: "";
  position: absolute;
  right: 8%;
  top: 10%;
  width: 360px;
  height: 360px;
  border: 26px solid rgba(184, 121, 66, .22);
  border-radius: 50%;
}

.catalog-header-text {
  position: relative;
  z-index: 2;
}

.catalog-header-text .label {
  background: transparent;
  color: var(--ink);
  padding: 0;
  margin-bottom: 14px;
  border-radius: 0;
}

.catalog-header-text h2 {
  max-width: 560px;
  color: #111918;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: .98;
}

.catalog-header-text p {
  max-width: 500px;
  margin-top: 18px;
  color: #6b7472;
  font-size: 1rem;
  line-height: 1.7;
}

.market-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.btn.soft {
  color: var(--teal-dark);
  border-color: rgba(15, 103, 95, .16);
  background: #fff;
  box-shadow: none;
}

.market-hero-art {
  position: relative;
  z-index: 1;
  min-height: 310px;
}

.market-art-main,
.market-art-float {
  position: absolute;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 22px 26px rgba(23, 33, 31, .16));
}

.market-art-main {
  right: 18%;
  bottom: 0;
  width: min(330px, 74%);
  transform: rotate(-4deg);
}

.market-art-float {
  width: 150px;
}

.art-1 {
  right: 0;
  top: 8px;
  transform: rotate(8deg);
}

.art-2 {
  left: 2%;
  top: 42px;
  transform: rotate(-7deg);
}

.art-3 {
  right: 4%;
  bottom: 18px;
  transform: rotate(6deg);
}

.market-art-badge {
  position: absolute;
  left: 12%;
  bottom: 34px;
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  color: #fff;
  background: var(--teal);
  box-shadow: 0 20px 34px rgba(15, 103, 95, .28);
}

.market-art-badge strong {
  font-size: 1.7rem;
  line-height: 1;
}

.market-art-badge span {
  margin-top: -20px;
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.catalog-market-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 34px;
  padding: 0;
  background: transparent;
  border: 0;
}

.market-info {
  justify-content: center;
  min-height: 88px;
  padding: 18px 14px;
  border: 1px solid #e8f0eb;
  border-radius: 0;
  background: #fff;
  box-shadow: 0 10px 24px rgba(23, 33, 31, .05);
}

.market-info i,
.market-info svg {
  color: var(--teal);
}

.catalog-controls {
  margin-bottom: 22px;
}

.search-bar {
  border-color: #e8f0eb;
  border-radius: 0;
  box-shadow: none;
}

.product-tabs {
  gap: 10px;
}

.tab {
  min-height: 68px;
  border-radius: 0;
  box-shadow: none;
}

.tab-icon {
  border-radius: 50%;
}

.market-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.market-section-heading span {
  display: block;
  color: var(--teal);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.market-section-heading h3 {
  margin-top: 6px;
  color: #111918;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 900;
}

.market-section-heading a {
  color: var(--muted);
  font-size: .86rem;
  font-weight: 800;
}

.product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  min-height: 168px;
  overflow: hidden;
  border: 1px solid #edf1ee;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(23, 33, 31, .08);
}

.product-img {
  height: 100%;
  min-height: 168px;
  aspect-ratio: auto;
  border-right: 1px solid #f0f2ee;
  background: #fbfaf6;
}

.product-img img {
  padding: 10px;
  object-fit: contain;
  background: #fff;
}

.product-tag {
  top: 10px;
  left: 10px;
  padding: 4px 8px;
  border: 0;
  border-radius: 0;
  background: var(--teal);
  font-size: .58rem;
}

.product-badge-new {
  top: 10px;
  right: 10px;
  border-radius: 0;
}

.product-stock {
  position: absolute;
  left: 10px;
  bottom: 10px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 4px 8px;
  color: #fff;
  font-size: .58rem;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.product-stock-ok {
  background: var(--teal);
}

.product-stock-low {
  background: #b87942;
}

.product-card.image-category .product-img img {
  opacity: .9;
  filter: saturate(.9) contrast(1.02);
}

.product-body {
  min-width: 0;
  padding: 16px 16px 14px;
}

.product-body h3 {
  color: #111918;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: .98rem;
  font-weight: 900;
  line-height: 1.25;
}

.product-body > p {
  display: -webkit-box;
  margin-top: 8px;
  overflow: hidden;
  color: #7a8584;
  font-size: .8rem;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-footer {
  gap: 10px;
  padding-top: 12px;
}

.product-price {
  justify-content: flex-start;
  padding: 0;
  background: transparent;
}

.product-price strong {
  color: var(--teal);
  font-size: 1rem;
}

.product-price span {
  color: #8b928f;
}

.product-btn {
  width: fit-content;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 0;
  background: #111918;
  font-size: .78rem;
}

.catalog-cta {
  max-width: 1180px;
  margin-top: 30px;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.88), rgba(255,255,255,.58)),
    linear-gradient(135deg, #f7ead9, #f9f5ef 52%, #eaf5ee);
  color: #111918;
  box-shadow: none;
}

.catalog-cta-text strong {
  color: #111918;
}

.catalog-cta-text span {
  color: #6b7472;
}

.browse-categories {
  margin-top: 42px;
}

.browse-category-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.browse-category-card {
  display: grid;
  gap: 10px;
  place-items: center;
  min-height: 138px;
  padding: 16px 12px;
  border: 1px solid #edf1ee;
  background: #fff;
  text-align: center;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.browse-category-card:hover {
  border-color: rgba(15, 103, 95, .26);
  box-shadow: 0 16px 34px rgba(23, 33, 31, .06);
  transform: translateY(-3px);
}

.browse-category-card img {
  width: 64px;
  height: 48px;
  object-fit: cover;
}

.browse-category-card strong {
  color: #273230;
  font-size: .82rem;
  font-weight: 900;
  line-height: 1.25;
}

@media (max-width: 1040px) {
  .market-hero {
    grid-template-columns: 1fr;
  }

  .market-hero-art {
    min-height: 260px;
  }

  .catalog-market-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .browse-category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .products-section {
    padding-top: 36px;
  }

  .market-hero {
    min-height: auto;
    padding: 28px 18px;
  }

  .market-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .market-hero-actions .btn {
    width: 100%;
  }

  .market-hero-art {
    min-height: 210px;
  }

  .market-art-main {
    right: 16%;
    width: 240px;
  }

  .market-art-float {
    width: 104px;
  }

  .catalog-market-strip,
  .browse-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .product-card {
    grid-template-columns: 116px minmax(0, 1fr);
    min-height: 150px;
  }

  .product-img {
    min-height: 150px;
  }
}

.site-nav a.active {
  color: var(--teal-dark);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.site-nav a.active::after { transform: translateX(-50%) scaleX(1); opacity: 1; }

/* ============================================
   HAPPY UP CATALOGUE E-COMMERCE
   ============================================ */
.hu-catalog-section {
  padding: clamp(56px, 7vw, 96px) var(--px);
  background: linear-gradient(180deg, #fafbf8 0%, #fff 46%, #f7f3ec 100%);
}

.hu-catalog-section::before {
  display: none;
}

.hu-catalog {
  width: min(1240px, 100%);
  margin: 0 auto;
}

.hu-catalog-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.hu-catalog-head h2 {
  max-width: 760px;
  color: #101715;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: .95;
  letter-spacing: 0;
}

.hu-catalog-head p {
  max-width: 620px;
  margin-top: 16px;
  color: #67716f;
  font-size: 1rem;
  line-height: 1.7;
}

.hu-catalog-cart {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid #e7ebe4;
  border-radius: 8px;
  background: #fff;
  color: #1a2421;
  box-shadow: 0 12px 28px rgba(18, 26, 23, .06);
  white-space: nowrap;
}

.hu-catalog-cart svg {
  width: 18px;
  height: 18px;
  color: var(--teal);
}

.hu-category-rail,
.hu-subcategory-panel {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 4px 2px 12px;
  scrollbar-width: thin;
}

.hu-category-chip,
.hu-subcategory-chip {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  border: 1px solid #e6ebe5;
  border-radius: 8px;
  background: #fff;
  color: #273230;
  font-weight: 800;
  white-space: nowrap;
  transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}

.hu-category-chip {
  padding: 0 15px;
  font-size: .9rem;
}

.hu-subcategory-chip {
  min-height: 34px;
  padding: 0 12px;
  color: #64706d;
  font-size: .78rem;
}

.hu-category-chip svg {
  width: 17px;
  height: 17px;
}

.hu-category-chip:hover,
.hu-subcategory-chip:hover,
.hu-category-chip.active,
.hu-subcategory-chip.active {
  border-color: rgba(15, 103, 95, .28);
  background: #0f675f;
  color: #fff;
  transform: translateY(-1px);
}

.hu-filter-panel {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) repeat(6, minmax(150px, 1fr));
  gap: 12px;
  margin: 18px 0 18px;
  padding: 16px;
  border: 1px solid #e7ebe4;
  border-radius: 8px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 18px 48px rgba(18, 26, 23, .06);
}

.hu-filter-panel label,
.hu-search-field {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.hu-filter-panel label span {
  color: #66716f;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.hu-filter-panel input,
.hu-filter-panel select {
  width: 100%;
  min-height: 42px;
  border: 1px solid #dfe7e2;
  border-radius: 8px;
  background: #fbfcfa;
  color: #17211f;
  font: inherit;
  font-size: .88rem;
}

.hu-filter-panel select {
  padding: 0 12px;
}

.hu-search-field {
  position: relative;
}

.hu-search-field input {
  padding: 0 12px 0 40px;
}

.hu-search-field svg {
  position: absolute;
  left: 13px;
  bottom: 12px;
  width: 18px;
  height: 18px;
  color: #83908d;
}

.hu-toggle-group {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 4px;
}

.hu-toggle-group label {
  display: inline-flex;
  grid-auto-flow: column;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid #e4e9e3;
  border-radius: 8px;
  background: #fff;
  color: #273230;
  font-size: .84rem;
  font-weight: 800;
}

.hu-toggle-group input {
  width: 16px;
  min-height: auto;
  accent-color: var(--teal);
}

.hu-catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 20px 0 18px;
}

.hu-catalog-toolbar p {
  margin: 0;
  color: #66716f;
  font-weight: 800;
}

.hu-catalog-toolbar strong {
  color: #111918;
}

.hu-reset-filters,
.hu-load-more,
.hu-add-cart,
.hu-icon-action,
.hu-quick-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  font-weight: 900;
  cursor: pointer;
}

.hu-reset-filters {
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid #e4e9e3;
  border-radius: 8px;
  background: #fff;
  color: #273230;
}

.hu-reset-filters svg,
.hu-add-cart svg {
  width: 16px;
  height: 16px;
}

.hu-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.hu-product-card {
  overflow: hidden;
  border: 1px solid #edf0eb;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(18, 26, 23, .06);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.hu-product-card:hover {
  border-color: rgba(15, 103, 95, .2);
  box-shadow: 0 20px 42px rgba(18, 26, 23, .1);
  transform: translateY(-3px);
}

.hu-product-media {
  position: relative;
  aspect-ratio: 1 / .82;
  overflow: hidden;
  background: #f8f6ef;
}

.hu-product-card.has-local-visual .hu-product-media {
  background:
    linear-gradient(145deg, rgba(15, 103, 95, .09), rgba(184, 121, 66, .13)),
    #fbf8ef;
}

.hu-product-media img {
  width: 100%;
  height: 100%;
  padding: 12px;
  object-fit: contain;
  transition: transform .22s ease;
}

.hu-product-card:hover .hu-product-media img {
  transform: scale(1.035);
}

.hu-product-card.is-adult-product .hu-product-media {
  background: linear-gradient(145deg, #161513, #2c261d);
}

.hu-product-card.is-adult-product .hu-product-media img {
  filter: saturate(.92) contrast(1.02);
}

.hu-card-badges {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 52px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  z-index: 2;
}

.hu-product-badge {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 4px 8px;
  border-radius: 999px;
  color: #fff;
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.hu-product-badge.hu-badge-promo { background: #0f675f; }
.hu-product-badge.hu-badge-new { background: #111918; }
.hu-product-badge.hu-badge-premium { background: #b87942; }
.hu-product-badge.hu-badge-age { background: #1d1b18; border: 1px solid rgba(255, 255, 255, .34); }

.hu-card-actions {
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  gap: 8px;
  z-index: 3;
}

.hu-icon-action {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(17, 25, 24, .08);
  border-radius: 50%;
  background: rgba(255, 255, 255, .94);
  color: #1b2422;
  box-shadow: 0 10px 24px rgba(18, 26, 23, .08);
}

.hu-icon-action.active,
.hu-icon-action:hover {
  background: #0f675f;
  color: #fff;
}

.hu-icon-action svg {
  width: 17px;
  height: 17px;
}

.hu-product-info {
  display: grid;
  gap: 8px;
  padding: 15px;
}

.hu-product-category {
  color: #0f675f;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.hu-product-info h3 {
  min-height: 42px;
  color: #111918;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.28;
  letter-spacing: 0;
}

.hu-product-brand {
  margin: 0;
  color: #737d7a;
  font-size: .84rem;
  font-weight: 700;
}

.hu-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #b87942;
  font-size: .82rem;
}

.hu-rating strong {
  color: #252f2d;
}

.hu-rating em {
  color: #8a9491;
  font-style: normal;
}

.hu-price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
}

.hu-price-row strong {
  color: #0f675f;
  font-size: 1.05rem;
  font-weight: 900;
}

.hu-price-row del {
  color: #9aa29f;
  font-size: .82rem;
  font-weight: 700;
}

.hu-stock {
  width: fit-content;
  min-height: 24px;
  padding: 4px 9px;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 900;
}

.hu-stock.in {
  color: #0f675f;
  background: rgba(15, 103, 95, .09);
}

.hu-stock.out {
  color: #8b3f24;
  background: rgba(184, 121, 66, .12);
}

.hu-add-cart {
  width: 100%;
  min-height: 42px;
  margin-top: 4px;
  border-radius: 8px;
  background: #111918;
  color: #fff;
  font-size: .86rem;
}

.hu-add-cart:hover:not(:disabled) {
  background: #0f675f;
}

.hu-add-cart:disabled {
  cursor: not-allowed;
  opacity: .48;
}

.hu-catalog-empty {
  display: grid;
  place-items: center;
  gap: 10px;
  min-height: 180px;
  margin-top: 16px;
  border: 1px dashed #d8e0db;
  border-radius: 8px;
  color: #6c7673;
  text-align: center;
}

.hu-catalog-empty[hidden] {
  display: none;
}

.hu-catalog-empty svg {
  width: 26px;
  height: 26px;
}

.hu-load-wrap {
  display: grid;
  place-items: center;
  margin-top: 26px;
}

.hu-load-more {
  min-height: 44px;
  padding: 0 22px;
  border-radius: 8px;
  background: #0f675f;
  color: #fff;
}

.hu-load-more:hover {
  background: #111918;
}

.hu-alcohol-note {
  margin: 24px 0 0;
  color: #716b63;
  font-size: .84rem;
  line-height: 1.6;
  text-align: center;
}

.hu-quick-modal[hidden] {
  display: none;
}

.hu-quick-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 18px;
}

.hu-quick-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 14, 13, .55);
}

.hu-quick-panel {
  position: relative;
  width: min(760px, 100%);
  max-height: calc(100vh - 36px);
  overflow: auto;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 32px 80px rgba(0, 0, 0, .28);
}

.hu-quick-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #111918;
  color: #fff;
}

.hu-quick-close svg {
  width: 18px;
  height: 18px;
}

.hu-quick-content {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 22px;
  padding: 24px;
}

.hu-quick-content img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 8px;
  background: #f8f6ef;
}

.hu-quick-content h3 {
  margin: 8px 0;
  color: #111918;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.05;
}

.hu-quick-warning {
  padding: 10px 12px;
  border-radius: 8px;
  background: #f5efe6;
  color: #4b4035;
  font-size: .86rem;
  font-weight: 800;
}

@media (max-width: 1180px) {
  .hu-filter-panel {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hu-search-field {
    grid-column: 1 / -1;
  }

  .hu-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .hu-catalog-section {
    padding-inline: 14px;
  }

  .hu-catalog-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .hu-catalog-head h2 {
    font-size: clamp(2rem, 12vw, 3rem);
  }

  .hu-catalog-cart {
    width: 100%;
    justify-content: center;
  }

  .hu-filter-panel {
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .hu-catalog-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .hu-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .hu-product-info {
    padding: 12px;
  }

  .hu-product-info h3 {
    min-height: 50px;
    font-size: .88rem;
  }

  .hu-product-category,
  .hu-product-brand,
  .hu-rating,
  .hu-stock {
    font-size: .68rem;
  }

  .hu-price-row strong {
    font-size: .9rem;
  }

  .hu-card-badges {
    right: 8px;
  }

  .hu-product-badge {
    min-height: 20px;
    padding: 3px 6px;
    font-size: .56rem;
  }

  .hu-card-actions {
    top: auto;
    right: 8px;
    bottom: 8px;
    grid-auto-flow: column;
  }

  .hu-icon-action {
    width: 32px;
    height: 32px;
  }

  .hu-add-cart {
    min-height: 38px;
    font-size: .76rem;
  }

  .hu-quick-content {
    grid-template-columns: 1fr;
    padding: 18px;
  }
}

/* ============================================
   UIX PRO MAX — GLOBAL DESIGN POLISH
   ============================================ */

/* ── Shared section header ── */
.section-head {
  margin-bottom: 52px;
}
.section-head.centered {
  text-align: center;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.section-head h2 {
  font-size: clamp(2rem, 3.8vw, 3rem);
  line-height: 1.1;
  margin: 8px 0 16px;
  letter-spacing: -.02em;
}
.section-head p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.76;
}

/* ── Decorative divider ── */
.section-head .divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 auto 28px;
  width: fit-content;
}
.section-head .divider::before,
.section-head .divider::after {
  content: '';
  width: 32px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal));
  border-radius: 1px;
}
.section-head .divider::after {
  background: linear-gradient(90deg, var(--teal), transparent);
}
.section-head .divider span {
  width: 6px; height: 6px;
  background: var(--copper);
  border-radius: 50%;
}

/* ── Global button refinement ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 10px;
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .01em;
  border: none;
  cursor: pointer;
  transition: transform .22s var(--ease), box-shadow .22s, background .2s;
}
.btn.primary {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: #fff;
  box-shadow: 0 6px 22px rgba(15,103,95,.28);
}
.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(15,103,95,.36);
}
.btn.outline {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--border);
}
.btn.outline:hover {
  border-color: var(--teal);
  color: var(--teal-dark);
  transform: translateY(-2px);
}
.btn svg { width: 17px; height: 17px; flex-shrink: 0; }

/* ── Features — premium float cards ── */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 64px var(--px);
  background: var(--paper);
  border-bottom: 1px solid var(--border);
}
.feature {
  padding: 40px 32px;
  background: var(--surface);
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(21,31,29,.05);
  transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
  position: relative;
  overflow: hidden;
}
.feature::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--copper));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 52px rgba(21,31,29,.11);
  border-color: rgba(15,103,95,.14);
  background: #fff;
}
.feature:hover::after { transform: scaleX(1); }
.feature-icon {
  width: 62px; height: 62px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--teal-light), rgba(15,103,95,.05));
  border: 1px solid rgba(15,103,95,.10);
  margin-bottom: 26px;
  transition: transform .3s var(--ease-out), background .3s, box-shadow .3s;
}
.feature:hover .feature-icon {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  border-color: transparent;
  box-shadow: 0 10px 28px rgba(15,103,95,.28);
  transform: scale(1.08) rotate(-6deg);
}
.feature-icon svg {
  width: 28px; height: 28px;
  color: var(--teal);
  transition: color .3s;
}
.feature:hover .feature-icon svg { color: #fff; }
.feature h3 {
  font-size: 1.12rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--ink);
}
.feature p {
  color: var(--muted);
  font-size: .93rem;
  line-height: 1.7;
}

/* ── Stats — dark premium ── */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: linear-gradient(135deg, #071e1b 0%, #0e3532 50%, #071a17 100%);
  border: none;
}
.stat {
  background: transparent;
  padding: 64px 20px;
  border-right: 1px solid rgba(255,255,255,.07);
  border-bottom: none;
  transition: background .3s;
}
.stat:last-child { border-right: none; }
.stat:hover { background: rgba(255,255,255,.03); }
.stat::before {
  background: var(--copper);
  opacity: .7;
}
.stat:hover::before { opacity: 1; transform: translateX(-50%) scaleX(1); }
.stat-number {
  font-size: clamp(2.6rem, 4.5vw, 3.8rem);
  color: var(--copper);
  letter-spacing: -.03em;
}
.stat span {
  font-size: .78rem;
  color: rgba(255,255,255,.48);
  letter-spacing: .08em;
}

/* ── Testimonials — big quote marks ── */
.testimonials {
  padding: var(--py) var(--px);
  background: linear-gradient(180deg, var(--mist) 0%, var(--paper) 100%);
}
.testi-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--border);
  padding: 32px;
  box-shadow: 0 2px 16px rgba(21,31,29,.05);
}
.testi-card::before {
  content: '\201C';
  position: absolute;
  top: -8px; right: 20px;
  font-size: 7rem;
  font-family: 'Calistoga', serif;
  color: rgba(15,103,95,.07);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.testi-card.featured::before { color: rgba(255,255,255,.10); }
.testi-card p {
  font-size: .95rem;
  line-height: 1.78;
  position: relative;
  z-index: 1;
}
.testi-author {
  padding-top: 20px;
  margin-top: 4px;
}
.testi-avatar {
  width: 48px; height: 48px;
  border: 2.5px solid rgba(15,103,95,.20);
}
.testi-card.featured .testi-avatar { border-color: rgba(255,255,255,.35); }

/* ── FAQ — numbered + refined ── */
.faq {
  padding: var(--py) var(--px);
  background: var(--paper);
  max-width: 900px;
  margin: 0 auto;
}
.faq-list {
  gap: 8px;
  margin-top: 48px;
  counter-reset: faq-counter;
}
.faq-item {
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: 0 1px 8px rgba(21,31,29,.04);
  transition: border-color .25s, box-shadow .25s, transform .2s var(--ease);
  counter-increment: faq-counter;
}
.faq-item:hover {
  border-color: rgba(15,103,95,.22);
  box-shadow: 0 4px 20px rgba(15,103,95,.08);
  transform: translateX(4px);
}
.faq-item[open] {
  border-color: var(--teal);
  box-shadow: 0 6px 28px rgba(15,103,95,.12);
  transform: none;
}
.faq-item summary {
  padding: 22px 28px;
  font-size: 1rem;
  font-weight: 700;
  gap: 20px;
}
.faq-item summary::before {
  content: counter(faq-counter, decimal-leading-zero);
  font-size: .72rem;
  font-weight: 800;
  color: var(--teal);
  background: var(--teal-light);
  padding: 3px 8px;
  border-radius: 6px;
  letter-spacing: .04em;
  flex-shrink: 0;
}
.faq-answer {
  padding: 0 28px 22px;
  font-size: .96rem;
  color: var(--body);
  line-height: 1.78;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}

/* ── CTA Banner — mesh + dramatic ── */
.cta-banner {
  padding: 100px var(--px);
  background:
    radial-gradient(ellipse 70% 80% at 10% 50%, rgba(15,103,95,.55) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 90% 20%, rgba(184,121,66,.40) 0%, transparent 55%),
    linear-gradient(145deg, #071e1b 0%, #0b3230 45%, #071a17 100%);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.05);
  pointer-events: none;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -120px; left: -60px;
  width: 320px; height: 320px;
  border-radius: 50%;
  border: 1px solid rgba(15,103,95,.15);
  pointer-events: none;
}
.cta-banner-body { position: relative; z-index: 1; }
.cta-badge {
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.20);
  backdrop-filter: blur(8px);
}
.cta-banner h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  letter-spacing: -.025em;
  line-height: 1.08;
  margin-bottom: 20px;
}
.cta-banner p { font-size: 1.1rem; }
.cta-banner .btn.primary {
  background: #fff;
  color: var(--teal-dark);
  box-shadow: 0 8px 32px rgba(0,0,0,.22);
  padding: 14px 32px;
  font-size: .96rem;
}
.cta-banner .btn.primary:hover {
  background: var(--paper);
  transform: translateY(-3px);
  box-shadow: 0 16px 44px rgba(0,0,0,.28);
}
.cta-banner .btn.ghost-light {
  padding: 14px 28px;
  font-size: .96rem;
}

/* ── About — tighter visual ── */
.about { background: var(--surface); }
.trust-chips span {
  transition: background .2s, border-color .2s, transform .2s var(--ease);
}
.trust-chips span:hover {
  background: var(--teal-light);
  border-color: rgba(15,103,95,.22);
  transform: translateY(-2px);
}
.about-stat strong {
  font-size: 2rem;
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ── Contact ── */
.contact { background: linear-gradient(135deg, var(--paper) 0%, #fdf5ec 100%); }
.contact-card {
  border-radius: 20px;
  border-top: 4px solid var(--copper);
  overflow: hidden;
}
.contact-row {
  border-radius: 12px;
  transition: background .2s, color .2s, transform .2s var(--ease);
}
.contact-row:hover {
  transform: translateX(4px);
}

/* ── Footer — refined ── */
footer {
  background: linear-gradient(180deg, #0e2220 0%, #0a1a18 100%);
}
.footer-main { padding: 72px var(--px) 52px; }
.footer-brand-name {
  font-size: 1.8rem;
  background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,.7) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.footer-links h4 {
  color: var(--teal);
  letter-spacing: .10em;
  font-size: .72rem;
  margin-bottom: 20px;
}
.footer-links li a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.55);
}
.footer-links li a::before {
  content: '→';
  font-size: .75rem;
  color: var(--copper);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .2s, transform .2s;
}
.footer-links li a:hover::before { opacity: 1; transform: translateX(0); }
.footer-links li a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 22px var(--px);
  align-items: center;
}

/* ── Marquee — richer ── */
.marquee-strip {
  padding: 14px 0;
  background: linear-gradient(90deg, var(--teal-dark), #0a3a36 50%, var(--teal-dark));
  border-top: 1px solid rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.marquee-track span {
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255,255,255,.72);
}
.marquee-track b { color: var(--copper); font-size: 1.1em; }

/* ── Product section ── */
.products-section { background: var(--paper); }
.catalog-header {
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255,255,255,.98), rgba(237,244,242,.92));
  border: 1px solid rgba(15,103,95,.08);
  box-shadow: 0 4px 32px rgba(21,31,29,.06);
}
.catalog-cta {
  background: linear-gradient(135deg, #071e1b 0%, var(--teal-dark) 50%, #0a3532 100%);
  box-shadow: 0 20px 60px rgba(11,64,60,.28);
}

/* ── Hero card polish ── */
.hero-card {
  background: rgba(7,30,27,.88);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 20px;
}
.hero-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(15,103,95,.25) 0%, transparent 60%);
  pointer-events: none;
}

/* ── Promo banner ── */
.promo-banner {
  background: linear-gradient(90deg, #071a17 0%, var(--teal-dark) 35%, var(--teal) 65%, #8f5a2e 100%);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

/* ── Scroll-triggered reveal ── */
@keyframes revealUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; }
.reveal.visible { animation: revealUp .55s var(--ease-out) both; opacity: 1; }

/* ============================================
   UI/UX PRO MAX — Applied System v2
   Priority: touch · press · nav · bento · trust · type
   ============================================ */

/* ── P2: touch-action: manipulation (removes 300ms tap delay) ── */
.btn,
.tab,
.product-btn,
.catalog-wa-btn,
.nav-toggle,
.hero-dot,
.back-to-top,
.social-btn,
.footer-social,
.float-wa,
.promo-cta,
.no-results-reset,
.hu-chat-toggle,
button { touch-action: manipulation; }

/* ── P2: press scale feedback — 0.97 on :active ── */
.btn:active             { transform: scale(.97) translateY(1px) !important; transition-duration: .08s !important; }
.product-btn:active     { transform: scale(.97) !important; transition-duration: .08s !important; }
.tab:active             { transform: scale(.97) !important; transition-duration: .08s !important; }
.catalog-wa-btn:active  { transform: scale(.97) !important; transition-duration: .08s !important; }

/* ── P9: nav active state — teal pill (more prominent than text-only) ── */
.site-nav a.active {
  color: #fff !important;
  background: var(--teal) !important;
  box-shadow: 0 3px 12px rgba(15,103,95,.30) !important;
}
.site-nav a.active::after { display: none !important; }

/* ── P6: tabular figures for prices, stats, counters ── */
.product-price strong,
.stat-number,
.hero-stat strong,
.catalog-meta-stat strong,
.about-stat strong { font-variant-numeric: tabular-nums; }

/* ── P4: service cards — cursor pointer (they're interactive) ── */
.service-card { cursor: pointer; }

/* ── P6: Calistoga letter-spacing — display slab needs less tight tracking ── */
.section-head h2,
.catalog-header-text h2,
.hero-text h1,
.hero-card > strong,
.cta-banner h2 {
  letter-spacing: -.01em;
}

/* ── P4: Feature section Bento — first card spans 2 cols on desktop ── */
@media (min-width: 900px) {
  .features {
    grid-template-columns: repeat(3, 1fr);
  }
  .feature:first-child {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 80px 1fr;
    column-gap: 28px;
    align-items: start;
    padding: 40px 36px;
  }
  .feature:first-child .feature-icon {
    grid-row: 1 / 4;
    width: 72px; height: 72px;
  }
  .feature:first-child h3 {
    font-size: 1.24rem;
    align-self: end;
  }
}

/* ── P3: skeleton shimmer for lazy-loading product images ── */
.product-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(240,240,240,0) 0%,
    rgba(240,240,240,.8) 50%,
    rgba(240,240,240,0) 100%);
  background-size: 200% 100%;
  animation: imgShimmer 1.4s ease infinite;
  opacity: 0;
  transition: opacity .2s;
  z-index: 0;
  pointer-events: none;
}
.product-img.loading::before { opacity: 1; }
@keyframes imgShimmer {
  from { background-position: -200% 0; }
  to   { background-position: 200% 0; }
}

/* ── P8: trust signal chip on product card price row ── */
.product-stock {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .68rem;
  font-weight: 700;
  color: #16a34a;
  letter-spacing: .02em;
}
.product-stock::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #16a34a;
  flex-shrink: 0;
  animation: stockPulse 2.4s ease-in-out infinite;
}
@keyframes stockPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}

/* ── P7: exit animations faster than enter ── */
.faq-answer {
  animation-duration: .18s;
}

/* ── P5: hero min-height uses dvh for mobile chrome ── */
.hero { min-height: calc(100dvh - 80px); }

/* ── P6: stronger heading hierarchy — Calistoga weight ── */
h1 { font-weight: 400; }  /* Calistoga only has weight 400, already bold visually */
h2, h3 { font-weight: 400; }

/* ── P4: spotlight/promo section — deal card trust indicator ── */
.deal-card:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}

/* ── P2: min 44px touch target on social buttons ── */
.footer-social {
  width: 44px; height: 44px;
}

/* ── P6: improved muted text contrast (was 7a8584 → 5f6b69 for better contrast) ── */
:root { --muted: #5f6b69; }

/* ── P8: search input — mobile keyboard type ── */
/* (type="search" already in HTML, handled) */

/* ── P4: consistent card radius scale ── */
:root {
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
}
.service-card,
.testi-card,
.deal-card,
.about-card,
.catalog-cta { border-radius: var(--radius-lg); }
.contact-card { border-radius: var(--radius-lg); }
.product-card { border-radius: var(--radius); }

/* ============================================
   HAPPY UP AI — CHATBOT WIDGET
   ============================================ */
.hu-chat {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9900;
  font-family: var(--font);
  --hu-teal: #0f675f;
  --hu-dark: #0b3c3c;
  --hu-gold: #f0a500;
  --hu-bg: #ffffff;
  --hu-surface: #f4f8f7;
  --hu-border: rgba(15,103,95,.13);
  --hu-radius: 20px;
  --hu-shadow: 0 20px 60px rgba(11,60,60,.22), 0 4px 16px rgba(11,60,60,.10);
}

/* ── Toggle button ── */
.hu-chat-toggle {
  width: 60px; height: 60px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--hu-teal) 0%, var(--hu-dark) 100%);
  color: #fff;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 28px rgba(11,60,60,.35);
  transition: transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .25s;
  position: relative;
  outline: none;
}
.hu-chat-toggle:hover { transform: scale(1.08); box-shadow: 0 12px 36px rgba(11,60,60,.45); }
.hu-chat-toggle:focus-visible { outline: 3px solid var(--hu-gold); outline-offset: 3px; }
.hu-chat-toggle svg { pointer-events: none; transition: transform .2s; }

.hu-badge {
  position: absolute;
  top: -2px; right: -2px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--hu-gold);
  color: #17211f;
  font-size: .68rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid #fff;
  animation: hu-pulse 2s infinite;
}
@keyframes hu-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

/* ── Chat panel ── */
.hu-chat-panel {
  position: absolute;
  bottom: 76px;
  right: 0;
  width: 360px;
  max-width: calc(100vw - 32px);
  border-radius: var(--hu-radius);
  background: var(--hu-bg);
  box-shadow: var(--hu-shadow);
  border: 1px solid var(--hu-border);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform-origin: bottom right;
  animation: hu-open .28s cubic-bezier(.34,1.4,.64,1);
}
@keyframes hu-open {
  from { opacity: 0; transform: scale(.88) translateY(12px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.hu-chat-panel[hidden] { display: none !important; }

/* ── Header ── */
.hu-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: linear-gradient(135deg, var(--hu-dark) 0%, var(--hu-teal) 100%);
  color: #fff;
  flex-shrink: 0;
}
.hu-header-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,.25);
}
.hu-header-avatar svg { stroke: #fff; }
.hu-header-meta { flex: 1; min-width: 0; }
.hu-header-meta strong { display: block; font-size: .95rem; font-weight: 700; letter-spacing: .02em; }
.hu-header-meta span { font-size: .75rem; color: rgba(255,255,255,.75); display: flex; align-items: center; gap: 5px; margin-top: 1px; }
.hu-online-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ade80;
  display: inline-block;
  flex-shrink: 0;
  animation: hu-blink 2.5s ease-in-out infinite;
}
@keyframes hu-blink {
  0%, 100% { opacity: 1; } 50% { opacity: .45; }
}
.hu-close-btn {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.12);
  color: #fff;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background .2s;
}
.hu-close-btn:hover { background: rgba(255,255,255,.25); }

/* ── Messages ── */
.hu-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 340px;
  min-height: 160px;
  scroll-behavior: smooth;
}
.hu-messages::-webkit-scrollbar { width: 4px; }
.hu-messages::-webkit-scrollbar-thumb { background: rgba(15,103,95,.2); border-radius: 4px; }

.hu-msg {
  max-width: 88%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: .855rem;
  line-height: 1.6;
  word-break: break-word;
  animation: hu-msg-in .22s ease;
}
@keyframes hu-msg-in {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hu-msg-bot {
  background: var(--hu-surface);
  color: #17211f;
  border-radius: 4px 16px 16px 16px;
  align-self: flex-start;
  border: 1px solid var(--hu-border);
}
.hu-msg-user {
  background: linear-gradient(135deg, var(--hu-teal), var(--hu-dark));
  color: #fff;
  border-radius: 16px 16px 4px 16px;
  align-self: flex-end;
}
.hu-msg b, .hu-msg strong { font-weight: 700; }
.hu-msg-wa {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 10px;
  background: #25d366;
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, transform .15s;
}
.hu-msg-wa:hover { background: #1ebe59; transform: scale(1.03); }
.hu-msg-wa svg { stroke: #fff; flex-shrink: 0; }

.hu-ai-product-list {
  display: grid;
  gap: 8px;
  margin-top: 4px;
}

.hu-ai-product {
  display: grid;
  gap: 4px;
  padding: 10px;
  border: 1px solid rgba(15, 103, 95, .12);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(21, 31, 29, .06);
}

.hu-ai-product strong {
  color: #17211f;
  font-size: .82rem;
  line-height: 1.25;
}

.hu-ai-product span {
  color: #66716f;
  font-size: .72rem;
  line-height: 1.35;
}

.hu-ai-product em {
  color: var(--hu-teal);
  font-size: .86rem;
  font-style: normal;
  font-weight: 900;
}

.hu-ai-product a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 30px;
  padding: 7px 10px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
}

/* Typing indicator */
.hu-typing {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 12px 14px;
  background: var(--hu-surface);
  border-radius: 4px 16px 16px 16px;
  border: 1px solid var(--hu-border);
  align-self: flex-start;
  width: 52px;
}
.hu-typing span {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--hu-teal);
  animation: hu-bounce 1.1s ease-in-out infinite;
}
.hu-typing span:nth-child(2) { animation-delay: .18s; }
.hu-typing span:nth-child(3) { animation-delay: .36s; }
@keyframes hu-bounce {
  0%, 80%, 100% { transform: translateY(0); opacity: .5; }
  40% { transform: translateY(-7px); opacity: 1; }
}

/* ── Quick suggestions ── */
.hu-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 0 14px 10px;
  flex-shrink: 0;
}
.hu-quick-btn {
  border: 1px solid var(--hu-border);
  background: var(--hu-surface);
  color: var(--hu-teal);
  font-size: .75rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
  cursor: pointer;
  transition: background .18s, color .18s, border-color .18s, transform .15s;
  white-space: nowrap;
  font-family: var(--font);
}
.hu-quick-btn:hover {
  background: var(--hu-teal);
  color: #fff;
  border-color: var(--hu-teal);
  transform: translateY(-1px);
}

/* ── Input ── */
.hu-input-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-top: 1px solid var(--hu-border);
  background: var(--hu-bg);
  flex-shrink: 0;
}
.hu-input {
  flex: 1;
  border: 1px solid var(--hu-border);
  border-radius: 999px;
  padding: 9px 16px;
  font-size: .85rem;
  font-family: var(--font);
  background: var(--hu-surface);
  color: #17211f;
  outline: none;
  transition: border-color .18s, box-shadow .18s;
}
.hu-input:focus {
  border-color: var(--hu-teal);
  box-shadow: 0 0 0 3px rgba(15,103,95,.10);
}
.hu-input::placeholder { color: #9aafad; }
.hu-send-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--hu-teal), var(--hu-dark));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform .18s, box-shadow .18s;
  box-shadow: 0 3px 10px rgba(11,60,60,.25);
}
.hu-send-btn:hover { transform: scale(1.08); box-shadow: 0 6px 16px rgba(11,60,60,.35); }
.hu-send-btn svg { stroke: #fff; }

@media (max-width: 480px) {
  .hu-chat { bottom: 16px; right: 16px; }
  .hu-chat-panel { width: calc(100vw - 24px); right: -4px; bottom: 72px; }
}

/* ============================================
   STYLE POLISH v3 — Raffinement visuel final
   ============================================ */

/* ── Sélection de texte brandée ── */
::selection { background: rgba(15,103,95,.16); color: var(--teal-dark); }

/* ── Labels — point animé préfixe ── */
.label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .67rem;
  letter-spacing: .10em;
  padding: 5px 14px 5px 10px;
}
.label::before {
  content: '';
  flex-shrink: 0;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--teal);
  animation: labelDot 2.4s ease-in-out infinite;
}
.label-ghost::before { background: rgba(255,255,255,.8); }
@keyframes labelDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .45; transform: scale(.6); }
}

/* ── Features — warm tinted cards ── */
.features {
  background: linear-gradient(180deg, #fffbf5 0%, var(--surface) 50%, #fffbf5 100%);
}
.feature {
  background: #fffdf9;
  border-color: rgba(232,218,200,.55);
}
.feature:first-child {
  background: linear-gradient(140deg, rgba(15,103,95,.04) 0%, #fffdf9 55%);
  border-color: rgba(15,103,95,.09);
}
.feature:first-child .feature-icon {
  background: linear-gradient(135deg, var(--teal-light), rgba(15,103,95,.08));
  border: 1.5px solid rgba(15,103,95,.14);
}

/* ── Stats — nombres en dégradé doré animé ── */
.stat-number {
  background: linear-gradient(135deg, #c68a3a 0%, #f0c97a 40%, var(--copper) 65%, #e8a84a 100%);
  background-size: 250% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: goldShimmer 5s linear 1s infinite;
  letter-spacing: -.04em;
}
@keyframes goldShimmer {
  from { background-position: 0% center; }
  to   { background-position: 250% center; }
}
.stat span { letter-spacing: .10em; font-size: .75rem; }

/* ── Testimonials — featured card renforcé ── */
.testi-card.featured {
  background: linear-gradient(148deg, #0d5c55 0%, #074e47 45%, #062f2b 100%);
  box-shadow: 0 24px 70px rgba(7,78,71,.38), 0 0 0 1px rgba(255,255,255,.07);
  transform: translateY(-18px);
}
.testi-card.featured:hover { transform: translateY(-24px); }
.testi-card::before {
  font-size: 8.5rem;
  top: -14px; right: 18px;
  opacity: 1;
}

/* ── Section head h2 — lettre espacée ── */
.section-head h2 {
  letter-spacing: -.025em;
  line-height: 1.08;
}

/* ── Product cards — légèrement warm ── */
.product-card {
  background: #fffdf9;
  border-color: rgba(232,218,200,.45);
}
.product-card:hover {
  border-color: rgba(15,103,95,.18);
  box-shadow: 0 14px 44px rgba(21,31,29,.11), inset 0 1px 0 rgba(15,103,95,.09);
}
.product-price strong { color: var(--teal-dark); font-size: 1.22rem; }

/* ── Hero — em (titre italic) plus visible ── */
.hero-text h1 em {
  background: linear-gradient(90deg, #d4935a 0%, #f5d9a8 40%, #c98840 70%, #f0c070 100%);
  background-size: 200% auto;
}

/* ── Promo banner — badge pulse ── */
.promo-badge {
  animation: promoBadge 2.8s ease-in-out infinite;
}
@keyframes promoBadge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,.3); }
  60%       { box-shadow: 0 0 0 5px rgba(255,255,255,.0); }
}

/* ── Nav pill — bord légèrement plus visible ── */
.site-nav {
  border-color: rgba(200,190,175,.55);
  background: rgba(255,253,249,.75);
}

/* ── Spotlight deal cards — fond chaleureux ── */
.spotlight {
  background: linear-gradient(130deg, rgba(15,103,95,.06), rgba(184,121,66,.08)), #fffbf5;
}
.deal-card { background: #fffdf9; }
.deal-card.featured .deal-tag { background: var(--copper); }

/* ── About — stat numbers dégradé ── */
.about-stat strong {
  font-size: 2.2rem;
  letter-spacing: -.03em;
}

/* ── Contact — barre dégradée via pseudo-élément (compatible border-radius) ── */
.contact-card {
  border-top: none;
  position: relative;
}
.contact-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal-dark), var(--teal) 55%, var(--copper));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

/* ── Footer — ligne accent teal via border-top uni ── */
footer {
  border-top: 3px solid var(--teal);
}

/* ── Back to top — plus coloré ── */
.back-to-top {
  background: var(--teal);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(15,103,95,.30);
}
.back-to-top:hover {
  background: var(--teal-dark);
  transform: translateY(-3px);
}

/* ── Float WA — ombre plus riche ── */
.float-wa {
  box-shadow: 0 12px 40px rgba(15,103,95,.48), 0 2px 8px rgba(15,103,95,.22);
}

/* ── Catégorie tabs active — ombre colorée ── */
.tab.active {
  box-shadow: 0 8px 24px rgba(15,103,95,.36), 0 2px 6px rgba(15,103,95,.18);
}

/* ── FAQ item — accent gauche via box-shadow (pas de layout shift) ── */
.faq-item:hover {
  box-shadow: inset 3px 0 0 var(--teal), 0 4px 20px rgba(15,103,95,.08);
}
.faq-item[open] {
  box-shadow: inset 3px 0 0 var(--teal), 0 6px 28px rgba(15,103,95,.12);
}

/* ── CTA Banner — blob gauche plus visible ── */
.cta-banner::before {
  border: 1.5px solid rgba(255,255,255,.07);
  box-shadow: inset 0 0 80px rgba(15,103,95,.12);
}

/* ── Service cards — ombre hover plus intense ── */
.service-card:hover {
  box-shadow: 0 28px 72px rgba(0,0,0,.40), 0 0 0 1px rgba(255,255,255,.08);
}

/* ── Barre de défilement — brandée ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--paper); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--teal), var(--teal-dark));
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover { background: var(--teal-dark); }

/* ── optical-sizing — meilleur rendu Calistoga ── */
h1, h2, h3, h4 { font-optical-sizing: auto; }

/* ============================================
   HAPPY UP CATALOGUE - STYLE CORRECTION
   ============================================ */
:root {
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

.hu-catalog-section {
  padding: clamp(64px, 8vw, 104px) clamp(16px, 5vw, 72px) clamp(82px, 8vw, 112px);
  background:
    linear-gradient(180deg, rgba(250, 252, 249, .98) 0%, #ffffff 40%, #f7f2e9 100%);
  overflow: clip;
  scroll-margin-top: 92px;
}

.hu-catalog {
  width: min(1280px, 100%);
}

.hu-catalog-head {
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(222, 229, 224, .92);
}

.hu-catalog-head h2 {
  max-width: 820px;
  font-size: clamp(2.35rem, 4.6vw, 4rem);
  letter-spacing: 0;
}

.hu-catalog-head p {
  max-width: 700px;
  color: #5f6d69;
  font-size: clamp(.96rem, 1.15vw, 1.08rem);
}

.hu-catalog-cart {
  min-height: 50px;
  padding: 0 18px;
  border-color: rgba(15, 103, 95, .14);
  background: linear-gradient(180deg, #fff, #fbfdfb);
  box-shadow: 0 16px 38px rgba(18, 26, 23, .08);
}

.hu-category-rail,
.hu-subcategory-panel {
  gap: 10px;
  margin-inline: -2px;
  padding: 6px 2px 12px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.hu-category-rail::-webkit-scrollbar,
.hu-subcategory-panel::-webkit-scrollbar {
  display: none;
}

.hu-category-chip,
.hu-subcategory-chip {
  border-color: #e0e7e2;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 8px 20px rgba(18, 26, 23, .035);
}

.hu-category-chip:hover,
.hu-subcategory-chip:hover,
.hu-category-chip.active,
.hu-subcategory-chip.active {
  border-color: #0f675f;
  background: #0f675f;
  box-shadow: 0 12px 28px rgba(15, 103, 95, .18);
}

.hu-filter-panel {
  grid-template-columns: minmax(280px, 1.6fr) repeat(3, minmax(160px, 1fr));
  align-items: end;
  gap: 14px;
  margin: 18px 0 20px;
  padding: 18px;
  border-color: rgba(217, 226, 221, .96);
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 18px 52px rgba(18, 26, 23, .075);
}

.hu-search-field {
  grid-column: span 2;
}

.hu-filter-panel input,
.hu-filter-panel select {
  min-height: 46px;
  border-color: #dce5df;
  background: #fbfcfa;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9);
}

.hu-filter-panel input:focus,
.hu-filter-panel select:focus {
  border-color: rgba(15, 103, 95, .55);
  outline: 3px solid rgba(15, 103, 95, .12);
}

.hu-toggle-group {
  gap: 9px;
  padding-top: 0;
}

.hu-toggle-group label {
  min-height: 38px;
  border-color: #dfe7e2;
  background: #fff;
}

.hu-catalog-toolbar {
  margin: 24px 0 20px;
}

.hu-product-grid {
  gap: 20px;
  align-items: stretch;
}

.hu-product-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  border-color: #e5ebe6;
  background: linear-gradient(180deg, #ffffff 0%, #fffdfa 100%);
  box-shadow: 0 12px 34px rgba(18, 26, 23, .065);
}

.hu-product-card:hover {
  border-color: rgba(15, 103, 95, .26);
  box-shadow: 0 24px 54px rgba(18, 26, 23, .13);
}

.hu-product-media {
  aspect-ratio: 1 / .86;
  background:
    radial-gradient(circle at 30% 10%, rgba(15, 103, 95, .08), transparent 34%),
    linear-gradient(180deg, #fbf9f2 0%, #f4f7f3 100%);
}

.hu-product-card.has-real-photo .hu-product-media img {
  padding: 14px;
}

.hu-product-card.has-local-visual .hu-product-media img {
  opacity: .9;
}

.hu-product-info {
  flex: 1;
  grid-template-rows: auto auto auto auto auto auto 1fr;
  gap: 9px;
  padding: 16px;
}

.hu-product-info h3 {
  min-height: 46px;
  color: #111918;
}

.hu-product-category {
  display: -webkit-box;
  min-height: 28px;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  color: #0f675f;
}

.hu-product-proof {
  display: flex;
  flex-wrap: wrap;
  min-height: 30px;
  gap: 6px;
  color: #5e6962;
  font-size: .72rem;
  font-weight: 700;
  line-height: 1.15;
}

.hu-product-proof span {
  display: inline-flex;
  max-width: 100%;
  align-items: center;
  gap: 4px;
  padding: 5px 7px;
  border: 1px solid rgba(15, 103, 95, .09);
  border-radius: 999px;
  background: #f6f8f4;
}

.hu-product-proof .is-verified {
  color: #0f675f;
  background: #eaf5ee;
}

.hu-product-proof svg {
  width: 13px;
  height: 13px;
  flex: 0 0 auto;
}

.hu-price-row {
  min-height: 28px;
}

.hu-add-cart {
  align-self: end;
  min-height: 44px;
  margin-top: 6px;
  white-space: normal;
  line-height: 1.2;
}

.hu-icon-action {
  transition: transform .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
}

.hu-icon-action:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(15, 103, 95, .22);
}

.hu-load-more,
.hu-reset-filters {
  transition: transform .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
}

.hu-load-more:hover,
.hu-reset-filters:hover {
  transform: translateY(-1px);
}

.hu-alcohol-note {
  width: fit-content;
  max-width: 720px;
  margin: 26px auto 0;
  padding: 10px 14px;
  border: 1px solid rgba(184, 121, 66, .18);
  border-radius: 8px;
  background: rgba(255, 250, 242, .78);
}

.hu-quick-panel {
  border: 1px solid rgba(222, 229, 224, .95);
  border-radius: 12px;
}

.hu-quick-content {
  align-items: center;
}

.float-wa {
  left: 24px;
  right: auto;
  bottom: 24px;
  z-index: 190;
  width: 58px;
  height: 58px;
  padding: 0;
  justify-content: center;
}

.float-wa span {
  display: none;
}

.back-to-top {
  right: 28px;
  bottom: 100px;
}

@media (max-width: 1180px) {
  .hu-filter-panel {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hu-search-field {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .hu-catalog-section {
    padding: 48px 12px 92px;
  }

  .hu-catalog-head {
    gap: 18px;
    padding-bottom: 22px;
  }

  .hu-catalog-head h2 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .hu-category-chip {
    min-height: 40px;
    padding-inline: 12px;
    font-size: .84rem;
  }

  .hu-subcategory-chip {
    min-height: 32px;
    font-size: .72rem;
  }

  .hu-filter-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    padding: 12px;
  }

  .hu-search-field {
    grid-column: 1 / -1;
  }

  .hu-filter-panel label span {
    font-size: .68rem;
  }

  .hu-filter-panel input,
  .hu-filter-panel select {
    min-height: 42px;
    font-size: .82rem;
  }

  .hu-toggle-group {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .hu-toggle-group label {
    min-width: 0;
    padding: 8px 7px;
    font-size: .7rem;
    line-height: 1.15;
  }

  .hu-product-grid {
    gap: 12px;
  }

  .hu-product-info {
    padding: 12px;
  }

  .hu-product-info h3 {
    min-height: 48px;
  }

  .hu-product-media {
    aspect-ratio: 1 / .94;
  }

  .float-wa {
    left: 14px;
    bottom: 14px;
    width: 54px;
    height: 54px;
    padding: 0;
    justify-content: center;
  }

  .float-wa span {
    display: none;
  }

  .back-to-top {
    display: none;
  }

  .hu-chat {
    right: 12px;
    bottom: 12px;
  }
}

@media (max-width: 420px) {
  .hu-product-grid {
    gap: 10px;
  }

  .hu-product-badge {
    letter-spacing: 0;
  }

  .hu-add-cart {
    font-size: .72rem;
  }

  .hu-toggle-group {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hu-product-proof {
    font-size: .66rem;
  }
}

/* ============================================
   HAPPY UP BANNER - HERO CORRECTION
   ============================================ */
.promo-banner {
  min-height: 44px;
  background: linear-gradient(90deg, #071e1b 0%, #0f675f 58%, #b87942 100%);
}

.promo-badge {
  background: #fff;
  color: #0f675f;
  border-color: rgba(255, 255, 255, .75);
}

.promo-cta {
  background: #fff;
  color: #0f675f;
  border-color: transparent;
  box-shadow: 0 8px 22px rgba(7, 30, 27, .18);
}

.promo-cta:hover {
  background: #f5f0e7;
}

.hero {
  min-height: min(760px, calc(100dvh - 84px));
  background: #071e1b;
}

.hero::before,
.hero::after {
  display: none;
}

.hero-slide {
  background-position: 76% center;
  filter: saturate(.95) contrast(1.04);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(7, 18, 16, .96) 0%, rgba(7, 18, 16, .78) 44%, rgba(7, 18, 16, .42) 100%),
    linear-gradient(0deg, rgba(7, 18, 16, .72) 0%, transparent 48%);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 17, 15, .88) 0%, rgba(5, 17, 15, .45) 58%, rgba(5, 17, 15, .22) 100%);
}

.hero-body {
  grid-template-columns: minmax(0, .95fr) minmax(390px, 520px);
  gap: clamp(28px, 5vw, 72px);
  padding-top: clamp(62px, 7vw, 92px);
  padding-bottom: clamp(58px, 6vw, 78px);
}

.hero-text .label-ghost {
  width: fit-content;
  border-color: rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .12);
  color: #f5eadb;
}

.hero-text h1 {
  max-width: 820px;
  font-size: clamp(2.8rem, 5vw, 4.85rem);
}

.hero-text h1 em {
  display: inline-block;
  background: none;
  color: #edc37f;
  -webkit-text-fill-color: #edc37f;
  animation: none;
}

.hero-text > p {
  max-width: 650px;
  color: rgba(255, 255, 255, .86);
  margin-bottom: 22px;
}

.hero-ctas {
  margin-bottom: 18px;
}

.hero .btn.outline {
  color: #fff;
  border-color: rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .08);
}

.hero .btn.outline:hover {
  background: rgba(255, 255, 255, .16);
}

.hero-showcase-card {
  position: relative;
  overflow: hidden;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 24px;
  background: rgba(255, 253, 248, .96);
  color: #111918;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .32);
  animation: heroPromoCardIn .78s var(--ease-out) .12s both;
}

.hero-showcase-card::before {
  display: none;
}

.hero-showcase-card .hero-card-badge {
  width: fit-content;
  margin-bottom: 10px;
  padding: 7px 13px;
  border-radius: 999px;
  background: #fff0df;
  color: #92531f;
  border: 1px solid rgba(184, 121, 66, .22);
  font-family: inherit;
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: 0;
  animation: none;
}

.hero-promo-note {
  margin: 0 2px 16px;
  max-width: 440px;
  color: #4f5c55;
  font-size: .86rem;
  font-weight: 650;
  line-height: 1.55;
}

.hero-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.hero-product {
  position: relative;
  min-height: 146px;
  overflow: hidden;
  border: 1px solid rgba(15, 103, 95, .11);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(18, 26, 23, .09);
  transform: translateZ(0);
  transition: transform .26s ease, border-color .26s ease, box-shadow .26s ease;
}

.hero-promo-product {
  border-color: rgba(184, 121, 66, .22);
  background: linear-gradient(180deg, #fffdfa 0%, #fff6ec 100%);
  animation: promoTileIn .62s var(--ease-out) calc(.24s + var(--promo-i, 0) * .08s) both;
}

.hero-promo-product::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 54%;
  background: linear-gradient(180deg, transparent 0%, rgba(255, 253, 248, .94) 70%);
  pointer-events: none;
}

.hero-promo-product:hover {
  transform: translateY(-4px);
  border-color: rgba(184, 121, 66, .42);
  box-shadow: 0 22px 48px rgba(18, 26, 23, .16);
}

.hero-product img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  background: linear-gradient(180deg, #fff 0%, #f7f6ef 100%);
  transition: transform .32s ease;
}

.hero-promo-product img {
  padding: 26px 16px 44px;
  background: linear-gradient(180deg, #fffdf8 0%, #fbf4ea 100%);
}

.hero-promo-product:hover img {
  transform: scale(1.045);
}

.hero-promo-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  padding: 5px 9px;
  border-radius: 999px;
  background: #b87942;
  color: #fff;
  font-size: .62rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(184, 121, 66, .22);
  animation: promoTagPulse 2.8s ease-in-out calc(.7s + var(--promo-i, 0) * .18s) infinite;
}

.hero-product span,
.hero-product strong {
  position: absolute;
  left: 12px;
  right: 12px;
  z-index: 1;
  text-shadow: 0 1px 1px rgba(255, 255, 255, .7);
}

.hero-product span {
  bottom: 34px;
  color: #0f675f;
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-product strong {
  bottom: 13px;
  color: #111918;
  font-family: 'Calistoga', Georgia, serif;
  font-size: .96rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.15;
}

@keyframes heroPromoCardIn {
  from { opacity: 0; transform: translateY(18px) scale(.985); }
  to { opacity: 1; transform: none; }
}

@keyframes promoTileIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

@keyframes promoTagPulse {
  0%, 100% { transform: translateY(0); box-shadow: 0 8px 18px rgba(184, 121, 66, .22); }
  50% { transform: translateY(-1px); box-shadow: 0 12px 22px rgba(184, 121, 66, .32); }
}

.hero-showcase-card .hero-card-footer {
  margin-top: 14px;
  padding-top: 14px;
  border-top-color: rgba(15, 103, 95, .12);
}

.hero-showcase-card .hero-card-footer span {
  color: #66736d;
}

.hero-showcase-card .hero-card-footer strong {
  color: #111918;
  font-family: inherit;
}

.hero-promo-banner-card {
  position: relative;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(255, 249, 239, .98)),
    #fffdfa;
  color: #151c19;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .32);
  animation: heroPromoCardIn .78s var(--ease-out) .12s both;
}

.hero-promo-banner-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 6%, rgba(15, 103, 95, .14), transparent 32%),
    radial-gradient(circle at 88% 12%, rgba(196, 139, 69, .18), transparent 30%);
  pointer-events: none;
}

.hero-promo-banner-head,
.hero-promo-feature-card,
.hero-promo-mini-grid,
.hero-promo-disclaimer {
  position: relative;
  z-index: 1;
}

.hero-promo-banner-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.hero-promo-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  border-radius: 999px;
  background: #e8f5ef;
  color: #07564f;
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-promo-kicker i {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0f675f, #c58a45);
  box-shadow: 0 0 0 0 rgba(15, 103, 95, .45);
  animation: promoKickerPulse 1.9s ease-out infinite;
}

.hero-promo-banner-head a {
  color: #8a5a27;
  font-size: .82rem;
  font-weight: 900;
  text-decoration: none;
}

.hero-promo-feature-card {
  display: grid;
  grid-template-columns: minmax(130px, .74fr) minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
  padding: 12px;
  border: 1px solid rgba(15, 103, 95, .13);
  border-radius: 22px;
  background: #fffdfa;
  box-shadow: 0 16px 36px rgba(18, 26, 23, .08);
}

.hero-promo-feature-media {
  position: relative;
  display: grid;
  min-height: 206px;
  place-items: center;
  overflow: hidden;
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, .76), transparent 46%),
    linear-gradient(135deg, #fff0e7, #eaf7ef);
}

.hero-promo-feature-media span {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  padding: 9px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff4f92, #f0a64b);
  color: #fff;
  font-size: .72rem;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 12px 22px rgba(255, 74, 139, .24);
}

.hero-promo-feature-media img {
  width: min(82%, 178px);
  height: 174px;
  object-fit: contain;
  filter: drop-shadow(0 18px 20px rgba(20, 30, 27, .18));
  transition: transform .26s ease, filter .26s ease;
}

.hero-promo-banner-card:hover .hero-promo-feature-media img {
  transform: translateY(-5px) scale(1.025);
  filter: drop-shadow(0 20px 22px rgba(20, 30, 27, .24));
}

.hero-promo-feature-body {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 4px 2px;
}

.hero-promo-category {
  width: fit-content;
  margin-bottom: 8px;
  padding: 6px 9px;
  border-radius: 999px;
  background: #e8f5ef;
  color: #07564f;
  font-size: .7rem;
  font-weight: 900;
}

.hero-promo-feature-body h2 {
  margin: 0 0 7px;
  color: #121915;
  font-family: 'Calistoga', Georgia, serif;
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.08;
}

.hero-promo-feature-body p {
  margin: 0 0 12px;
  color: #4f5c55;
  font-size: .86rem;
  font-weight: 650;
  line-height: 1.5;
}

.hero-promo-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 9px;
  margin: auto 0 12px;
}

.hero-promo-price del {
  color: #6f6471;
  font-size: .86rem;
  font-weight: 800;
}

.hero-promo-price strong {
  color: #07564f;
  font-size: 1.15rem;
  font-weight: 950;
}

.hero-promo-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  min-height: 42px;
  padding: 11px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #07564f, #0f675f 56%, #8a5a27);
  color: #fff;
  font-size: .88rem;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 14px 24px rgba(7, 86, 79, .22);
}

.hero-promo-action span {
  transition: transform .22s ease;
}

.hero-promo-action:hover span {
  transform: translateX(3px);
}

.hero-promo-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  margin-top: 10px;
}

.hero-promo-mini-card {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(15, 103, 95, .1);
  border-radius: 16px;
  background: rgba(255, 255, 255, .76);
}

.hero-promo-mini-card img {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 12px;
  background: #f7f0e7;
}

.hero-promo-mini-card div {
  min-width: 0;
}

.hero-promo-mini-card span {
  display: block;
  margin-bottom: 3px;
  overflow: hidden;
  color: #5c505f;
  font-size: .66rem;
  font-weight: 850;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-promo-mini-card strong {
  display: block;
  overflow: hidden;
  color: #07564f;
  font-size: .74rem;
  font-weight: 950;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-promo-disclaimer {
  margin: 12px 2px 0;
  color: #5b6761;
  font-size: .76rem;
  font-weight: 700;
  line-height: 1.45;
}

@keyframes promoKickerPulse {
  0% { box-shadow: 0 0 0 0 rgba(15, 103, 95, .45); }
  72% { box-shadow: 0 0 0 10px rgba(15, 103, 95, 0); }
  100% { box-shadow: 0 0 0 0 rgba(15, 103, 95, 0); }
}

@media (max-width: 1040px) {
  .hero-body {
    grid-template-columns: 1fr;
  }

  .hero-showcase-card,
  .hero-promo-banner-card {
    max-width: 620px;
  }
}

@media (max-width: 760px) {
  .promo-banner {
    align-items: stretch;
    padding: 8px 12px;
  }

  .promo-banner-inner {
    gap: 8px;
  }

  .promo-banner p {
    white-space: normal;
    line-height: 1.35;
  }

  .hero {
    min-height: auto;
  }

  .hero-body {
    padding: 74px 14px 62px;
  }

  .hero-text h1 {
    font-size: clamp(2.2rem, 11vw, 3.05rem);
  }

  .hero-dots,
  .scroll-hint {
    display: none;
  }

  .hero-showcase-card,
  .hero-promo-banner-card {
    width: 100%;
    padding: 12px;
    border-radius: 18px;
  }

  .hero-promo-feature-card {
    grid-template-columns: 1fr;
  }

  .hero-promo-feature-media {
    min-height: 172px;
  }

  .hero-promo-feature-media img {
    height: 140px;
  }

  .hero-promo-feature-body h2 {
    font-size: 1.32rem;
  }

  .hero-promo-action {
    width: 100%;
  }

  .hero-showcase {
    gap: 8px;
  }

  .hero-product {
    min-height: 124px;
    border-radius: 14px;
  }

  .hero-product img {
    padding: 10px;
  }
}

@media (max-width: 420px) {
  .hero-showcase-card .hero-card-badge {
    font-size: .62rem;
  }

  .hero-product {
    min-height: 116px;
  }

  .hero-product span {
    bottom: 28px;
    font-size: .58rem;
  }

  .hero-product strong {
    font-size: .75rem;
  }

  .hero-promo-banner-head {
    align-items: flex-start;
  }

  .hero-promo-mini-grid {
    grid-template-columns: 1fr;
  }

  .hero-promo-mini-card img {
    flex-basis: 52px;
    width: 52px;
    height: 52px;
  }
}

/* ============================================
   HERO PREMIUM HAPPY UP AGENCY
   Remplace uniquement la banner d'accueil.
   ============================================ */
:root {
  --hero-night: #07121f;
  --hero-night-2: #0c1b2a;
  --hero-petrol: #0f675f;
  --hero-petrol-dark: #083e3b;
  --hero-cream: #fff8ed;
  --hero-peach: #ffd9bd;
  --hero-gold: #edc37f;
  --hero-glass: rgba(255, 248, 237, .12);
  --hero-glass-strong: rgba(255, 248, 237, .18);
  --hero-border: rgba(255, 248, 237, .22);
}

.premium-hero {
  position: relative;
  min-height: min(860px, 85vh);
  overflow: hidden;
  isolation: isolate;
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 12% 16%, rgba(15, 103, 95, .36), transparent 34%),
    radial-gradient(circle at 80% 18%, rgba(237, 195, 127, .2), transparent 30%),
    linear-gradient(135deg, var(--hero-night) 0%, var(--hero-night-2) 48%, var(--hero-petrol-dark) 100%);
}

.premium-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255, 248, 237, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 248, 237, .035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, .75), transparent 78%);
}

.premium-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 18, 31, .88) 0%, rgba(7, 18, 31, .45) 55%, rgba(7, 18, 31, .18) 100%),
    linear-gradient(0deg, rgba(7, 18, 31, .66) 0%, transparent 54%);
  pointer-events: none;
}

.premium-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  transform: translate3d(var(--hero-mouse-x, 0), var(--hero-mouse-y, 0), 0);
  transition: transform .28s ease-out;
}

.hero-halo {
  position: absolute;
  border-radius: 999px;
  filter: blur(58px);
  opacity: .72;
  transform: translate3d(0, 0, 0);
  animation: heroHaloDrift 14s ease-in-out infinite alternate;
}

.hero-halo-one {
  width: 440px;
  height: 440px;
  top: -90px;
  right: 8%;
  background: rgba(15, 103, 95, .54);
}

.hero-halo-two {
  width: 340px;
  height: 340px;
  right: 28%;
  bottom: -80px;
  background: rgba(255, 217, 189, .22);
  animation-delay: -5s;
}

.hero-halo-three {
  width: 280px;
  height: 280px;
  left: -70px;
  top: 24%;
  background: rgba(237, 195, 127, .19);
  animation-delay: -8s;
}

.premium-hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(390px, 520px);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
  width: min(1220px, 100%);
  margin: 0 auto;
  padding: clamp(70px, 8vw, 108px) clamp(16px, 5vw, 72px);
}

.premium-hero-copy {
  color: var(--hero-cream);
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  min-height: 36px;
  padding: 8px 13px;
  border: 1px solid var(--hero-border);
  border-radius: 999px;
  background: rgba(255, 248, 237, .08);
  color: var(--hero-peach);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
  backdrop-filter: blur(16px);
  animation: heroFadeUp .7s cubic-bezier(.2, .8, .2, 1) .05s both;
}

.hero-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--hero-gold);
  box-shadow: 0 0 0 0 rgba(237, 195, 127, .55);
  animation: heroDotPulse 2.2s ease-out infinite;
}

.premium-hero-copy h1 {
  max-width: 820px;
  margin: 18px 0 18px;
  color: #fff;
  font-family: "Calistoga", Georgia, serif;
  font-size: clamp(2.85rem, 5.65vw, 5.6rem);
  font-weight: 400;
  line-height: .99;
  letter-spacing: -.02em;
  animation: heroFadeUp .78s cubic-bezier(.2, .8, .2, 1) .16s both;
}

.premium-hero-copy h1 small {
  display: block;
  width: fit-content;
  margin-bottom: 12px;
  padding: 7px 12px;
  border: 1px solid rgba(237, 195, 127, .34);
  border-radius: 999px;
  color: var(--hero-peach);
  background: rgba(255, 248, 237, .09);
  font-family: "DM Sans", Inter, system-ui, sans-serif;
  font-size: .86rem;
  font-weight: 950;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
}

.premium-hero-copy h1 span {
  display: inline-block;
  color: var(--hero-gold);
  text-shadow: 0 0 34px rgba(237, 195, 127, .25);
}

.premium-hero-copy p {
  max-width: 650px;
  margin: 0 0 28px;
  color: rgba(255, 248, 237, .88);
  font-size: clamp(1rem, 1.5vw, 1.14rem);
  font-weight: 560;
  line-height: 1.75;
  animation: heroFadeUp .74s cubic-bezier(.2, .8, .2, 1) .28s both;
}

.premium-hero .hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 18px;
  animation: heroFadeUp .74s cubic-bezier(.2, .8, .2, 1) .42s both;
}

.premium-hero .btn {
  min-height: 52px;
  border-radius: 999px;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease;
}

.hero-wa-btn {
  background: linear-gradient(135deg, var(--hero-petrol) 0%, #159180 55%, #b87942 100%);
  box-shadow: 0 18px 44px rgba(15, 103, 95, .34);
}

.hero-wa-btn:hover,
.hero-wa-btn:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 24px 58px rgba(15, 103, 95, .46), 0 0 0 4px rgba(237, 195, 127, .12);
}

.premium-hero .hero-products-btn {
  color: var(--hero-cream);
  border-color: rgba(255, 248, 237, .48);
  background: rgba(255, 248, 237, .08);
  backdrop-filter: blur(14px);
}

.premium-hero .hero-products-btn:hover,
.premium-hero .hero-products-btn:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(237, 195, 127, .78);
  background: rgba(255, 248, 237, .14);
  box-shadow: 0 18px 38px rgba(7, 18, 31, .22);
}

.hero-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 248, 237, .18);
  border-radius: 999px;
  color: rgba(255, 248, 237, .8);
  background: rgba(255, 248, 237, .075);
  font-size: .88rem;
  font-weight: 800;
  backdrop-filter: blur(12px);
  animation: heroFadeUp .74s cubic-bezier(.2, .8, .2, 1) .54s both;
}

.hero-trust-badge svg {
  width: 18px;
  height: 18px;
  color: var(--hero-gold);
}

.premium-hero-visual {
  position: relative;
  min-height: 560px;
  transform-style: preserve-3d;
  transition: transform .18s ease-out;
  animation: heroCardIn .85s cubic-bezier(.2, .8, .2, 1) .35s both;
}

.hero-services-card {
  position: absolute;
  inset: 30px 8px auto auto;
  isolation: isolate;
  width: min(100%, 520px);
  min-height: 530px;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(255, 248, 237, .46);
  border-radius: 32px;
  color: #121915;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, .98) 0%, rgba(250, 245, 236, .96) 48%, rgba(232, 243, 235, .92) 100%),
    rgba(255, 248, 237, .92);
  box-shadow: 0 42px 105px rgba(0, 0, 0, .38), inset 0 1px 0 rgba(255, 255, 255, .82);
  backdrop-filter: blur(24px);
}

.hero-services-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(15, 103, 95, .11), transparent 34%),
    linear-gradient(315deg, rgba(196, 137, 72, .14), transparent 38%);
  opacity: .9;
  pointer-events: none;
  z-index: 0;
}

.hero-services-card::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(15, 103, 95, .08);
  border-radius: 26px;
  pointer-events: none;
  z-index: 0;
}

.hero-services-head,
.hero-services-grid,
.hero-services-footer {
  position: relative;
  z-index: 1;
}

.hero-services-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-bottom: 10px;
  padding: 8px 11px;
  border-radius: 999px;
  color: #07564f;
  background: rgba(232, 245, 239, .92);
  box-shadow: inset 0 0 0 1px rgba(15, 103, 95, .08);
  font-size: .74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-services-kicker i {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0f675f, #c58a45);
  box-shadow: 0 0 0 0 rgba(15, 103, 95, .45);
  animation: promoKickerPulse 1.9s ease-out infinite;
}

.hero-services-head h2 {
  max-width: 440px;
  margin: 0 0 9px;
  color: #121915;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.82rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.04;
}

.hero-services-head p {
  margin: 0 0 14px;
  color: #52615b;
  font-size: .88rem;
  font-weight: 720;
  line-height: 1.48;
}

.hero-services-grid {
  display: grid;
  grid-template-columns: 1.08fr repeat(2, minmax(0, .92fr));
  gap: 9px;
  align-items: stretch;
}

.hero-service-tile {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  gap: 7px;
  min-height: 126px;
  overflow: hidden;
  padding: 7px;
  border: 1px solid rgba(15, 103, 95, .11);
  border-radius: 22px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 16px 34px rgba(18, 26, 23, .08);
  animation: heroServiceIn .62s cubic-bezier(.2, .8, .2, 1) both;
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease, background .24s ease;
}

.hero-service-tile:nth-child(1) { animation-delay: .48s; }
.hero-service-tile:nth-child(2) { animation-delay: .55s; }
.hero-service-tile:nth-child(3) { animation-delay: .62s; }
.hero-service-tile:nth-child(4) { animation-delay: .69s; }
.hero-service-tile:nth-child(5) { animation-delay: .76s; }

@keyframes heroServiceIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero-service-tile:hover {
  transform: translateY(-5px) scale(1.015);
  border-color: rgba(15, 103, 95, .28);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 22px 48px rgba(18, 26, 23, .15), 0 0 0 4px rgba(217, 139, 78, .08);
}

.hero-service-main {
  grid-row: span 2;
  min-height: 264px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .94), rgba(239, 248, 242, .92));
}

.hero-service-photo {
  position: relative;
  height: 58px;
  overflow: hidden;
  border-radius: 17px;
  background:
    linear-gradient(145deg, rgba(245, 233, 214, .86), rgba(232, 245, 239, .92));
}

.hero-service-main .hero-service-photo {
  height: 136px;
  border-radius: 20px;
}

.hero-service-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, .48) 42%, transparent 74%);
  opacity: 0;
  transform: translateX(-110%);
  transition: opacity .28s ease, transform .62s ease;
}

.hero-service-tile:hover .hero-service-photo::after {
  opacity: 1;
  transform: translateX(110%);
}

.hero-service-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.04) contrast(1.02);
  transition: transform .28s ease, filter .28s ease;
}

.hero-service-tile:hover .hero-service-photo img {
  transform: translateY(-3px) scale(1.06);
  filter: saturate(1.12) contrast(1.04);
}

.hero-service-photo-product {
  background:
    radial-gradient(circle at 50% 68%, rgba(15, 103, 95, .16), transparent 44%),
    linear-gradient(150deg, #f8efe3 0%, #fffaf2 52%, #e8f5ef 100%);
}

.hero-service-photo-product img {
  object-fit: contain;
  padding: 15px 18px 8px;
  filter: drop-shadow(0 24px 22px rgba(18, 26, 23, .16));
}

.hero-service-tile:hover .hero-service-photo-product img {
  transform: translateY(-8px) scale(1.04);
  filter: drop-shadow(0 28px 24px rgba(18, 26, 23, .2));
}

.hero-service-icon {
  position: absolute;
  left: 9px;
  top: 9px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 13px;
  color: #fff;
  background: rgba(8, 53, 48, .72);
  box-shadow: 0 12px 24px rgba(15, 103, 95, .22);
  backdrop-filter: blur(12px);
  z-index: 2;
}

.hero-service-main .hero-service-icon {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(15, 103, 95, .9), rgba(184, 121, 66, .9));
}

.hero-service-icon svg {
  width: 17px;
  height: 17px;
}

.hero-service-main .hero-service-icon svg {
  width: 21px;
  height: 21px;
}

.hero-service-photo-badge {
  position: absolute;
  right: 10px;
  top: 10px;
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, .52);
  border-radius: 999px;
  color: #fff;
  background: rgba(18, 25, 21, .68);
  box-shadow: 0 10px 18px rgba(18, 26, 23, .12);
  font-size: .64rem;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  z-index: 2;
}

.hero-service-copy {
  display: grid;
  align-content: start;
  gap: 4px;
  min-width: 0;
  padding: 0 3px 2px;
}

.hero-service-copy > span {
  color: #0f675f;
  font-size: .66rem;
  font-weight: 950;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.hero-service-copy > strong {
  color: #121915;
  font-size: .76rem;
  font-weight: 950;
  line-height: 1.12;
}

.hero-service-main .hero-service-copy > strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.16rem;
  font-weight: 800;
  line-height: 1.12;
}

.hero-service-copy > p {
  margin: 0;
  color: #5b6761;
  font-size: .68rem;
  font-weight: 700;
  line-height: 1.32;
}

.hero-service-tile:not(.hero-service-main) .hero-service-copy > p {
  display: none;
}

.hero-service-main .hero-service-copy > p {
  font-size: .78rem;
  line-height: 1.42;
}

.hero-services-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(15, 103, 95, .12);
}

.hero-services-footer span,
.hero-services-footer a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #52615b;
  font-size: .78rem;
  font-weight: 900;
  line-height: 1.25;
  text-decoration: none;
}

.hero-services-footer svg {
  width: 16px;
  height: 16px;
  color: #0f675f;
}

.hero-services-footer a {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 10px 12px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #0f675f, #07564f);
  box-shadow: 0 14px 26px rgba(15, 103, 95, .2);
}

.hero-services-footer a span {
  color: inherit;
  transition: transform .22s ease;
}

.hero-services-footer a:hover span,
.hero-services-footer a:focus-visible span {
  transform: translateX(3px);
}

.premium-promo-card {
  position: absolute;
  inset: 42px 18px auto auto;
  width: min(100%, 445px);
  min-height: 500px;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(255, 248, 237, .34);
  border-radius: 30px;
  color: #14201d;
  background:
    linear-gradient(145deg, rgba(255, 248, 237, .96), rgba(255, 229, 205, .82)),
    rgba(255, 248, 237, .9);
  box-shadow: 0 38px 95px rgba(0, 0, 0, .36), inset 0 1px 0 rgba(255, 255, 255, .7);
  backdrop-filter: blur(24px);
  transition: transform .28s ease, box-shadow .28s ease;
}

.premium-promo-card:hover {
  transform: translateY(-6px) scale(1.012);
  box-shadow: 0 48px 110px rgba(0, 0, 0, .42), 0 0 0 1px rgba(237, 195, 127, .3);
}

.premium-promo-card::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 103, 95, .18), transparent 66%);
}

.promo-card-topline,
.promo-product-media,
.promo-product-copy {
  position: relative;
  z-index: 1;
}

.promo-card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.promo-card-topline span {
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--hero-petrol-dark);
  background: rgba(15, 103, 95, .11);
  font-size: .76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.promo-card-topline strong {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #b87942, #efaa5c);
  box-shadow: 0 14px 28px rgba(184, 121, 66, .28);
  font-size: 1rem;
}

.promo-product-media {
  display: grid;
  place-items: center;
  min-height: 240px;
  margin: 12px 0 8px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 255, 255, .82), transparent 46%),
    linear-gradient(135deg, rgba(255, 217, 189, .9), rgba(229, 246, 238, .92));
}

.promo-product-media img {
  width: min(78%, 230px);
  height: 230px;
  object-fit: contain;
  filter: drop-shadow(0 22px 28px rgba(20, 30, 27, .2));
  animation: heroProductFloat 5.4s ease-in-out infinite;
}

.promo-category {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--hero-petrol);
  background: rgba(15, 103, 95, .1);
  font-size: .72rem;
  font-weight: 900;
}

.promo-product-copy h2 {
  margin: 0 0 10px;
  color: #111918;
  font-family: "Calistoga", Georgia, serif;
  font-size: clamp(1.45rem, 2vw, 1.95rem);
  font-weight: 400;
  line-height: 1.08;
}

.promo-proof {
  margin: 0 0 13px;
  color: #5a655f;
  font-size: .86rem;
  font-weight: 750;
  line-height: 1.45;
}

.promo-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 16px;
}

.promo-price del {
  color: #7c706c;
  font-size: .95rem;
  font-weight: 850;
}

.promo-price strong {
  color: var(--hero-petrol-dark);
  font-size: 1.28rem;
  font-weight: 950;
}

.promo-product-copy a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--hero-petrol), var(--hero-petrol-dark));
  font-weight: 900;
  box-shadow: 0 16px 30px rgba(15, 103, 95, .24);
  transition: transform .22s ease, box-shadow .22s ease;
}

.promo-product-copy a:hover,
.promo-product-copy a:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(15, 103, 95, .32);
}

.floating-offer {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 228px;
  padding: 10px 12px 10px 10px;
  border: 1px solid rgba(255, 248, 237, .28);
  border-radius: 24px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 248, 237, .17), rgba(255, 248, 237, .08)),
    rgba(9, 30, 36, .38);
  box-shadow: 0 24px 56px rgba(0, 0, 0, .28), inset 0 1px 0 rgba(255, 255, 255, .14);
  backdrop-filter: blur(22px);
  transform-origin: center;
  transition: transform .24s ease, border-color .24s ease, background .24s ease, box-shadow .24s ease;
  animation: heroMiniOrbit 6.2s ease-in-out infinite;
}

.floating-offer:hover {
  transform: translateY(-8px) scale(1.025);
  border-color: rgba(237, 195, 127, .58);
  background:
    linear-gradient(135deg, rgba(255, 248, 237, .24), rgba(255, 248, 237, .1)),
    rgba(9, 30, 36, .46);
  box-shadow: 0 32px 68px rgba(0, 0, 0, .34), 0 0 0 1px rgba(237, 195, 127, .16);
}

.floating-offer img {
  flex: 0 0 62px;
  width: 62px;
  height: 62px;
  object-fit: contain;
  padding: 7px;
  border: 1px solid rgba(255, 248, 237, .45);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 35%, #fff, rgba(255, 248, 237, .82) 66%),
    #fff8ed;
  box-shadow: 0 12px 20px rgba(0, 0, 0, .16);
}

.floating-offer div {
  min-width: 0;
  flex: 1;
}

.floating-offer span,
.floating-offer p,
.floating-offer strong,
.floating-offer em {
  display: block;
}

.floating-offer span {
  margin-bottom: 3px;
  color: rgba(255, 248, 237, .74);
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.floating-offer p {
  margin: 0 0 4px;
  overflow: hidden;
  color: #fff8ed;
  font-size: .82rem;
  font-weight: 850;
  line-height: 1.12;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.floating-offer strong {
  color: var(--hero-cream);
  font-size: .95rem;
  font-weight: 950;
}

.floating-offer em {
  align-self: flex-start;
  padding: 5px 7px;
  border-radius: 999px;
  color: var(--hero-night);
  background: var(--hero-gold);
  font-size: .62rem;
  font-style: normal;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.floating-offer-one {
  top: 22px;
  left: -34px;
  rotate: -2deg;
  animation-delay: -.5s;
}

.floating-offer-two {
  top: 53%;
  left: -54px;
  rotate: 2deg;
  animation-delay: -1.8s;
}

.floating-offer-three {
  right: -42px;
  bottom: 44px;
  rotate: -1deg;
  animation-delay: -3s;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroCardIn {
  from {
    opacity: 0;
    transform: translateX(54px) scale(.98);
  }

  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes heroHaloDrift {
  from {
    transform: translate3d(-18px, -8px, 0) scale(1);
  }

  to {
    transform: translate3d(24px, 18px, 0) scale(1.08);
  }
}

@keyframes heroProductFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateY(-10px) rotate(1deg);
  }
}

@keyframes heroMiniFloat {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -12px;
  }
}

@keyframes heroMiniOrbit {
  0%,
  100% {
    translate: 0 0;
  }

  35% {
    translate: 5px -10px;
  }

  70% {
    translate: -4px -4px;
  }
}

@keyframes heroDotPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(237, 195, 127, .52);
  }

  72% {
    box-shadow: 0 0 0 10px rgba(237, 195, 127, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(237, 195, 127, 0);
  }
}

@media (max-width: 1040px) {
  .premium-hero {
    min-height: auto;
  }

  .premium-hero-shell {
    grid-template-columns: 1fr;
    padding-top: clamp(58px, 8vw, 82px);
  }

  .premium-hero-visual {
    min-height: 520px;
    max-width: 640px;
    width: 100%;
  }
}

@media (max-width: 720px) {
  .premium-hero-shell {
    gap: 28px;
    padding: 54px 14px 60px;
  }

  .premium-hero-copy h1 {
    font-size: clamp(2.35rem, 12vw, 3.35rem);
  }

  .premium-hero-copy h1 small {
    font-size: .72rem;
  }

  .premium-hero .hero-ctas,
  .premium-hero .btn {
    width: 100%;
  }

  .hero-trust-badge {
    align-items: flex-start;
    border-radius: 18px;
    line-height: 1.45;
  }

  .premium-hero-visual {
    min-height: auto;
    padding-top: 16px;
  }

  .hero-services-card {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: auto;
    padding: 16px;
    border-radius: 24px;
  }

  .hero-services-head h2 {
    max-width: none;
    font-size: 1.72rem;
  }

  .hero-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-service-tile {
    min-height: 164px;
  }

  .hero-service-main {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 296px;
  }

  .hero-service-photo {
    height: 78px;
  }

  .hero-service-main .hero-service-photo {
    height: 164px;
  }

  .premium-promo-card {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: auto;
    padding: 16px;
    border-radius: 24px;
  }

  .promo-product-media {
    min-height: 190px;
  }

  .promo-product-media img {
    height: 180px;
  }

  .floating-offer {
    position: relative;
    inset: auto;
    display: flex;
    width: 100%;
    min-width: 0;
    margin-top: 10px;
    rotate: 0deg;
  }

  .floating-offer img {
    flex-basis: 58px;
    width: 58px;
    height: 58px;
  }

  .floating-offer em {
    margin-left: auto;
  }

  .premium-hero-visual {
    display: grid;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 460px) {
  .hero-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .hero-services-head h2 {
    font-size: 1.48rem;
  }

  .hero-service-tile {
    min-height: 142px;
    padding: 7px;
    border-radius: 18px;
  }

  .hero-service-main {
    grid-column: 1 / -1;
    min-height: 284px;
  }

  .hero-service-photo {
    height: 64px;
    border-radius: 14px;
  }

  .hero-service-main .hero-service-photo {
    height: 152px;
  }

  .hero-service-copy > strong {
    font-size: .76rem;
  }

  .hero-service-copy > p {
    display: none;
  }

  .hero-service-main .hero-service-copy > p {
    display: block;
  }

  .hero-service-photo-badge {
    right: 8px;
    top: 8px;
    font-size: .58rem;
  }

  .hero-services-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-services-footer a {
    justify-content: center;
    width: 100%;
  }

  .promo-card-topline {
    align-items: flex-start;
  }

  .promo-product-copy a {
    width: 100%;
  }
}

@media (max-width: 360px) {
  .hero-services-grid {
    grid-template-columns: 1fr;
  }

  .hero-service-tile {
    min-height: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .premium-hero *,
  .premium-hero *::before,
  .premium-hero *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

/* CATALOGUE SIMPLE ET STYLISE */
.hu-catalog-simple {
  --catalog-ink: #101817;
  --catalog-muted: #66716d;
  --catalog-teal: #0f6760;
  --catalog-teal-dark: #0b4643;
  --catalog-cream: #fbf7ef;
  --catalog-peach: #f2d4bb;
  --catalog-gold: #c8994f;
}

.hu-catalog-section:has(.hu-catalog-simple) {
  background:
    radial-gradient(circle at 14% 12%, rgba(242, 212, 187, .42), transparent 28%),
    radial-gradient(circle at 88% 6%, rgba(15, 103, 96, .12), transparent 30%),
    linear-gradient(180deg, #fffdf8 0%, #ffffff 48%, #f7f1e8 100%);
}

.hu-catalog-simple .hu-catalog-head {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
  align-items: center;
  gap: clamp(18px, 3vw, 36px);
  margin-bottom: 18px;
  padding: clamp(22px, 4vw, 42px);
  overflow: hidden;
  border: 1px solid rgba(15, 103, 96, .12);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .94), rgba(251, 247, 239, .8) 56%, rgba(232, 245, 239, .7)),
    linear-gradient(120deg, rgba(15, 103, 96, .08), transparent 42%);
  box-shadow: 0 24px 70px rgba(15, 34, 31, .09);
}

.hu-catalog-simple .hu-catalog-head::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 46%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(15, 103, 96, .08) 36%, rgba(200, 153, 79, .12) 100%);
  clip-path: polygon(28% 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}

.hu-catalog-simple .hu-catalog-copy,
.hu-catalog-simple .hu-catalog-hero {
  position: relative;
  z-index: 1;
}

.hu-catalog-simple .hu-catalog-head .label {
  color: var(--catalog-teal);
  background: rgba(15, 103, 96, .08);
  border: 1px solid rgba(15, 103, 96, .14);
}

.hu-catalog-simple .hu-catalog-head h2 {
  max-width: 680px;
  margin-top: 18px;
  color: var(--catalog-ink);
  font-size: clamp(2.2rem, 5vw, 4.15rem);
  line-height: .98;
}

.hu-catalog-simple .hu-catalog-head p {
  max-width: 610px;
  margin-top: 14px;
  color: var(--catalog-muted);
  font-size: clamp(.96rem, 1.2vw, 1.08rem);
}

.hu-catalog-simple .hu-catalog-trustline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.hu-catalog-simple .hu-catalog-trustline span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(15, 103, 96, .12);
  border-radius: 999px;
  color: #21332f;
  background: rgba(255, 255, 255, .76);
  box-shadow: 0 10px 24px rgba(16, 24, 23, .05);
  font-size: .78rem;
  font-weight: 900;
}

.hu-catalog-simple .hu-catalog-trustline svg {
  width: 15px;
  height: 15px;
  color: var(--catalog-teal);
}

.hu-catalog-simple .hu-catalog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.hu-catalog-simple .hu-catalog-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 950;
  line-height: 1;
  text-decoration: none;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.hu-catalog-simple .hu-catalog-actions svg {
  width: 16px;
  height: 16px;
}

.hu-catalog-simple .hu-catalog-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--catalog-teal), var(--catalog-teal-dark));
  box-shadow: 0 16px 30px rgba(15, 103, 96, .22);
}

.hu-catalog-simple .hu-catalog-whatsapp {
  color: var(--catalog-teal-dark);
  border: 1px solid rgba(15, 103, 96, .14);
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 12px 26px rgba(16, 24, 23, .06);
}

.hu-catalog-simple .hu-catalog-actions a:hover {
  transform: translateY(-2px);
}

.hu-catalog-simple .hu-catalog-hero {
  display: grid;
  justify-items: end;
  min-width: 0;
}

.hu-catalog-simple .hu-catalog-shopper {
  position: relative;
  width: 100%;
  height: clamp(258px, 24vw, 310px);
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 28px;
  background: #ecf3ec;
  box-shadow: 0 24px 56px rgba(16, 24, 23, .16);
}

.hu-catalog-simple .hu-catalog-shopper::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 20, 18, .08) 0%, transparent 38%, rgba(10, 20, 17, .74) 100%),
    linear-gradient(90deg, rgba(15, 103, 96, .2), transparent 52%);
  pointer-events: none;
}

.hu-catalog-simple .hu-catalog-shopper img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center 44%;
  filter: saturate(1.12) contrast(1.03);
  transition: transform .34s ease, filter .34s ease;
}

.hu-catalog-simple .hu-catalog-head:hover .hu-catalog-shopper img {
  transform: scale(1.04);
  filter: saturate(1.1) contrast(1.04);
}

.hu-catalog-simple .hu-catalog-shopper figcaption {
  position: absolute;
  left: 16px;
  right: auto;
  bottom: 16px;
  z-index: 1;
  display: grid;
  gap: 3px;
  width: min(300px, calc(100% - 32px));
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 18px;
  color: #fff;
  background: rgba(12, 24, 21, .62);
  box-shadow: 0 18px 30px rgba(10, 18, 16, .16);
  backdrop-filter: blur(14px);
}

.hu-catalog-simple .hu-catalog-shopper figcaption span {
  color: #d9f4e8;
  font-size: .68rem;
  font-weight: 950;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.hu-catalog-simple .hu-catalog-shopper figcaption strong {
  font-size: .98rem;
  font-weight: 950;
  line-height: 1.12;
}

.hu-catalog-simple .hu-catalog-local-badges {
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  max-width: calc(100% - 222px);
}

.hu-catalog-simple .hu-catalog-local-badges span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 31px;
  padding: 0 9px;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 999px;
  color: #fff;
  background: rgba(9, 34, 30, .62);
  box-shadow: 0 12px 22px rgba(10, 18, 16, .14);
  font-size: .66rem;
  font-weight: 950;
  line-height: 1;
  backdrop-filter: blur(12px);
}

.hu-catalog-simple .hu-catalog-local-badges svg {
  width: 13px;
  height: 13px;
}

.hu-catalog-simple .hu-catalog-product-stack {
  position: absolute;
  right: 14px;
  top: 76px;
  z-index: 2;
  width: 144px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 18px;
  color: #fff;
  background: rgba(12, 24, 21, .66);
  box-shadow: 0 18px 30px rgba(10, 18, 16, .18);
  backdrop-filter: blur(15px);
}

.hu-catalog-simple .hu-catalog-product-stack > span {
  display: block;
  margin-bottom: 8px;
  color: #d9f4e8;
  font-size: .62rem;
  font-weight: 950;
  letter-spacing: .04em;
  line-height: 1;
  text-transform: uppercase;
}

.hu-catalog-simple .hu-catalog-product-stack div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
}

.hu-catalog-simple .hu-catalog-product-stack img {
  width: 100%;
  height: 38px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, .48);
  border-radius: 12px;
  background: rgba(255, 255, 255, .9);
  object-fit: contain;
  filter: drop-shadow(0 8px 10px rgba(8, 18, 16, .18));
}

.hu-catalog-simple .hu-catalog-credit {
  position: absolute;
  right: 13px;
  bottom: 12px;
  z-index: 2;
  max-width: 150px;
  overflow: hidden;
  color: rgba(255, 255, 255, .64);
  font-size: .56rem;
  font-weight: 800;
  line-height: 1.15;
  text-align: right;
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hu-catalog-simple .hu-catalog-credit:hover {
  color: #fff;
}

.hu-catalog-simple .hu-catalog-cart {
  position: relative;
  z-index: 1;
  min-width: 178px;
  justify-content: center;
  border: 1px solid rgba(15, 103, 96, .14);
  border-radius: 18px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 16px 34px rgba(16, 24, 23, .08);
  backdrop-filter: blur(14px);
}

.hu-catalog-simple .hu-catalog-hero .hu-catalog-cart {
  position: absolute;
  top: 14px;
  right: 14px;
  min-width: auto;
  min-height: 42px;
  padding-inline: 13px;
  border-color: rgba(255, 255, 255, .54);
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 16px 30px rgba(16, 24, 23, .14);
}

.hu-catalog-simple .hu-category-rail {
  margin: 0 0 8px;
  padding: 8px 2px 14px;
  gap: 8px;
  scrollbar-width: none;
  mask-image: linear-gradient(90deg, #000 88%, transparent);
}

.hu-catalog-simple .hu-category-rail::-webkit-scrollbar,
.hu-catalog-simple .hu-subcategory-panel::-webkit-scrollbar {
  display: none;
}

.hu-catalog-simple .hu-category-chip {
  min-height: 44px;
  padding: 0 17px;
  border-radius: 14px;
  border-color: rgba(15, 103, 96, .12);
  color: #21322f;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 10px 24px rgba(16, 24, 23, .05);
}

.hu-catalog-simple .hu-category-chip:hover,
.hu-catalog-simple .hu-category-chip.active {
  color: #ffffff;
  border-color: rgba(15, 103, 96, .72);
  background: linear-gradient(135deg, var(--catalog-teal), var(--catalog-teal-dark));
  box-shadow: 0 16px 30px rgba(15, 103, 96, .22);
  transform: translateY(-1px);
}

.hu-catalog-simple .hu-subcategory-panel {
  max-height: 54px;
  margin: 0 0 14px;
  padding: 4px 2px 12px;
  gap: 7px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  mask-image: linear-gradient(90deg, #000 86%, transparent);
}

.hu-catalog-simple .hu-subcategory-chip {
  min-height: 36px;
  padding: 0 13px;
  border-radius: 999px;
  font-size: .78rem;
  color: #52605c;
  background: rgba(255, 255, 255, .66);
  border-color: rgba(15, 103, 96, .1);
  box-shadow: none;
}

.hu-catalog-simple .hu-subcategory-chip:hover,
.hu-catalog-simple .hu-subcategory-chip.active {
  color: var(--catalog-teal-dark);
  background: rgba(15, 103, 96, .1);
  border-color: rgba(15, 103, 96, .18);
}

.hu-catalog-simple .hu-filter-panel {
  grid-template-columns: minmax(280px, 1.6fr) repeat(4, minmax(135px, .8fr));
  gap: 10px;
  align-items: end;
  margin: 12px 0 14px;
  padding: 14px;
  border: 1px solid rgba(15, 103, 96, .12);
  border-radius: 24px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 22px 58px rgba(16, 24, 23, .08);
  backdrop-filter: blur(18px);
}

.hu-catalog-simple .hu-filter-optional {
  display: none;
}

.hu-catalog-simple .hu-filter-panel label span {
  color: #65716d;
  font-size: .68rem;
  letter-spacing: .04em;
}

.hu-catalog-simple .hu-filter-panel input,
.hu-catalog-simple .hu-filter-panel select {
  min-height: 44px;
  border: 1px solid rgba(15, 103, 96, .13);
  border-radius: 14px;
  color: #182522;
  background: #fffdf9;
  box-shadow: none;
}

.hu-catalog-simple .hu-search-field {
  grid-column: span 1;
}

.hu-catalog-simple .hu-search-field input {
  padding-left: 42px;
}

.hu-catalog-simple .hu-search-field i {
  color: var(--catalog-teal);
}

.hu-catalog-simple .hu-filter-panel input:focus,
.hu-catalog-simple .hu-filter-panel select:focus {
  border-color: rgba(15, 103, 96, .48);
  outline: 4px solid rgba(15, 103, 96, .1);
}

.hu-catalog-simple .hu-catalog-toolbar {
  margin: 8px 0 24px;
  padding: 0;
  border: 0;
  background: transparent;
}

.hu-catalog-simple .hu-catalog-toolbar p {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
  border-radius: 999px;
  color: #53605d;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(15, 103, 96, .1);
}

.hu-catalog-simple .hu-catalog-toolbar strong {
  color: var(--catalog-teal);
}

.hu-catalog-simple .hu-reset-filters {
  border-radius: 999px;
  color: var(--catalog-teal-dark);
  background: rgba(15, 103, 96, .08);
}

@media (max-width: 1080px) {
  .hu-catalog-simple .hu-catalog-head {
    grid-template-columns: 1fr;
  }

  .hu-catalog-simple .hu-catalog-hero {
    justify-items: stretch;
  }

  .hu-catalog-simple .hu-catalog-shopper {
    height: 252px;
  }

  .hu-catalog-simple .hu-catalog-product-stack {
    top: 72px;
  }

  .hu-catalog-simple .hu-filter-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hu-catalog-simple .hu-search-field,
  .hu-catalog-simple label:has(#hu-sort-products) {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .hu-catalog-simple .hu-catalog-head {
    padding: 22px;
    border-radius: 24px;
  }

  .hu-catalog-simple .hu-catalog-head h2 {
    margin-top: 14px;
    font-size: clamp(2.1rem, 13vw, 3.15rem);
  }

  .hu-catalog-simple .hu-catalog-trustline {
    margin-top: 16px;
    gap: 7px;
  }

  .hu-catalog-simple .hu-catalog-trustline span {
    min-height: 35px;
    padding-inline: 10px;
    font-size: .72rem;
  }

  .hu-catalog-simple .hu-catalog-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hu-catalog-simple .hu-catalog-actions a {
    width: 100%;
  }

  .hu-catalog-simple .hu-catalog-cart {
    width: 100%;
    min-height: 48px;
  }

  .hu-catalog-simple .hu-catalog-hero .hu-catalog-cart {
    width: auto;
    min-height: 40px;
    padding-inline: 12px;
  }

  .hu-catalog-simple .hu-catalog-shopper {
    height: 218px;
    border-radius: 22px;
  }

  .hu-catalog-simple .hu-catalog-shopper figcaption {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: 230px;
    width: auto;
    padding: 10px 12px;
    border-radius: 16px;
  }

  .hu-catalog-simple .hu-catalog-local-badges {
    max-width: calc(100% - 24px);
    padding-right: 118px;
    gap: 5px;
  }

  .hu-catalog-simple .hu-catalog-local-badges span {
    min-height: 28px;
    padding-inline: 8px;
    font-size: .59rem;
  }

  .hu-catalog-simple .hu-catalog-credit {
    right: 12px;
    max-width: 118px;
    font-size: .5rem;
  }

  .hu-catalog-simple .hu-catalog-product-stack {
    display: none;
  }

  .hu-catalog-simple .hu-category-rail {
    mask-image: none;
  }

  .hu-catalog-simple .hu-category-chip {
    min-height: 42px;
    padding-inline: 14px;
    font-size: .86rem;
  }

  .hu-catalog-simple .hu-subcategory-panel {
    max-height: 48px;
    mask-image: none;
  }

  .hu-catalog-simple .hu-filter-panel {
    grid-template-columns: 1fr;
    padding: 12px;
    border-radius: 20px;
  }
}

/* BLOC ACHAT SIMPLE HAPPY UP */
.happy-steps {
  display: block;
  padding: clamp(54px, 7vw, 88px) clamp(16px, 5vw, 72px);
  border-bottom: 1px solid rgba(15, 103, 96, .1);
  background:
    radial-gradient(circle at 7% 12%, rgba(242, 212, 187, .42), transparent 26%),
    radial-gradient(circle at 91% 18%, rgba(15, 103, 96, .13), transparent 30%),
    linear-gradient(180deg, #fffdf8 0%, #fbf7ef 100%);
}

.happy-steps-head,
.happy-steps-grid {
  width: min(1180px, 100%);
  margin-inline: auto;
}

.happy-steps-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(20px, 4vw, 46px);
  align-items: end;
  margin-bottom: 22px;
}

.happy-steps-head .label {
  color: #0f6760;
  background: rgba(15, 103, 96, .08);
  border: 1px solid rgba(15, 103, 96, .14);
}

.happy-steps-head h2 {
  max-width: 620px;
  margin: 14px 0 10px;
  color: #101817;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(2rem, 4vw, 3.35rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0;
}

.happy-steps-head p {
  max-width: 690px;
  color: #63706c;
  font-size: clamp(.95rem, 1.2vw, 1.05rem);
  line-height: 1.7;
}

.happy-steps-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.happy-steps-actions .btn {
  min-height: 46px;
  padding-inline: 18px;
  border-radius: 999px;
  white-space: nowrap;
}

.happy-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.happy-steps .feature,
.happy-steps .feature:first-child {
  display: flex;
  grid-column: auto;
  grid-row: auto;
  flex-direction: column;
  min-height: 245px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(15, 103, 96, .12);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(255, 253, 249, .82));
  box-shadow: 0 18px 46px rgba(16, 24, 23, .07);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}

.happy-steps .feature::after {
  height: 3px;
  background: linear-gradient(90deg, #0f6760, #c8994f);
}

.happy-steps .feature:hover {
  transform: translateY(-5px);
  border-color: rgba(15, 103, 96, .22);
  background: #fffdf9;
  box-shadow: 0 24px 60px rgba(16, 24, 23, .12);
}

.happy-steps .feature-icon,
.happy-steps .feature:first-child .feature-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: rgba(15, 103, 96, .09);
  border: 1px solid rgba(15, 103, 96, .14);
}

.happy-steps .feature-icon svg {
  width: 24px;
  height: 24px;
  color: #0f6760;
}

.happy-steps .feature h3,
.happy-steps .feature:first-child h3 {
  margin: 0 0 9px;
  color: #111a18;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.02rem;
  font-weight: 850;
  line-height: 1.25;
}

.happy-steps .feature p {
  margin: 0;
  color: #60706b;
  font-size: .9rem;
  line-height: 1.62;
}

.happy-step-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: auto;
  padding-top: 18px;
}

.happy-step-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  color: #0b4643;
  background: rgba(15, 103, 96, .08);
  border: 1px solid rgba(15, 103, 96, .1);
  font-size: .72rem;
  font-weight: 800;
}

@media (max-width: 1020px) {
  .happy-steps-head {
    grid-template-columns: 1fr;
  }

  .happy-steps-actions {
    justify-content: flex-start;
  }

  .happy-steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .happy-steps {
    padding: 46px 14px;
  }

  .happy-steps-head {
    margin-bottom: 18px;
  }

  .happy-steps-actions,
  .happy-steps-actions .btn {
    width: 100%;
  }

  .happy-steps-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .happy-steps .feature,
  .happy-steps .feature:first-child {
    min-height: auto;
    padding: 18px;
    border-radius: 20px;
  }
}
