:root {
  /* Core Palette */
  --bg: #F9F8F6;
  --surface: #ffffff;
  --surface-2: #F2EFE9;
  --surface-glass: rgba(255, 255, 255, 0.75);
  --ink: #1A1918;
  --muted: #5e5a56;

  /* Brand Accents */
  --accent: #0D615A;
  /* Deeper Teal */
  --accent-light: #14B8A6;
  --accent-dark: #0A4F49;
  --accent-2: #F97316;
  /* High-priority Orange */
  --accent-3: #EAB308;

  /* Semantic */
  --leaf: #1f7a64;
  --success: #6ccaa3;
  --warning: #f59e0b;
  --error: #ef4444;

  /* Elevation & Depth */
  --shadow-xs: 0 2px 4px rgba(16, 16, 18, 0.03), 0 1px 2px rgba(16, 16, 18, 0.02);
  --shadow-sm: 0 4px 8px -2px rgba(16, 16, 18, 0.06), 0 2px 4px -2px rgba(16, 16, 18, 0.04);
  --shadow-md: 0 12px 24px -6px rgba(16, 16, 18, 0.08), 0 8px 12px -6px rgba(16, 16, 18, 0.04);
  --shadow-lg: 0 24px 48px -12px rgba(16, 16, 18, 0.12);
  --shadow-glow: 0 0 20px rgba(15, 118, 110, 0.15);

  /* Radius */
  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 9999px;

  /* Motion */
  --t-fast: 200ms;
  --t-med: 400ms;
  --t-slow: 600ms;
  --ease-out: cubic-bezier(0.21, 1.02, 0.48, 1);
  --ease-elastic: cubic-bezier(0.21, 1.15, 0.35, 1);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background-color: var(--bg);
  background-image: url('../img/noise.svg'), radial-gradient(circle at 15% 10%, rgba(13, 97, 90, 0.03), transparent 30%), radial-gradient(circle at 85% 90%, rgba(249, 115, 22, 0.03), transparent 30%);
  background-attachment: fixed;
  background-size: 100px 100px, 100% 100%, 100% 100%;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

h1,
h2,
h3,
h4 {
  font-family: "Fraunces", "Georgia", serif;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-top: 0;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

h4 {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

.hero {
  padding: 32px 6vw 56px;
  background: radial-gradient(circle at 12% 8%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0) 45%),
    radial-gradient(circle at 88% 18%, rgba(13, 97, 90, 0.12), rgba(13, 97, 90, 0) 55%),
    linear-gradient(160deg, #F2EFE9 0%, #E6E2DA 100%);
  color: var(--ink);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto auto;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(13, 97, 90, 0.15), rgba(13, 97, 90, 0));
  pointer-events: none;
  filter: blur(40px);
}

.hero-small {
  padding-bottom: 40px;
}

.hero::after {
  content: "";
  position: absolute;
  right: -140px;
  top: -120px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0));
  border-radius: 50%;
  pointer-events: none;
}

.marquee {
  background: rgba(255, 246, 234, 0.8);
  border-radius: var(--r-pill);
  padding: 8px 12px;
  margin-bottom: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  border: 1px solid rgba(236, 107, 95, 0.15);
  backdrop-filter: blur(6px);
}

.marquee-track {
  display: flex;
  gap: 32px;
  align-items: center;
  font-weight: 700;
  color: var(--muted);
  animation: marquee 24s linear infinite;
}

.marquee-track span {
  white-space: nowrap;
}

/* Glass Utility */
.glass-panel {
  background: var(--surface-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: var(--shadow-sm), 0 0 0 1px rgba(13, 97, 90, 0.05);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  padding: 12px 24px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow-sm), 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: transform var(--t-med) var(--ease-out);
  position: relative;
  z-index: 120;
}

.topbar:hover {
  background: rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow-md);
}

.news-ticker {
  margin: 0 0 24px;
  width: 100%;
  padding: 12px 4vw;
  border-radius: 0;
  background: rgba(17, 24, 39, 0.92);
  color: #f8fafc;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.3);
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.news-track {
  display: flex;
  gap: 32px;
  align-items: center;
  font-weight: 700;
  letter-spacing: 0.4px;
  animation: news-marquee 28s linear infinite;
}

.news-track span {
  white-space: nowrap;
}

.news-ticker:hover .news-track {
  animation-play-state: paused;
}

.hero-search {
  display: flex;
  justify-content: center;
  margin-bottom: 22px;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  justify-content: center;
}

.hero-cta .btn-primary {
  box-shadow: 0 16px 28px rgba(236, 107, 95, 0.35);
}

.btn-primary,
.btn-ghost {
  border: none;
  border-radius: var(--r-pill);
  padding: 14px 28px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1rem;
  letter-spacing: 0.01em;
  transition: all var(--t-fast) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.btn-primary:after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.15), transparent);
  opacity: 0;
  transition: opacity var(--t-fast) ease;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.6);
  color: var(--ink);
  box-shadow: 0 0 0 1px rgba(13, 97, 90, 0.1) inset;
  backdrop-filter: blur(8px);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), 0 0 20px rgba(13, 97, 90, 0.4);
  background: var(--accent-light);
}

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

.btn-ghost:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-sm);
  color: var(--accent);
}

.btn-primary:active,
.btn-ghost:active {
  transform: translateY(0) scale(0.98);
}

.btn-primary:focus-visible,
.btn-ghost:focus-visible,
.cart:focus-visible,
.cart-checkout:focus-visible,
.checkout-send:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 2px;
}

.hero-carousel {
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  padding: 16px;
  border: 1px solid rgba(15, 118, 110, 0.12);
  width: 100%;
}

.hero-carousel.full-width {
  width: 100%;
  max-width: none;
  margin: 0 auto 28px;
}

.hero-swiper {
  position: relative;
  width: 100%;
}

.hero-slide {
  border-radius: var(--r-lg);
  overflow: hidden;
  min-height: 0;
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 0;
  object-fit: cover;
}

.hero-swiper .swiper-slide {
  opacity: 0;
}

.hero-swiper .swiper-slide-active,
.hero-swiper .swiper-slide-duplicate-active {
  opacity: 1;
}

.hero-slide-content {
  position: relative;
  z-index: 2;
  padding: 28px;
  max-width: 460px;
  background: rgba(255, 255, 255, 0.78);
  border-radius: var(--r-lg);
  box-shadow: 0 16px 28px rgba(16, 16, 18, 0.12);
  border: 1px solid rgba(15, 118, 110, 0.1);
}

.hero-carousel,
.search-wrap,
.campaign-card,
.promo-dialog,
.cart-panel-content,
.detail-card,
.card {
  background-color: var(--surface);
}

.hero-slide h2 {
  margin: 10px 0;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.hero-slide p {
  margin: 0 0 16px;
  color: var(--muted);
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  opacity: 0.7;
}

.bg-warm {
  background: radial-gradient(circle at top, #fff3e6, #f1d2b8);
}

.bg-mint {
  background: radial-gradient(circle at top, #e7f6f3, #bfe2db);
}

.bg-imagen2 {
  background-color: #e5f4f2;
  background-image: url("assets/img/imagen2.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.bg-lavender {
  background: radial-gradient(circle at top, #f1f5f9, #dfe7ef);
}

.bg-peach {
  background: radial-gradient(circle at top, #ffe8dc, #f2bfa8);
}

.pill {
  display: inline-block;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.7);
  font-weight: 700;
  color: var(--accent);
}

.hero-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0 4px;
  width: 100%;
}

.hero-message {
  max-width: none;
  width: 100%;
  margin: 0;
  text-align: center;
  padding: 22px 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(249, 248, 246, 0.35));
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--r-lg);
  box-shadow: 0 24px 50px rgba(15, 118, 110, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  position: relative;
  isolation: isolate;
}

.hero-message::before {
  content: "";
  position: absolute;
  inset: -18px -12px;
  background: radial-gradient(circle at 20% 0%, rgba(13, 97, 90, 0.12), transparent 55%),
    radial-gradient(circle at 80% 100%, rgba(249, 115, 22, 0.12), transparent 55%);
  filter: blur(14px);
  z-index: -1;
  opacity: 0.9;
}

.hero-message::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0));
  opacity: 0.6;
  pointer-events: none;
}

.hero-message-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(13, 97, 90, 0.12);
  color: var(--accent-dark);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.7rem;
  box-shadow: 0 10px 20px rgba(13, 97, 90, 0.12);
}

.hero-message h1 {
  text-shadow: 0 18px 32px rgba(45, 28, 18, 0.18);
}

.hero-center {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 16px;
}

.hero-center p {
  margin: 0;
  color: var(--muted);
}

.hero-message-body {
  margin: 10px 0 18px;
  color: var(--muted);
  font-size: 1.1rem;
}

.hero-message-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  justify-content: center;
  margin-bottom: 18px;
}

.hero-message-highlights span {
  padding: 6px 12px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(249, 115, 22, 0.18);
  color: #9a3412;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 10px 20px rgba(249, 115, 22, 0.12);
}

.hero-play {
  margin-left: auto;
  border: 1px solid rgba(15, 118, 110, 0.18);
  background: linear-gradient(135deg, #ffffff, #e9f5f1);
  padding: 8px 14px;
  border-radius: var(--r-pill);
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--shadow-xs);
  transition: transform var(--t-fast) var(--ease-out),
    box-shadow var(--t-fast) var(--ease-out),
    background var(--t-fast) var(--ease-out);
}

.hero-controls .swiper-pagination {
  margin: 0 auto;
}

.hero-play:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(16, 16, 18, 0.14);
  background: linear-gradient(135deg, #ffffff, #def1ec);
}

.hero-play:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.swiper-button-prev,
.swiper-button-next {
  position: static;
  width: 34px;
  height: 34px;
  border-radius: var(--r-pill);
  background: linear-gradient(135deg, #ffffff, #eef6f3);
  color: var(--ink);
  border: 1px solid rgba(15, 118, 110, 0.2);
  box-shadow: 0 10px 18px rgba(16, 16, 18, 0.12);
  transition: transform var(--t-fast) var(--ease-out),
    box-shadow var(--t-fast) var(--ease-out),
    background var(--t-fast) var(--ease-out);
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 14px;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 24px rgba(16, 16, 18, 0.16);
  background: linear-gradient(135deg, #ffffff, #e6f2ee);
}

.swiper-pagination-bullet {
  background: rgba(15, 118, 110, 0.2);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: var(--accent);
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
}

.brand img {
  height: clamp(80px, 12vw, 150px);
  width: auto;
  border-radius: 0;
  display: block;
  filter: drop-shadow(0 10px 22px rgba(40, 26, 18, 0.18));
}

.menu {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.12);
  background: transparent;
}

.menu-toggle {
  border: 1px solid rgba(15, 118, 110, 0.2);
  background: rgba(255, 255, 255, 0.9);
  color: var(--accent-dark);
  padding: 10px 16px;
  border-radius: var(--r-pill);
  font-weight: 800;
  cursor: pointer;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: none;
  box-shadow: var(--shadow-sm);
}

.menu-toggle::before {
  content: "";
  width: 18px;
  height: 2px;
  background: currentColor;
  display: inline-block;
  border-radius: 999px;
  box-shadow: 0 6px 0 currentColor, 0 12px 0 currentColor;
}

.menu-toggle:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 2px;
}

.menu a,
.menu summary {
  color: inherit;
  text-decoration: none;
  font-family: "Fraunces", "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: 0.4px;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  position: relative;
  text-transform: uppercase;
  font-size: 0.95rem;
  transition: color var(--t-fast) var(--ease-out),
    border-color var(--t-med) var(--ease-out),
    transform var(--t-fast) var(--ease-out);
}

.menu summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.menu summary::-webkit-details-marker {
  display: none;
}

.menu a:hover,
.menu summary:hover,
.menu a:focus-visible,
.menu summary:focus-visible {
  border-bottom-color: rgba(15, 118, 110, 0.75);
  color: rgba(15, 118, 110, 0.95);
  transform: translateY(-1px);
}

.menu-dropdown {
  position: relative;
  z-index: 40;
}

.menu-dropdown summary::after {
  content: "▾";
  display: inline-block;
  font-size: 0.85em;
  color: currentColor;
  transform: translateY(-1px);
  transition: transform var(--t-med) var(--ease-out),
    color var(--t-med) var(--ease-out);
}

.menu-dropdown[open] summary::after {
  transform: translateY(-1px) rotate(180deg);
}

.menu-dropdown .dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  z-index: 80;
  min-width: 240px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 12px;
  box-shadow: 0 18px 28px rgba(15, 23, 42, 0.14);
  padding: 14px 16px;
  display: grid;
  gap: 10px;
  z-index: 20;
}

.menu-dropdown:not([open]) .dropdown {
  display: none;
}

.menu-dropdown .dropdown a {
  padding-bottom: 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  padding-bottom: 8px;
  text-transform: none;
  letter-spacing: 0.2px;
  font-size: 0.95rem;
}

.menu-dropdown .dropdown a::after {
  display: none;
}

.menu-dropdown .dropdown a:hover,
.menu-dropdown .dropdown a:focus-visible {
  border-bottom-color: rgba(15, 118, 110, 0.6);
  color: rgba(15, 118, 110, 0.95);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.cart {
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: linear-gradient(135deg, #1f2937, #111827);
  color: #f8fafc;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 14px 24px rgba(17, 24, 39, 0.28);
}

.cart:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.hero-content {
  max-width: 760px;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin: 0 0 12px;
  letter-spacing: -0.5px;
}

.hero-content p {
  margin: 0 0 28px;
  font-size: 1.05rem;
  color: #2c2520;
  animation: rise 0.9s ease-out;
}

.search-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  padding: 8px;
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-md);
  margin: 0 auto;
  max-width: 600px;
  width: 100%;
  border: 1px solid rgba(13, 97, 90, 0.1);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
  position: relative;
  z-index: 10;
}

.search-wrap:focus-within {
  transform: translateY(-2px) scale(1.01);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.search-wrap input {
  border: none;
  outline: none;
  flex: 1;
  font-size: 1.05rem;
  background: transparent;
  padding: 8px 16px;
  color: var(--ink);
  font-weight: 500;
}

.search-wrap input::placeholder {
  color: var(--muted);
  opacity: 0.8;
}

.search-wrap button {
  border: none;
  background: var(--accent);
  color: #fff;
  padding: 12px 24px;
  border-radius: var(--r-pill);
  font-weight: 700;
  cursor: pointer;
  transition: background var(--t-fast);
  box-shadow: 0 4px 12px rgba(13, 97, 90, 0.3);
}

.search-wrap button:hover {
  background: var(--accent-light);
}

.search-suggest {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 20px;
  border: 1px solid rgba(15, 118, 110, 0.14);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  display: grid;
  gap: 6px;
  max-height: 320px;
  overflow: auto;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.search-suggest-item {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 16px;
  text-decoration: none;
  color: var(--ink);
  background: transparent;
  transition: background var(--t-fast) var(--ease-out),
    transform var(--t-fast) var(--ease-out);
}

.search-suggest-item:hover,
.search-suggest-item.is-active {
  background: rgba(15, 118, 110, 0.08);
  transform: translateY(-1px);
}

.search-suggest-thumb {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid rgba(15, 118, 110, 0.08);
  background: #fff;
}

.search-suggest-text h4 {
  margin: 0;
  font-size: 0.98rem;
  font-family: "Manrope", "Segoe UI", system-ui, sans-serif;
  font-weight: 700;
}

.search-suggest-text p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.search-suggest-cta {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--accent);
}

.search-suggest-empty {
  padding: 12px;
  border-radius: 14px;
  background: rgba(249, 115, 22, 0.12);
  color: #9a3412;
  font-weight: 700;
  text-align: center;
}

.catalog {
  padding: 48px 6vw 72px;
  background: radial-gradient(circle at 10% 0%, rgba(15, 118, 110, 0.08), transparent 45%);
}

.catalog-notice {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  align-items: center;
  padding: 24px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: var(--r-lg);
  border: 1px solid rgba(15, 118, 110, 0.12);
  box-shadow: var(--shadow-sm);
}

.catalog-notice img {
  width: 100%;
  max-width: 520px;
  justify-self: center;
  border-radius: var(--r-lg);
  box-shadow: 0 16px 30px rgba(16, 16, 18, 0.14);
}

.catalog-notice-content h3 {
  margin: 0 0 12px;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
}

.catalog-notice-content p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1.02rem;
}

.featured-spotlight {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 24px;
  align-items: center;
  padding: 24px;
  margin-bottom: 28px;
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, rgba(255, 250, 243, 0.95), rgba(255, 255, 255, 0.95));
  border: 1px solid rgba(249, 115, 22, 0.18);
  box-shadow: var(--shadow-md), 0 16px 30px rgba(249, 115, 22, 0.12);
  position: relative;
  overflow: hidden;
}

.featured-spotlight::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -60px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.22), transparent 70%);
  pointer-events: none;
}

.featured-spotlight-content h3 {
  margin: 10px 0 12px;
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
}

.featured-spotlight-content p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1.05rem;
}

.featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  background: rgba(249, 115, 22, 0.2);
  color: #9a3412;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.featured-spotlight-media {
  margin: 0;
  position: relative;
}

.featured-spotlight-trigger {
  border: none;
  padding: 0;
  background: transparent;
  width: 100%;
  cursor: zoom-in;
}

.featured-spotlight-trigger:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 4px;
  border-radius: var(--r-lg);
}

.featured-spotlight-media img {
  width: 100%;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(15, 118, 110, 0.12);
  transform: translateY(-8px);
}

.image-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-med) var(--ease-out);
  z-index: 25;
}

.image-modal.show {
  opacity: 1;
  pointer-events: auto;
}

.image-modal-dialog {
  background: var(--surface);
  padding: 20px;
  border-radius: var(--r-lg);
  width: min(920px, 92vw);
  max-height: 90vh;
  overflow: auto;
  box-shadow: var(--shadow-lg);
  position: relative;
  border: 1px solid rgba(15, 118, 110, 0.12);
  display: grid;
  gap: 12px;
}

.image-modal-dialog img {
  width: 100%;
  height: auto;
  border-radius: var(--r-md);
}

.image-modal-close {
  position: absolute;
  right: 16px;
  top: 16px;
  border: none;
  background: rgba(15, 118, 110, 0.12);
  border-radius: var(--r-pill);
  width: 36px;
  height: 36px;
  cursor: pointer;
  font-weight: 700;
}

.campaigns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  padding: 0 6vw 56px;
}

.campaign-card {
  background: linear-gradient(120deg, #ffffff, #f3f1ed);
  border-radius: var(--r-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-med) var(--ease-soft),
    box-shadow var(--t-med) var(--ease-soft);
  border: 1px solid rgba(15, 118, 110, 0.1);
}

.campaign-card.alt {
  background: linear-gradient(120deg, #f4fbfa, #e1f0ec);
}

.campaign-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.campaign-card h3 {
  margin: 0 0 8px;
  font-family: "Georgia", "Times New Roman", serif;
}

.campaign-card p {
  margin: 0 0 16px;
  color: var(--muted);
}

.social-proof {
  padding: 0 6vw 64px;
  background: radial-gradient(circle at 70% 10%, rgba(234, 179, 8, 0.08), transparent 40%);
}

.highlight-section {
  padding: 48px 6vw 72px;
  background: radial-gradient(circle at 10% 0%, rgba(15, 118, 110, 0.08), transparent 45%);
}

.research-hero {
  background: rgba(255, 255, 255, 0.85);
  border-radius: var(--r-lg);
  border: 1px solid rgba(15, 118, 110, 0.12);
  box-shadow: var(--shadow-sm);
  padding: 18px;
  margin-bottom: 28px;
}

.research-hero .swiper {
  width: 100%;
  height: auto;
}

.research-hero img {
  width: 100%;
  height: auto;
  border-radius: var(--r-md);
  display: block;
}

.research-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0 4px;
  width: 100%;
}

.research-controls .swiper-pagination {
  margin: 0 auto;
}

.research-controls .swiper-button-prev,
.research-controls .swiper-button-next {
  position: static;
}

.research-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-bottom: 20px;
}

.research-card {
  background: var(--surface);
  padding: 18px;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(15, 118, 110, 0.1);
  display: grid;
  gap: 10px;
  transition: transform var(--t-med) var(--ease-soft),
    box-shadow var(--t-med) var(--ease-soft),
    border-color var(--t-med) var(--ease-soft);
}

.research-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(15, 118, 110, 0.2);
}

.research-card h3 {
  margin: 0 0 8px;
}

.research-card p {
  margin: 0;
  color: var(--muted);
}

.research-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 6px;
}

.research-cta {
  justify-self: flex-start;
  margin-top: 4px;
}

.section-intro {
  margin: 0 0 20px;
  color: var(--muted);
  max-width: 900px;
}

.offers {
  padding: 0 6vw 56px;
  background: radial-gradient(circle at 90% 10%, rgba(249, 115, 22, 0.08), transparent 40%);
}

.product-carousel {
  margin-bottom: 24px;
}

.product-swiper {
  padding: 10px 6px 30px;
  width: 100%;
}

.product-swiper .swiper-slide {
  height: auto;
}

.product-swiper .card {
  height: 100%;
}

.product-swiper-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 6px;
}

.product-swiper-pagination {
  order: 0;
}

.product-swiper-meta {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 6px 10px 0;
}

.product-swiper .swiper-button-prev,
.product-swiper .swiper-button-next {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-xs);
  width: auto;
  height: auto;
  padding: 8px 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  border: 1px solid rgba(15, 118, 110, 0.14);
}

.product-swiper .swiper-button-prev::after,
.product-swiper .swiper-button-next::after {
  font-size: 12px;
}

.product-swiper .product-swiper-prev::after {
  order: -1;
}

.product-swiper .swiper-pagination-bullet {
  background: rgba(15, 118, 110, 0.2);
  opacity: 1;
}

.product-swiper .swiper-pagination-bullet-active {
  background: var(--accent);
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.offer-card {
  background: var(--surface);
  padding: 18px;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 8px;
  border: 1px solid rgba(15, 118, 110, 0.1);
}

.offer-card h3 {
  margin: 0;
}

.offer-card p {
  margin: 0;
  color: var(--muted);
}

.offer-price {
  font-weight: 700;
  color: var(--accent-2);
  font-size: 1.1rem;
}

.contact {
  padding: 0 6vw 72px;
  background: radial-gradient(circle at 15% 0%, rgba(15, 118, 110, 0.06), transparent 45%);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.contact-card {
  background: var(--surface);
  padding: 20px;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 12px;
  border: 1px solid rgba(15, 118, 110, 0.1);
}

.contact-card h3 {
  margin: 0;
}

.contact-form {
  display: grid;
  gap: 12px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-weight: 600;
  color: var(--ink);
}

.contact-form input,
.contact-form textarea {
  border: 1px solid rgba(15, 118, 110, 0.2);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 0.95rem;
  font-family: inherit;
  background: rgba(255, 255, 255, 0.9);
}

.form-embed {
  width: 100%;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid rgba(15, 118, 110, 0.12);
  background: rgba(255, 255, 255, 0.9);
}

.form-embed iframe {
  width: 100%;
  min-height: 980px;
  border: 0;
  display: block;
}

.contact-info p {
  margin: 0 0 8px;
  color: var(--muted);
}

.contact-social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.contact-social a {
  color: var(--accent-2);
  text-decoration: none;
  font-weight: 700;
}

.contact-map {
  margin-top: 8px;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  border: 1px solid rgba(15, 118, 110, 0.12);
}

.map-placeholder {
  background: #f3e6dc;
  color: #8a6b63;
  border-radius: var(--r-md);
  padding: 24px;
  text-align: center;
  font-weight: 700;
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 240px;
  border: 0;
}

.social-proof h3 {
  margin: 0 0 18px;
  font-family: "Georgia", "Times New Roman", serif;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.social-grid article {
  background: var(--surface);
  padding: 16px;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-xs);
  border: 1px solid rgba(15, 118, 110, 0.08);
}

.social-grid p {
  margin: 0 0 10px;
  color: var(--muted);
}

.social-grid span {
  font-weight: 700;
}

.filters {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.chip {
  border: none;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid rgba(15, 118, 110, 0.12);
  box-shadow: 0 8px 16px rgba(16, 16, 18, 0.08);
}

.chip.active {
  background: var(--accent);
  color: #f8fafc;
  border-color: rgba(15, 118, 110, 0.4);
}

.filter-controls {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.filter-controls label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--ink);
}

.filter-controls select,
.filter-controls input[type="range"] {
  accent-color: var(--accent);
}

.filter-controls span {
  font-weight: 700;
  color: var(--leaf);
}

.detail {
  padding: 48px 6vw 72px;
}

.detail-card {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(260px, 1.1fr);
  gap: 32px;
  background: var(--surface);
  border-radius: 26px;
  padding: 24px;
  box-shadow: var(--shadow-md);
  align-items: center;
}

.detail-gallery {
  display: grid;
  gap: 12px;
}

.detail-thumbs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.thumb {
  width: 70px;
  height: 54px;
  border: none;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  outline: 2px solid transparent;
}

.thumb.active {
  outline-color: #1b130f;
}

.detail-card img {
  border-radius: 22px;
}

.detail-header {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.detail-stock {
  font-weight: 700;
  color: var(--leaf);
}

.detail-stock.low {
  color: #c2410c;
}

.detail-tag.sale {
  background: rgba(249, 115, 22, 0.18);
  color: #9a3412;
}

.detail-rating {
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.detail-variants {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin-bottom: 12px;
}

.detail-variants label {
  display: grid;
  gap: 6px;
  font-weight: 600;
}

.detail-reviews {
  margin-top: 32px;
}

.detail-reviews h3 {
  margin: 0 0 16px;
}

.review-card {
  background: #fffaf4;
  padding: 14px 16px;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(34, 26, 20, 0.12);
  margin-bottom: 12px;
}

.review-card p {
  margin: 6px 0 0;
  color: var(--muted);
}

.detail-info h2 {
  margin: 6px 0 10px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.detail-info p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.5;
}

.detail-synopsis {
  margin: 0 0 14px;
  color: #3b2f27;
  font-weight: 600;
}

.detail-specs {
  display: grid;
  grid-template-columns: minmax(90px, 140px) 1fr;
  gap: 6px 16px;
  margin: 0 0 16px;
}

.detail-specs dt {
  font-weight: 700;
  color: #3b2f27;
}

.detail-specs dd {
  margin: 0;
  color: var(--muted);
}

.detail-tag {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f6dac2;
  color: #7a3d25;
  font-weight: 700;
  font-size: 0.85rem;
}

.detail-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: grid;
  gap: 8px;
}

.detail-list li {
  padding: 10px 14px;
  background: rgba(15, 118, 110, 0.08);
  border-radius: 12px;
  color: #1f3f3a;
  font-weight: 600;
}

.detail-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.detail-actions button {
  border: none;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #f8fafc;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 12px;
}

.section-title h2::after,
.section-title h3::after {
  content: "";
  display: block;
  width: 46px;
  height: 3px;
  margin-top: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.section-title h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.section-title span {
  color: var(--muted);
  font-weight: 600;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
}

.no-results {
  margin: 24px 0 0;
  color: var(--muted);
  font-weight: 600;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 28px 0 8px;
  flex-wrap: wrap;
}

.page-numbers {
  display: flex;
  align-items: center;
  gap: 8px;
}

.page-btn,
.page-number {
  border: 1px solid rgba(15, 118, 110, 0.16);
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.95),
      rgba(236, 242, 240, 0.9));
  color: var(--ink);
  border-radius: var(--r-pill);
  padding: 8px 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform var(--t-fast) var(--ease-out),
    box-shadow var(--t-fast) var(--ease-out);
  box-shadow: var(--shadow-xs);
}

.page-btn:hover,
.page-number:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.page-number.active {
  background: var(--accent);
  color: #f8fafc;
  border-color: rgba(15, 118, 110, 0.4);
  box-shadow: 0 12px 22px rgba(15, 118, 110, 0.28);
}

.page-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

.page-status {
  text-align: center;
  margin: 0 0 10px;
  color: var(--muted);
  font-weight: 600;
}

.card {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow-sm), 0 0 0 1px rgba(13, 97, 90, 0.05);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all var(--t-med) var(--ease-out);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  opacity: 0;
  /* Handled by reveal */
  animation: fadeIn 0.8s ease forwards;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md), 0 12px 24px rgba(13, 97, 90, 0.1);
  border-color: rgba(13, 97, 90, 0.2);
}

.card img {
  border-radius: var(--r-md);
  transition: transform 0.5s var(--ease-out);
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: #fcfcfc;
}

.card:hover img {
  transform: scale(1.05);
}

.quick-view {
  align-self: flex-start;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--accent);
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity var(--t-med) var(--ease-out),
    transform var(--t-med) var(--ease-out);
}

.card:hover .quick-view {
  opacity: 1;
  transform: translateY(0);
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  filter: blur(10px);
  transition: opacity var(--t-slow) var(--ease-out),
    transform var(--t-slow) var(--ease-out),
    filter 0.8s ease;
  will-change: opacity, transform, filter;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.badge {
  align-self: flex-start;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
}

.badge-new {
  background: rgba(234, 179, 8, 0.18);
  color: #8a6a00;
}

.badge-sale {
  background: rgba(249, 115, 22, 0.18);
  color: #9a3412;
}

.meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  color: var(--muted);
}

.stock {
  color: var(--leaf);
}

.stock.low {
  color: #c2410c;
}

.card:nth-child(1) {
  animation-delay: 0.05s;
}

.card:nth-child(2) {
  animation-delay: 0.12s;
}

.card:nth-child(3) {
  animation-delay: 0.19s;
}

.card:nth-child(4) {
  animation-delay: 0.26s;
}

.card:nth-child(5) {
  animation-delay: 0.33s;
}

.card:nth-child(6) {
  animation-delay: 0.4s;
}

.card h3 {
  margin: 0;
  font-size: 1.1rem;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 6px;
}

.card a.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: 6px;
  text-decoration: none;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent);
}

.price-row button {
  border: 1px solid rgba(15, 118, 110, 0.35);
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #f8fafc;
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 22px rgba(15, 118, 110, 0.25);
}

.price-row button:hover,
.search-wrap button:hover {
  background: var(--accent-dark);
}

.promo-toast {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: var(--surface);
  padding: 14px 16px;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border: 1px solid rgba(15, 118, 110, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity var(--t-med) var(--ease-out),
    transform var(--t-med) var(--ease-out);
  z-index: 12;
}

.promo-toast.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.promo-toast button {
  border: none;
  background: transparent;
  cursor: pointer;
  font-weight: 700;
}

.promo-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-med) var(--ease-out);
  z-index: 20;
}

.promo-modal.show {
  opacity: 1;
  pointer-events: auto;
}

.promo-dialog {
  background: var(--surface);
  padding: 24px;
  border-radius: var(--r-lg);
  max-width: 380px;
  width: calc(100% - 32px);
  box-shadow: var(--shadow-md);
  position: relative;
  border: 1px solid rgba(15, 118, 110, 0.12);
}

.research-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-med) var(--ease-out);
  z-index: 30;
}

.research-modal.show {
  opacity: 1;
  pointer-events: auto;
}

.research-dialog {
  background: var(--surface);
  padding: 26px;
  border-radius: var(--r-lg);
  max-width: 820px;
  width: calc(100% - 32px);
  max-height: 90vh;
  overflow: auto;
  box-shadow: var(--shadow-md);
  position: relative;
  border: 1px solid rgba(15, 118, 110, 0.12);
}

.research-close {
  position: absolute;
  right: 16px;
  top: 16px;
  border: none;
  background: rgba(15, 118, 110, 0.12);
  border-radius: var(--r-pill);
  width: 36px;
  height: 36px;
  cursor: pointer;
  font-weight: 700;
}

.research-modal-header {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
}

.research-modal-header p {
  margin: 0;
  color: var(--muted);
}

.research-form-panels {
  margin-top: 16px;
}

.research-form-panel {
  display: none;
}

.research-form-panel.is-active {
  display: block;
}

.research-form {
  display: grid;
  gap: 12px;
}

.research-form label {
  display: grid;
  gap: 6px;
  font-weight: 600;
  color: var(--ink);
}

.research-form input,
.research-form textarea,
.research-form select {
  border: 1px solid rgba(15, 118, 110, 0.2);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 0.95rem;
  font-family: inherit;
  background: rgba(255, 255, 255, 0.9);
}

.form-row {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.promo-close {
  position: absolute;
  right: 14px;
  top: 14px;
  border: none;
  background: rgba(15, 118, 110, 0.12);
  border-radius: var(--r-pill);
  width: 32px;
  height: 32px;
  cursor: pointer;
  font-weight: 700;
}

.promo-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.cart-panel {
  position: fixed;
  inset: 0;
  background: rgba(20, 12, 8, 0.45);
  display: none;
  align-items: stretch;
  justify-content: flex-end;
  z-index: 10;
}

.cart-panel.open {
  display: flex;
}

.cart-panel-content {
  width: min(420px, 92vw);
  background: #fffaf4;
  padding: 24px;
  box-shadow: -16px 0 40px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: auto;
}

.cart-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-panel-header h3 {
  margin: 0;
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 1.4rem;
}

.cart-close {
  border: none;
  background: #f0e3d3;
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
}

.cart-items {
  display: grid;
  gap: 12px;
}

.cart-empty {
  margin: 0;
  color: var(--muted);
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(15, 118, 110, 0.08);
  border-radius: 14px;
}

.cart-item-title {
  font-weight: 700;
}

.cart-item-meta {
  color: var(--muted);
  font-size: 0.9rem;
}

.cart-item-variant {
  font-size: 0.85rem;
  color: var(--muted);
}

.cart-item-actions button {
  border: none;
  background: #fff;
  padding: 6px 10px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
}

.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.cart-qty {
  min-width: 20px;
  text-align: center;
  font-weight: 700;
  color: #3b2f27;
}

.cart-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.checkout {
  display: grid;
  gap: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(15, 118, 110, 0.16);
}

.checkout h4 {
  margin: 0;
  font-size: 1.1rem;
}

.checkout label {
  display: grid;
  gap: 6px;
  font-weight: 600;
  color: var(--ink);
}

.checkout input,
.checkout textarea,
.detail-variants select {
  border: 1px solid rgba(15, 118, 110, 0.2);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 0.95rem;
  font-family: inherit;
  background: rgba(255, 255, 255, 0.92);
}

.checkout-send {
  border: none;
  background: #25d366;
  color: #0b2b1a;
  font-weight: 700;
  padding: 12px 16px;
  border-radius: 12px;
  cursor: pointer;
}

.payment-section {
  display: grid;
  gap: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(15, 118, 110, 0.16);
}

.order-summary {
  display: grid;
  gap: 8px;
  background: rgba(15, 118, 110, 0.08);
  padding: 12px;
  border-radius: 14px;
}

.order-summary p {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.order-item {
  display: grid;
  gap: 4px;
  padding-bottom: 8px;
  border-bottom: 1px dashed #decfba;
}

.order-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.order-item span {
  color: var(--muted);
  font-size: 0.92rem;
}

.qr-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
}

.qr-card {
  background: #fff3e6;
  border-radius: 14px;
  padding: 10px;
  display: grid;
  gap: 8px;
  text-align: center;
  font-weight: 700;
  color: #3b2f27;
}

.qr-placeholder {
  border: 2px dashed #d1b79f;
  border-radius: 12px;
  height: 110px;
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  color: #7a6a5f;
  background: #fffaf4;
}

.payment-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.cart-total {
  font-weight: 700;
  color: var(--leaf);
}

.cart-checkout {
  border: none;
  background: var(--accent);
  color: #fffaf4;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
}

.cart-checkout:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #25d366;
  color: #0b2b1a;
  font-weight: 700;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(7, 40, 22, 0.25);
  z-index: 9;
  animation: whatsappPulse 2.8s ease-in-out infinite;
  isolation: isolate;
}

.whatsapp-float::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: inherit;
  border: 2px solid rgba(37, 211, 102, 0.45);
  opacity: 0;
  animation: whatsappRing 2.8s ease-out infinite;
  pointer-events: none;
}

.whatsapp-float:hover {
  background: #1ebe5d;
}

[data-parallax] {
  will-change: transform;
}

@keyframes whatsappPulse {

  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 14px 28px rgba(7, 40, 22, 0.25);
  }

  50% {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(7, 40, 22, 0.3);
  }
}

@keyframes whatsappRing {
  0% {
    opacity: 0.35;
    transform: scale(0.95);
  }

  60% {
    opacity: 0;
    transform: scale(1.2);
  }

  100% {
    opacity: 0;
    transform: scale(1.2);
  }
}

.site-footer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  padding: 40px 6vw 60px;
  background: #0b3d37;
  color: #f8fafc;
}

.site-footer h4 {
  margin: 0 0 8px;
}

.site-footer a {
  color: #d2f5f0;
  text-decoration: none;
  display: block;
  margin-bottom: 6px;
}

.site-footer p {
  margin: 0 0 8px;
  color: #cfe6e2;
}

@keyframes rise {
  from {
    transform: translateY(14px);
    opacity: 0;
  }

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

@keyframes fadeIn {
  from {
    transform: translateY(18px);
    opacity: 0;
  }

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

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes news-marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 900px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .menu {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 18px;
    border: 1px solid rgba(15, 118, 110, 0.12);
  }

  .menu.open {
    display: flex;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .cart {
    align-self: flex-end;
  }

  .hero-slide {
    min-height: 280px;
    aspect-ratio: 4 / 3;
  }

  .hero-slide-content {
    max-width: 100%;
  }

  .product-swiper-controls {
    flex-wrap: wrap;
  }

  .featured-spotlight {
    grid-template-columns: 1fr;
  }

  .featured-spotlight-media img {
    transform: translateY(0);
  }

  .cart-panel-content {
    width: min(360px, 94vw);
    padding: 20px;
  }
}

@media (max-width: 700px) {
  .hero {
    padding: 24px 6vw 48px;
  }

  .topbar {
    padding: 8px 12px;
  }

  .hero-message {
    padding: 16px 18px;
    text-align: center;
    border-radius: 22px;
  }

  .brand img {
    height: clamp(72px, 18vw, 120px);
  }

  .catalog-notice {
    padding: 20px;
    text-align: center;
  }

  .featured-spotlight {
    text-align: center;
  }

  .featured-spotlight .btn-primary {
    justify-self: center;
  }

  .search-wrap {
    flex-direction: column;
    border-radius: 22px;
    align-items: stretch;
  }

  .search-wrap button {
    width: 100%;
  }

  .section-title {
    flex-direction: column;
    align-items: flex-start;
  }

  .detail-card {
    grid-template-columns: 1fr;
  }

  .hero-carousel {
    padding: 12px;
  }

  .hero-controls {
    flex-wrap: wrap;
  }

  .hero-slide-content {
    padding: 22px;
  }

  .hero-message-highlights {
    justify-content: center;
  }

  .hero-cta {
    justify-content: center;
    width: 100%;
  }

  .hero-cta .btn-primary,
  .hero-cta .btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .menu {
    width: 100%;
  }

  .filters {
    align-items: stretch;
  }

  .filter-controls {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .topbar {
    gap: 12px;
  }

  .menu a,
  .menu summary {
    font-size: 0.85rem;
  }

  .menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 0;
  }

  .menu-dropdown {
    width: 100%;
  }

  .menu-dropdown .dropdown {
    position: static;
    min-width: 0;
    width: 100%;
    box-shadow: none;
    border: none;
    border-radius: 12px;
    background: transparent;
    padding: 8px 0 0;
  }

  .menu-dropdown .dropdown a {
    padding-left: 4px;
  }

  .hero {
    padding: 20px 6vw 40px;
  }

  .hero-slide {
    min-height: 220px;
    aspect-ratio: 1 / 1;
  }

  .hero-slide-content {
    padding: 18px;
  }

  .hero-controls {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-message h1 {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
  }

  .hero-message-body {
    font-size: 1rem;
  }

  .hero-message-highlights span {
    font-size: 0.82rem;
  }

  .product-swiper-controls {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-swiper .swiper-button-prev,
  .product-swiper .swiper-button-next {
    width: 100%;
    justify-content: center;
  }

  .grid,
  .campaigns,
  .offers-grid,
  .contact-grid,
  .social-grid {
    grid-template-columns: 1fr;
  }

  .price-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .price-row button {
    width: 100%;
  }

  .cart-panel-content {
    width: 100%;
  }

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

  .contact-map iframe {
    height: 200px;
  }

  .search-suggest {
    max-height: 260px;
  }

  .search-suggest-item {
    grid-template-columns: 40px 1fr;
  }

  .search-suggest-cta {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
    scroll-behavior: auto !important;
  }
}

/* Footer Styles */
.site-footer {
  background: linear-gradient(to bottom, #111827, #0F172A);
  color: #F8FAFC;
  padding: 64px 6vw 48px;
  display: grid;
  gap: 48px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.1);
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.site-footer h4 {
  font-family: "Fraunces", serif;
  font-size: 1.25rem;
  margin-bottom: 24px;
  color: var(--accent-3);
  letter-spacing: 0.02em;
}

.site-footer p {
  color: #94A3B8;
  line-height: 1.7;
  font-size: 0.95rem;
}

.site-footer a {
  color: #CBD5E1;
  text-decoration: none;
  font-weight: 500;
  display: block;
  margin-bottom: 14px;
  transition: color var(--t-fast);
  width: fit-content;
}

.site-footer a:hover {
  color: var(--accent-light);
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .site-footer {
    border-radius: 24px 24px 0 0;
    padding: 48px 24px;
    gap: 32px;
  }
}
