:root {
  --rose-50: #fff5f8;
  --rose-100: #f7dce5;
  --rose-300: #e8a9bc;
  --rose-500: #c86f8d;
  --beige: #f4eadc;
  --cream: #fffaf4;
  --gold: #c8a85a;
  --gold-soft: #efe2bd;
  --ink: #151313;
  --muted: #6e625f;
  --white: #ffffff;
  --shadow: 0 18px 44px rgba(34, 22, 18, 0.12);
  --shadow-soft: 0 12px 30px rgba(34, 22, 18, 0.08);
  --radius: 8px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 14px;
  left: 14px;
  padding: 10px 14px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--ink);
  font-weight: 900;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 32px, var(--max-width));
  margin-inline: auto;
}

.section {
  scroll-margin-top: 110px;
  padding: 96px 0;
}

.section-band {
  position: relative;
  overflow: clip;
  background:
    linear-gradient(135deg, rgba(255, 245, 248, 0.95), rgba(244, 234, 220, 0.84)),
    var(--cream);
}

.section-heading {
  width: min(720px, 100%);
  margin-bottom: 40px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--rose-500);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  line-height: 0.98;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(3.3rem, 8vw, 7.2rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 5vw, 4.8rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  line-height: 1.25;
}

.section-heading p,
.hero-copy,
.promo-copy p,
.about-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease, color 220ms ease;
}

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

.btn-primary {
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 14px 28px rgba(21, 19, 19, 0.2);
}

.btn-primary:hover {
  background: #2b2424;
}

.btn-soft {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.84);
  border-color: rgba(200, 168, 90, 0.42);
  box-shadow: var(--shadow-soft);
}

.btn-dark {
  width: 100%;
  color: var(--white);
  background: var(--ink);
}

/* Header */
.site-header {
  position: fixed;
  z-index: 30;
  top: 16px;
  left: 50%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  width: min(calc(100% - 32px), 1180px);
  min-height: 70px;
  padding: 10px 12px 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  background: rgba(255, 250, 244, 0.78);
  box-shadow: 0 10px 30px rgba(31, 21, 16, 0.08);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  transition: background 220ms ease, box-shadow 220ms ease, top 220ms ease;
}

.site-header.is-scrolled {
  top: 10px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 38px rgba(31, 21, 16, 0.13);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.brand img,
.footer-brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.brand span,
.footer-brand span {
  white-space: nowrap;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(10px, 1.4vw, 20px);
  color: rgba(21, 19, 19, 0.76);
  font-size: 0.9rem;
  font-weight: 800;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 220ms ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.whatsapp-link,
.floating-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--white);
  background: #1f8f55;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(31, 143, 85, 0.22);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.whatsapp-link:hover,
.floating-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(31, 143, 85, 0.28);
}

.wa-mark {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.wa-mark svg,
.social-mark svg {
  display: block;
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 12px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 8px 13px;
  border: 1px solid rgba(200, 168, 90, 0.28);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 18px rgba(21, 19, 19, 0.08);
  font-size: 0.88rem;
  font-weight: 900;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

.social-link:hover,
.social-link:focus-visible {
  border-color: rgba(200, 168, 90, 0.48);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.social-mark {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  background: rgba(21, 19, 19, 0.08);
}

.social-link-facebook .social-mark {
  color: #1877f2;
  background: rgba(24, 119, 242, 0.12);
}

.social-link-instagram .social-mark {
  color: #c13584;
  background: rgba(193, 53, 132, 0.12);
}

.social-link-whatsapp .social-mark {
  color: #1f8f55;
  background: rgba(31, 143, 85, 0.13);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  border-radius: 2px;
  background: var(--white);
  transition: transform 220ms ease;
}

.menu-open .menu-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-open .menu-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

/* Hero */
.hero {
  min-height: 88vh;
  padding: 148px 0 70px;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(255, 250, 244, 0.96) 0%, rgba(255, 250, 244, 0.82) 42%, rgba(255, 245, 248, 0.32) 100%),
    url("assets/img/optimized/hero-bg.webp") center right / cover;
  content: "";
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: -2;
  height: 36%;
  background: linear-gradient(0deg, var(--cream), rgba(255, 250, 244, 0));
  content: "";
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 26px;
}

.hero-copy {
  max-width: 640px;
  margin-bottom: 28px;
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

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

.hero-highlights span {
  padding: 9px 14px;
  border: 1px solid rgba(200, 168, 90, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  color: #4a3e3a;
  font-size: 0.9rem;
  font-weight: 800;
  box-shadow: var(--shadow-soft);
}

.hero-media {
  position: absolute;
  right: max(24px, calc((100vw - var(--max-width)) / 2));
  bottom: 34px;
  z-index: 1;
  width: min(42vw, 520px);
  min-width: 330px;
  height: 560px;
  pointer-events: none;
  transform: translateY(-80px);
}

.hero-photo {
  position: absolute;
  border: 10px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.hero-photo-main {
  right: 34px;
  bottom: 42px;
  width: 72%;
  height: 340px;
}

.hero-photo-side {
  right: 0;
  bottom: 240px;
  width: 48%;
  height: 200px;
}

.hero-logo-mark {
  position: absolute;
  right: 48%;
  bottom: 18px;
  width: min(48%, 250px);
  filter: drop-shadow(0 18px 26px rgba(95, 27, 119, 0.18));
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.particle,
.decor-dot {
  position: absolute;
  display: block;
  border-radius: 50%;
  pointer-events: none;
}

.particle {
  width: 10px;
  height: 10px;
  background: rgba(200, 168, 90, 0.52);
}

.decor-dot {
  width: 12px;
  height: 12px;
  background: rgba(232, 169, 188, 0.58);
}

body.is-ready .particle,
body.is-ready .decor-dot {
  animation: float-particle 3200ms ease-in-out infinite alternate;
}

@keyframes float-particle {
  to {
    transform: translate(var(--float-x, 10px), var(--float-y, -12px)) scale(1.12);
  }
}

/* Categories */
.category-grid,
.product-grid,
.benefit-grid {
  display: grid;
  gap: 18px;
}

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

.category-card {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.category-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(21, 19, 19, 0) 30%, rgba(21, 19, 19, 0.72) 100%);
  content: "";
}

.category-card img {
  width: 100%;
  height: 100%;
  min-height: 410px;
  object-fit: cover;
  transition: transform 450ms ease;
}

.category-card div {
  position: absolute;
  z-index: 1;
  right: 18px;
  bottom: 18px;
  left: 18px;
  color: var(--white);
}

.category-card span {
  color: var(--gold-soft);
  font-size: 0.8rem;
  font-weight: 900;
}

.category-card h3 {
  margin: 6px 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
}

.category-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}

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

/* Products */
.products {
  background:
    radial-gradient(circle at 10% 15%, rgba(232, 169, 188, 0.24), transparent 28%),
    linear-gradient(135deg, var(--cream), var(--rose-50));
}

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

.product-card {
  overflow: hidden;
  border: 1px solid rgba(200, 168, 90, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

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

.product-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--beige);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}

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

.product-image span {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  font-size: 0.76rem;
  font-weight: 900;
}

.product-info {
  padding: 18px;
}

.product-info p {
  margin-bottom: 6px;
  color: var(--rose-500);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-info .product-description {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.55;
  text-transform: none;
}

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

.product-footer strong {
  color: var(--gold);
}

.product-footer a {
  color: var(--ink);
  font-weight: 900;
}

/* Catalog */
.catalog {
  background: var(--white);
}

.catalog-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 300px);
  align-items: start;
  gap: 28px;
}

.catalog-count {
  padding: 22px;
  border: 1px solid rgba(21, 19, 19, 0.12);
  border-left: 5px solid var(--gold);
  border-radius: var(--radius);
  color: var(--white);
  background: var(--ink);
  box-shadow: var(--shadow-soft);
}

.catalog-count strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3rem, 7vw, 5rem);
  line-height: 0.9;
}

.catalog-count span {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.catalog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 4px 0 28px;
}

.catalog-filter {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(200, 168, 90, 0.36);
  border-radius: 999px;
  color: var(--ink);
  background: var(--cream);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 900;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.catalog-filter:hover,
.catalog-filter:focus-visible {
  border-color: var(--ink);
  transform: translateY(-1px);
}

.catalog-filter[aria-pressed="true"] {
  border-color: var(--ink);
  color: var(--white);
  background: var(--ink);
}

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

.catalog-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid rgba(21, 19, 19, 0.1);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.catalog-preview {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  padding: 0;
  border: 0;
  color: inherit;
  background: #f4f2ef;
  cursor: zoom-in;
}

.catalog-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 360ms ease;
}

.catalog-preview:hover img,
.catalog-preview:focus-visible img {
  transform: scale(1.05);
}

.catalog-preview span {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  font-size: 0.72rem;
  font-weight: 900;
}

.catalog-card-body {
  display: grid;
  gap: 8px;
  padding: 14px;
}

.catalog-card-body p {
  margin: 0;
  color: var(--rose-500);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalog-card-body h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.25;
}

.catalog-card-body a {
  width: fit-content;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 900;
}

.catalog-card-body a:hover,
.catalog-card-body a:focus-visible {
  color: var(--rose-500);
}

.catalog-actions {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

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

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

.catalog-lightbox {
  position: fixed;
  z-index: 120;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
}

.catalog-lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(21, 19, 19, 0.72);
  cursor: zoom-out;
}

.catalog-lightbox-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  width: min(96vw, 920px);
  max-height: 88vh;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 28px 80px rgba(21, 19, 19, 0.36);
}

.catalog-lightbox-panel img {
  width: 100%;
  height: min(78vh, 680px);
  object-fit: contain;
  background: #f4f2ef;
}

.catalog-lightbox-info {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 30px;
}

.catalog-lightbox-info p {
  margin: 0;
  color: var(--rose-500);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.catalog-lightbox-info h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.1rem);
  line-height: 1;
}

.catalog-lightbox-close {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(21, 19, 19, 0.12);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1;
}

body.catalog-modal-open {
  overflow: hidden;
}

/* Promotions */
.promo-layout,
.about-layout,
.contact-layout,
.faq-layout {
  display: grid;
  align-items: start;
  gap: 48px;
}

.promo-layout {
  grid-template-columns: 0.92fr 1fr;
  align-items: center;
}

.promo-copy {
  max-width: 540px;
}

.promo-stack {
  display: grid;
  gap: 16px;
}

.promo-stack article,
.benefit-card,
.faq-item {
  padding: 26px;
  border: 1px solid rgba(200, 168, 90, 0.2);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.promo-stack span,
.benefit-card span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.promo-stack p,
.benefit-card p,
.faq-item p {
  margin-bottom: 0;
  color: var(--muted);
}

/* About */
.about-layout {
  grid-template-columns: 0.8fr 1fr;
  align-items: center;
  gap: 58px;
}

.about-visual {
  display: grid;
  min-height: 460px;
  place-items: center;
  border: 1px solid rgba(200, 168, 90, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(247, 220, 229, 0.62)),
    var(--white);
  box-shadow: var(--shadow-soft);
}

.about-visual img {
  width: min(78%, 390px);
  filter: drop-shadow(0 24px 34px rgba(95, 27, 119, 0.18));
}

/* Team */
.team {
  background: #f6f7f8;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: clamp(34px, 7vw, 124px);
  padding-top: 22px;
}

.team-card {
  display: grid;
  justify-items: center;
  text-align: center;
  transition: transform 260ms ease;
}

.team-card:hover {
  transform: translateY(-6px);
}

.team-photo {
  position: relative;
  width: min(100%, 280px);
  aspect-ratio: 1;
  overflow: hidden;
  padding: 8px;
  border: 12px solid #dedfe1;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 12px 26px rgba(21, 19, 19, 0.08);
}

.team-photo img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 16%;
  transition: transform 450ms ease;
}

.team-card:hover .team-photo img {
  transform: scale(1.04);
}

.team-info {
  width: min(100%, 310px);
  padding-top: 22px;
}

.team-info span {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.team-info h3 {
  margin: 10px 0 8px;
  font-size: 1.24rem;
}

.team-info p {
  margin-bottom: 0;
  color: var(--muted);
}

/* Benefits */
.benefit-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.benefit-card {
  min-height: 240px;
}

.benefit-card h3 {
  margin-top: 28px;
}

/* FAQ */
.faq-layout {
  grid-template-columns: 0.8fr 1.2fr;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item h3 {
  margin-bottom: 8px;
  font-size: 1rem;
}

/* Contact */
.contact {
  background: var(--cream);
}

.contact-layout {
  grid-template-columns: 0.9fr 1fr;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(200, 168, 90, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #514744;
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(21, 19, 19, 0.12);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  outline: 0;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.contact-form input,
.contact-form select {
  height: 48px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 118px;
  resize: vertical;
  padding: 14px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(200, 168, 90, 0.14);
}

.floating-whatsapp {
  position: fixed;
  z-index: 25;
  right: 18px;
  bottom: 18px;
  min-height: 50px;
  padding-inline: 20px;
}

/* Footer */
.site-footer {
  padding: 46px 0 28px;
  background: #171313;
  color: var(--white);
}

.footer-layout {
  display: grid;
  grid-template-columns: auto minmax(170px, 0.75fr) minmax(240px, 1fr) auto auto;
  align-items: center;
  gap: 28px;
}

.footer-brand img {
  width: 56px;
  height: 56px;
}

.footer-layout p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-address {
  color: rgba(255, 255, 255, 0.7);
  font-style: normal;
  line-height: 1.45;
}

.footer-contact a {
  color: var(--white);
  font-weight: 900;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
}

.copyright {
  width: min(100% - 32px, var(--max-width));
  margin: 30px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
  text-align: center;
}

.reveal {
  will-change: transform, opacity;
}

body.is-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 520ms ease, transform 520ms ease;
}

body.is-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .site-nav {
    position: fixed;
    top: 90px;
    right: 16px;
    left: 16px;
    display: grid;
    gap: 6px;
    padding: 18px;
    border: 1px solid rgba(200, 168, 90, 0.16);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 220ms ease, transform 220ms ease;
  }

  .menu-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 12px 10px;
  }

  .menu-toggle {
    display: block;
  }

  .header-whatsapp {
    justify-self: end;
  }

  .hero {
    min-height: auto;
    padding-bottom: 410px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(255, 250, 244, 0.98) 0%, rgba(255, 250, 244, 0.76) 58%, rgba(255, 245, 248, 0.52) 100%),
      url("assets/img/optimized/hero-bg.webp") center / cover;
  }

  .hero-media {
    right: 50%;
    bottom: 22px;
    width: min(86vw, 500px);
    min-width: 0;
    height: 370px;
    transform: translateX(50%);
  }

  .hero-photo-main {
    right: 12%;
    bottom: 26px;
    height: 250px;
  }

  .hero-photo-side {
    right: 0;
    bottom: 222px;
    height: 138px;
  }

  .hero-logo-mark {
    right: 52%;
    width: min(38%, 180px);
  }

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

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

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

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

  .team-photo {
    width: min(100%, 230px);
    border-width: 10px;
  }

  .promo-layout,
  .about-layout,
  .contact-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .about-visual {
    min-height: 340px;
  }

  .footer-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand,
  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 24px, var(--max-width));
  }

  .section {
    scroll-margin-top: 92px;
    padding: 68px 0;
  }

  .site-header {
    top: 10px;
    width: min(calc(100% - 20px), 1180px);
    min-height: 62px;
    gap: 8px;
    padding: 8px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand span {
    max-width: 118px;
    overflow: hidden;
    font-size: 0.88rem;
    text-overflow: ellipsis;
  }

  .header-whatsapp {
    min-height: 42px;
    padding: 0 12px;
    font-size: 0.82rem;
  }

  .wa-mark {
    display: none;
  }

  .hero {
    padding: 118px 0 360px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.9rem);
  }

  h2 {
    font-size: clamp(2.15rem, 12vw, 3.25rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

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

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

  .hero-media {
    height: 320px;
  }

  .hero-photo {
    border-width: 7px;
  }

  .hero-photo-main {
    width: 78%;
    height: 220px;
  }

  .hero-photo-side {
    width: 46%;
    height: 118px;
    bottom: 202px;
  }

  .category-grid,
  .team-grid,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

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

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

  .catalog-header {
    grid-template-columns: 1fr;
  }

  .catalog-filters {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 8px;
  }

  .catalog-filter {
    flex: 0 0 auto;
  }

  .catalog-lightbox {
    padding: 12px;
  }

  .catalog-lightbox-panel {
    grid-template-columns: 1fr;
    max-height: 92vh;
    overflow: auto;
  }

  .catalog-lightbox-panel img {
    height: min(60vh, 520px);
  }

  .catalog-lightbox-info {
    padding: 22px;
  }

  .team-grid {
    gap: 42px;
  }

  .team-photo {
    width: min(78vw, 280px);
  }

  .category-card,
  .category-card img {
    min-height: 330px;
  }

  .promo-stack article,
  .benefit-card,
  .faq-item,
  .contact-form {
    padding: 20px;
  }

  .benefit-card {
    min-height: auto;
  }

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

  .social-link {
    flex: 1 1 auto;
    text-align: center;
  }

  .floating-whatsapp {
    right: 12px;
    bottom: 12px;
    min-height: 46px;
    padding-inline: 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .catalog-grid {
    grid-template-columns: 1fr;
  }
}

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

/* SEO ecommerce layer */
h1 {
  font-size: 5.25rem;
}

h2 {
  font-size: 3.65rem;
}

.category-card {
  display: block;
}

.category-card:focus-visible,
.related-card:focus-visible,
.blog-card a:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.breadcrumb a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.category-hero {
  min-height: auto;
  padding: 150px 0 82px;
}

.category-hero-grid,
.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 44px;
  align-items: center;
}

.category-copy p,
.product-summary p,
.policy-content p {
  max-width: 780px;
  color: var(--muted);
}

.category-copy h1,
.product-summary h1,
.policy-content h1 {
  max-width: 900px;
  font-size: 4.25rem;
}

.category-banner,
.product-gallery {
  overflow: hidden;
  border: 1px solid rgba(21, 19, 19, 0.1);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.category-banner img,
.product-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.subcategory-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.btn-outline {
  color: var(--ink);
  background: var(--white);
  border-color: rgba(21, 19, 19, 0.18);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  border-color: var(--ink);
  background: var(--rose-50);
}

.shop-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.shop-sidebar {
  position: sticky;
  top: 108px;
}

.filter-panel {
  padding: 22px;
  border: 1px solid rgba(21, 19, 19, 0.1);
  border-radius: var(--radius);
  background: #fffdf9;
  box-shadow: var(--shadow-soft);
}

.filter-panel h2 {
  margin-bottom: 18px;
  font-size: 2rem;
}

.filter-group {
  padding: 16px 0;
  border-top: 1px solid rgba(21, 19, 19, 0.08);
}

.filter-group h3 {
  margin-bottom: 10px;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-pills span {
  min-height: 32px;
  padding: 6px 10px;
  border: 1px solid rgba(200, 168, 90, 0.3);
  border-radius: 999px;
  color: var(--muted);
  background: var(--cream);
  font-size: 0.82rem;
  font-weight: 700;
}

.commerce-product-grid {
  align-items: stretch;
}

.commerce-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid rgba(21, 19, 19, 0.1);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

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

.commerce-card .product-info {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.commerce-card .product-info h3 {
  font-size: 1.14rem;
}

.product-rating {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  margin: 4px 0 8px;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 900;
}

.product-rating span {
  color: var(--muted);
  font-weight: 800;
}

.product-meta-row {
  display: grid;
  gap: 8px;
  margin-top: auto;
  padding-top: 16px;
}

.product-price {
  color: var(--ink);
  font-size: 1.08rem;
}

.product-price-large {
  display: block;
  margin: 18px 0 10px;
  font-size: 1.55rem;
}

.product-status {
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  color: #14532d;
  background: #dcfce7;
  font-size: 0.78rem;
  font-weight: 900;
}

.card-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 18px;
}

.card-actions .btn {
  width: 100%;
  min-height: 44px;
  padding-inline: 14px;
  font-size: 0.9rem;
}

.all-products-heading {
  margin-top: 58px;
}

.pagination-note {
  margin: 30px 0 0;
  color: var(--muted);
  font-weight: 800;
  text-align: center;
}

.trust-section {
  background: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1.05fr repeat(3, 1fr);
  gap: 16px;
}

.trust-summary,
.testimonial-card,
.blog-card,
.seo-block,
.related-card,
.faq-item {
  border: 1px solid rgba(21, 19, 19, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.trust-summary,
.testimonial-card {
  padding: 22px;
}

.trust-score {
  display: block;
  margin-bottom: 8px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
}

.testimonial-card p {
  color: var(--muted);
}

.benefit-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.benefit-strip span {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border: 1px solid rgba(200, 168, 90, 0.26);
  border-radius: var(--radius);
  background: var(--cream);
  font-weight: 900;
  text-align: center;
}

.seo-block-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.seo-block {
  padding: 26px;
}

.seo-block h2 {
  font-size: 2.25rem;
}

.seo-block p,
.blog-card p,
.related-card span,
.policy-content li {
  color: var(--muted);
}

.related-grid,
.blog-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.related-card {
  display: grid;
  gap: 6px;
  min-height: 112px;
  padding: 20px;
}

.related-card strong {
  font-size: 1.06rem;
}

.blog-card {
  padding: 24px;
}

.blog-card h2,
.blog-card h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
}

.blog-card a:not(.btn) {
  color: var(--rose-500);
  font-weight: 900;
}

.product-detail {
  padding: 150px 0 90px;
}

.product-summary {
  padding: 28px;
  border: 1px solid rgba(21, 19, 19, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
}

.spec-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
}

.spec-list div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(21, 19, 19, 0.08);
}

.spec-list dt {
  color: var(--muted);
  font-weight: 800;
}

.spec-list dd {
  margin: 0;
  font-weight: 900;
}

.policy-content {
  padding-top: 150px;
}

.policy-content .container {
  max-width: 960px;
}

.policy-content h1 {
  margin-bottom: 20px;
}

.policy-content h2 {
  margin-top: 34px;
  font-size: 2.2rem;
}

.sitemap-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  margin: 34px 0;
}

.sitemap-columns a {
  display: block;
  padding: 8px 0;
  color: var(--rose-500);
  font-weight: 800;
}

.footer-seo-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 26px;
  text-align: left;
}

.footer-col h3 {
  color: var(--white);
}

.footer-links.stacked {
  display: grid;
  gap: 8px;
  justify-content: stretch;
  margin-top: 0;
}

.footer-links.stacked a {
  color: rgba(255, 255, 255, 0.82);
}

.site-footer .social-links {
  margin: 12px 0 14px;
}

.site-footer .social-link {
  width: 100%;
  justify-content: flex-start;
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.site-footer .social-link:hover,
.site-footer .social-link:focus-visible {
  border-color: rgba(200, 168, 90, 0.55);
  background: rgba(255, 255, 255, 0.12);
}

.site-footer .social-link span:last-child {
  color: rgba(255, 255, 255, 0.84);
}

.site-footer .social-mark {
  background: rgba(255, 255, 255, 0.1);
}

.utility-links {
  margin-top: 10px;
}

@media (max-width: 1100px) {
  h1 {
    font-size: 4.25rem;
  }

  h2 {
    font-size: 3rem;
  }

  .category-hero-grid,
  .product-detail-grid,
  .shop-layout,
  .footer-seo-grid {
    grid-template-columns: 1fr;
  }

  .shop-sidebar {
    position: static;
  }

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

@media (max-width: 720px) {
  h1,
  .category-copy h1,
  .product-summary h1,
  .policy-content h1 {
    font-size: 3.05rem;
  }

  h2 {
    font-size: 2.45rem;
  }

  .category-hero,
  .product-detail,
  .policy-content {
    padding-top: 128px;
  }

  .related-grid,
  .blog-grid,
  .faq-grid,
  .seo-block-grid,
  .trust-grid,
  .benefit-strip,
  .sitemap-columns {
    grid-template-columns: 1fr;
  }

  .filter-panel {
    padding: 18px;
  }

  .spec-list div {
    grid-template-columns: 1fr;
    gap: 2px;
  }
}
