:root {
  --navy: #0a2148;
  --navy-deep: #061530;
  --navy-soft: #132a55;
  --pink: #e8918a;
  --pink-deep: #d97870;
  --pink-soft: #f3c4bf;
  --ink: #1a1a1a;
  --muted: #6b7280;
  --line: #e8e8e8;
  --bg: #ffffff;
  --bg-soft: #f5f6f8;
  --bg-trust: #f0f1f4;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(10, 33, 72, 0.08);
  --radius: 10px;
  --container: 1180px;
  --font: "Montserrat", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

section[id],
.product-card[id] {
  scroll-margin-top: 100px;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button,
input {
  font: inherit;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy);
  color: #fff;
  padding: 0.75rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  min-height: 84px;
}

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

.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.brand-text strong {
  display: block;
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  color: var(--navy);
  line-height: 1.1;
}

.brand-text span {
  display: block;
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  color: var(--navy);
  font-weight: 500;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 1.75rem;
}

.nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--navy);
  position: relative;
  padding: 0.35rem 0;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--navy);
  transition: width 0.25s ease;
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.icon-btn {
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  color: var(--navy);
  display: grid;
  place-items: center;
  cursor: pointer;
  position: relative;
  border-radius: 50%;
  transition: background 0.2s ease;
}

.icon-btn:hover {
  background: var(--bg-soft);
}

.icon-btn svg {
  width: 20px;
  height: 20px;
}

.badge {
  position: absolute;
  top: 4px;
  right: 2px;
  min-width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--pink);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  padding: 0 4px;
}

.menu-toggle {
  display: none;
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: clamp(420px, 72vh, 640px);
  background:
    linear-gradient(90deg, #fff 0%, #fff 48%, transparent 48%),
    linear-gradient(135deg, #eef1f6 0%, #f7f8fa 45%, #ebeff5 100%);
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 30%, rgba(232, 145, 138, 0.18), transparent 35%),
    radial-gradient(circle at 88% 78%, rgba(10, 33, 72, 0.08), transparent 40%);
  pointer-events: none;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1.5rem, 6vw, 5rem);
  position: relative;
  z-index: 1;
}

.eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin: 0 0 0.85rem;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.08;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.hero p {
  max-width: 34ch;
  color: var(--muted);
  margin: 1.1rem 0 1.75rem;
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 48px;
  padding: 0.8rem 1.45rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.92rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--navy);
  color: #fff;
}

.btn-primary:hover {
  background: var(--navy-soft);
}

.btn-outline {
  background: #fff;
  border-color: #cfd3da;
  color: var(--navy);
}

.btn-outline:hover {
  border-color: var(--navy);
}

.btn-pink {
  background: var(--pink);
  color: #fff;
  border-color: var(--pink);
}

.btn-pink:hover {
  background: var(--pink-deep);
}

.hero-visual {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  padding: 2rem;
}

.hero-frame {
  width: min(100%, 460px);
  aspect-ratio: 1 / 1.05;
  border-radius: 24px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.55)),
    url("../images/hero/hero-bg.svg") center/cover no-repeat;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  animation: floatIn 1s ease both;
}

.hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-float {
  position: absolute;
  inset: auto 8% 8% auto;
  width: 42%;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(10, 33, 72, 0.2);
  animation: rise 1.1s 0.15s ease both;
}

@keyframes floatIn {
  from { opacity: 0; transform: translateY(18px) scale(0.98); }
  to { opacity: 1; transform: none; }
}

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

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

/* Categories */
.categories {
  padding: 2.5rem 0 1rem;
}

.category-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.category-card {
  text-align: center;
  padding: 0.5rem;
  transition: transform 0.25s ease;
}

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

.category-media {
  aspect-ratio: 1;
  background: var(--bg-soft);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 0.85rem;
  display: grid;
  place-items: center;
  border: 1px solid #eceff3;
}

.category-media img {
  width: 78%;
  height: 78%;
  object-fit: contain;
  transition: transform 0.35s ease;
}

.category-card:hover .category-media img {
  transform: scale(1.06);
}

.category-card h3 {
  margin: 0;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--navy);
}

.shop-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.35rem;
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
}

.shop-link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}

.category-card:hover .shop-link {
  color: var(--pink-deep);
}

.category-card:hover .shop-link svg {
  transform: translateX(3px);
}

/* Collection */
.collection {
  padding: 3rem 0 3.5rem;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin: 0 0 2rem;
}

.section-title h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--navy);
  white-space: nowrap;
}

.section-title::before,
.section-title::after {
  content: "";
  height: 1px;
  flex: 1;
  max-width: 180px;
  background: linear-gradient(90deg, transparent, var(--navy));
}

.section-title::after {
  background: linear-gradient(90deg, var(--pink), transparent);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

.product-card {
  background: #fff;
  border: 1px solid #eceff3;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: fadeUp 0.7s ease both;
}

.product-card:nth-child(1) { animation-delay: 0.05s; }
.product-card:nth-child(2) { animation-delay: 0.1s; }
.product-card:nth-child(3) { animation-delay: 0.15s; }
.product-card:nth-child(4) { animation-delay: 0.2s; }
.product-card:nth-child(5) { animation-delay: 0.25s; }
.product-card:nth-child(6) { animation-delay: 0.3s; }
.product-card:nth-child(7) { animation-delay: 0.35s; }
.product-card:nth-child(8) { animation-delay: 0.4s; }
.product-card:nth-child(9) { animation-delay: 0.45s; }
.product-card:nth-child(10) { animation-delay: 0.5s; }

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.product-media {
  aspect-ratio: 1;
  background: linear-gradient(180deg, #f8f9fb, #eef1f5);
  display: grid;
  place-items: center;
  padding: 1.25rem;
  position: relative;
}

.product-media img {
  width: 78%;
  height: 78%;
  object-fit: contain;
  transition: transform 0.35s ease;
}

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

.product-num {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.product-body {
  padding: 0.95rem 1rem 1.15rem;
  text-align: center;
}

.product-body h3 {
  margin: 0 0 0.65rem;
  font-size: 0.86rem;
  letter-spacing: 0.05em;
  color: var(--navy);
}

.product-body .btn {
  min-height: 38px;
  padding: 0.45rem 0.9rem;
  font-size: 0.78rem;
  width: 100%;
}

/* Trust */
.trust {
  background: var(--bg-trust);
  padding: 1.75rem 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.trust-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(10, 33, 72, 0.06);
}

.trust-icon svg {
  width: 22px;
  height: 22px;
}

.trust-item strong {
  display: block;
  font-size: 0.88rem;
  color: var(--navy);
  line-height: 1.25;
}

.trust-item span {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
}

/* About strip */
.about-strip {
  padding: 3.5rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.about-copy h2 {
  margin: 0 0 0.85rem;
  color: var(--navy);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
}

.about-copy p {
  color: var(--muted);
  margin: 0 0 1rem;
}

.contact-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.contact-list a,
.contact-list div {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: var(--navy);
  font-weight: 500;
  font-size: 0.95rem;
}

.contact-list svg {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  color: var(--pink-deep);
  flex-shrink: 0;
}

.about-panel {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: #fff;
  border-radius: 18px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.about-panel::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 24px;
  background: rgba(232, 145, 138, 0.25);
  top: -40px;
  right: -30px;
}

.about-panel::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  bottom: 40px;
  right: 40px;
}

.about-panel img {
  width: 120px;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 16px;
  padding: 0.4rem;
}

.about-panel h3 {
  margin: 0 0 0.35rem;
  position: relative;
  z-index: 1;
  letter-spacing: 0.12em;
}

.about-panel p {
  margin: 0;
  opacity: 0.85;
  position: relative;
  z-index: 1;
  font-size: 0.92rem;
}

/* Footer */
.site-footer {
  background: var(--navy-deep);
  color: #d7deed;
  padding-top: 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 0.9fr 1.15fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
}

.footer-brand img {
  width: 72px;
  margin-bottom: 0.85rem;
  background: #fff;
  border-radius: 12px;
  padding: 0.35rem;
}

.footer-brand strong {
  display: block;
  color: #fff;
  letter-spacing: 0.12em;
  margin-bottom: 0.75rem;
}

.footer-brand p,
.footer-col p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-col h4 {
  margin: 0 0 1rem;
  color: #fff;
  font-size: 1rem;
}

.footer-col a {
  display: block;
  margin-bottom: 0.55rem;
  font-size: 0.9rem;
  color: #c8d0e2;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--pink-soft);
}

.newsletter {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.newsletter input {
  flex: 1;
  min-width: 0;
  border: 0;
  border-radius: 4px;
  padding: 0.75rem 0.9rem;
  outline: none;
}

.newsletter .btn {
  min-height: 44px;
  padding-inline: 1rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
}

.socials {
  display: flex;
  gap: 0.55rem;
}

.socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  place-items: center;
  color: #fff;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.socials a:hover {
  background: var(--pink);
  border-color: var(--pink);
}

.socials svg {
  width: 16px;
  height: 16px;
}

/* WhatsApp float */
.wa-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 200;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
  transition: transform 0.2s ease;
}

.wa-float:hover {
  transform: scale(1.06);
}

.wa-float svg {
  width: 28px;
  height: 28px;
}

/* Search overlay */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 21, 48, 0.55);
  z-index: 300;
  display: none;
  place-items: start center;
  padding-top: 12vh;
}

.search-overlay.open {
  display: grid;
}

.search-box {
  width: min(92vw, 560px);
  background: #fff;
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  gap: 0.5rem;
  box-shadow: var(--shadow);
}

.search-box input {
  flex: 1;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  outline: none;
}

.search-box input:focus {
  border-color: var(--navy);
}

/* Page hero (inner) */
.page-hero {
  background: linear-gradient(120deg, var(--navy), var(--navy-soft));
  color: #fff;
  padding: 3rem 0;
  text-align: center;
}

.page-hero h1 {
  margin: 0 0 0.4rem;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.page-hero p {
  margin: 0;
  opacity: 0.85;
}

.page-section {
  padding: 3rem 0;
}

/* Mobile nav */
@media (max-width: 1024px) {
  .category-row {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .header-inner {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: grid;
    order: 2;
    justify-self: end;
  }

  .header-actions {
    display: none;
  }

  .nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #fff;
    flex-direction: column;
    padding: 1rem 1.25rem 1.25rem;
    border-bottom: 1px solid var(--line);
    gap: 0.35rem;
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 0.7rem 0;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    background: linear-gradient(180deg, #fff 0%, #f3f5f8 100%);
  }

  .hero-visual {
    padding: 0 1.25rem 2rem;
  }

  .hero-frame {
    width: min(100%, 360px);
  }

  .about-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .category-row,
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .newsletter {
    flex-direction: column;
  }

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

  .shop-toolbar {
    flex-direction: column;
    align-items: stretch;
  }
}

/* Extras */
.price {
  margin: 0 0 0.75rem;
  color: var(--pink-deep);
  font-weight: 700;
  font-size: 0.95rem;
}

.meta-cat {
  margin: 0 0 0.25rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.center-cta {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.product-media {
  display: grid;
  place-items: center;
}

.product-body h3 a:hover {
  color: var(--pink-deep);
}

.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.chip {
  border: 1px solid #d7dbe3;
  background: #fff;
  color: var(--navy);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.chip:hover,
.chip.active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.shop-search {
  min-width: min(100%, 240px);
  border: 1px solid #d7dbe3;
  border-radius: 8px;
  padding: 0.7rem 0.9rem;
  outline: none;
}

.shop-search:focus {
  border-color: var(--navy);
}

.product-detail {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 2rem;
  align-items: start;
}

.product-gallery {
  background: linear-gradient(180deg, #f8f9fb, #eef1f5);
  border: 1px solid #eceff3;
  border-radius: 16px;
  padding: 1.5rem;
  display: grid;
  place-items: center;
}

.product-gallery img {
  width: min(100%, 420px);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 12px;
  background: #fff;
}

.product-info .eyebrow {
  margin-bottom: 0.4rem;
}

.product-info h1 {
  margin: 0 0 0.5rem;
  color: var(--navy);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.product-info .lead {
  color: var(--muted);
  margin: 0 0 1rem;
}

.product-info .price-lg {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--pink-deep);
  margin: 0 0 1.25rem;
}

.feature-list {
  margin: 0 0 1.5rem;
  padding-left: 1.1rem;
  color: var(--navy);
}

.feature-list li {
  margin-bottom: 0.4rem;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.narrow {
  width: min(100% - 2rem, 760px);
  margin-inline: auto;
}

.content-page h2 {
  color: var(--navy);
  margin: 1.75rem 0 0.65rem;
  font-size: 1.2rem;
}

.content-page p,
.content-page li {
  color: var(--muted);
  line-height: 1.7;
}

.content-list {
  list-style: disc;
  padding-left: 1.2rem;
  margin: 0.5rem 0 1rem;
}

.content-list.numbered {
  list-style: decimal;
}

.content-list li {
  margin-bottom: 0.45rem;
}

.faq-list details {
  border: 1px solid #eceff3;
  border-radius: 10px;
  padding: 0.9rem 1rem;
  margin-bottom: 0.75rem;
  background: #fff;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
}

.faq-list details p {
  margin: 0.75rem 0 0.2rem;
  color: var(--muted);
}

.contact-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.info-card {
  border: 1px solid #eceff3;
  border-radius: 12px;
  padding: 1.5rem;
  background: #fff;
}

.info-card h3 {
  margin: 0 0 0.5rem;
  color: var(--navy);
  font-size: 1rem;
}

.info-card p,
.info-card a {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.info-card a:hover {
  color: var(--pink-deep);
}

.contact-form {
  display: grid;
  gap: 0.9rem;
  max-width: 640px;
  margin: 0 auto;
  border: 1px solid #eceff3;
  border-radius: 14px;
  padding: 1.5rem;
  background: #fff;
}

.contact-form h2 {
  margin: 0;
  color: var(--navy);
  text-align: center;
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
}

.contact-form input,
.contact-form textarea {
  border: 1px solid #d9dee7;
  border-radius: 8px;
  padding: 0.8rem 0.95rem;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--navy);
}

.map-note {
  text-align: center;
  margin-top: 1.5rem;
  color: var(--muted);
}

.loading-note {
  text-align: center;
  color: var(--muted);
  padding: 2rem 0;
}

.product-card.is-hidden {
  display: none;
}

.featured-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  background: var(--pink);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
}

.center-cta {
  gap: 0.75rem;
  flex-wrap: wrap;
}

.variety {
  padding: 3.25rem 0;
  background:
    linear-gradient(135deg, rgba(10, 33, 72, 0.04), rgba(232, 145, 138, 0.1)),
    var(--bg-soft);
}

.variety-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.variety-copy h2 {
  margin: 0 0 0.85rem;
  color: var(--navy);
  font-size: clamp(1.55rem, 3vw, 2.2rem);
}

.variety-copy > p {
  color: var(--muted);
  margin: 0 0 1rem;
  max-width: 48ch;
}

.variety-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  gap: 0.65rem;
}

.variety-list li {
  background: #fff;
  border: 1px solid #e6e9ef;
  border-radius: 10px;
  padding: 0.85rem 1rem;
  color: var(--navy);
  font-size: 0.95rem;
}

.variety-list strong {
  color: var(--navy);
}

.variety-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

.variety-card {
  display: grid;
  grid-template-columns: 88px 1fr;
  align-items: center;
  gap: 0.9rem;
  background: #fff;
  border: 1px solid #e6e9ef;
  border-radius: 14px;
  padding: 0.75rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.variety-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.variety-card img {
  width: 88px;
  height: 88px;
  object-fit: cover;
  border-radius: 10px;
  background: var(--bg-soft);
}

.variety-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1rem;
}

@media (max-width: 860px) {
  .variety-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 800px) {
  .contact-card-grid {
    grid-template-columns: 1fr;
  }
}
