:root {
  --ink: #203746;
  --muted: #6d7c84;
  --paper: #fffaf6;
  --surface: #ffffff;
  --line: #e6ece8;
  --pink: #ff9a8a;
  --pink-deep: #e26960;
  --blue: #8fcdf3;
  --blue-deep: #3f8eb9;
  --mint: #e5f7f1;
  --cream: #fff1df;
  --shadow: 0 18px 55px rgba(32, 55, 70, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 154, 138, 0.12), transparent 28%),
    radial-gradient(circle at 84% 18%, rgba(143, 205, 243, 0.13), transparent 30%),
    radial-gradient(circle at 52% 58%, rgba(229, 247, 241, 0.42), transparent 32%),
    linear-gradient(180deg, #fffaf6 0%, #f8fcfb 48%, #fffaf6 100%);
  color: var(--ink);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

body.language-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 1000;
  transform: translateY(-160%);
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  border-radius: 6px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  align-items: center;
  grid-template-columns: auto minmax(0, 1fr) auto;
  justify-content: initial;
  gap: clamp(18px, 4vw, 44px);
  min-height: 78px;
  padding: 6px clamp(16px, 4vw, 56px);
  background: rgba(255, 250, 252, 0.86);
  border-bottom: 1px solid rgba(234, 223, 231, 0.9);
  backdrop-filter: blur(12px);
  transition: padding 220ms ease, background 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  padding-top: 4px;
  padding-bottom: 4px;
  background: rgba(255, 250, 252, 0.72);
  border-color: rgba(234, 223, 231, 0.58);
  box-shadow: 0 12px 34px rgba(75, 49, 76, 0.08);
}

.brand img {
  width: 118px;
  height: auto;
  transition: width 220ms ease, opacity 220ms ease, transform 220ms ease;
}

.site-header.is-scrolled .brand img {
  width: 98px;
  opacity: 0.88;
  transform: translateY(-1px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 3vw, 32px);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 650;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.header-action {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 850;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.header-whatsapp {
  padding: 9px 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--pink), var(--blue));
  box-shadow: 0 12px 26px rgba(207, 63, 147, 0.2);
}

.header-location {
  width: 42px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  box-shadow: 0 10px 22px rgba(75, 49, 76, 0.08);
}

.header-social {
  width: 42px;
  color: var(--muted);
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(243, 106, 183, 0.42), rgba(66, 188, 228, 0.42)) border-box;
  border: 1px solid transparent;
  box-shadow: 0 10px 22px rgba(75, 49, 76, 0.07);
}

.header-social:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--pink), var(--blue));
  box-shadow: 0 14px 28px rgba(207, 63, 147, 0.18);
}

.language-toggle {
  min-width: 42px;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(75, 49, 76, 0.08);
}

.nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.nav a:focus-visible,
.btn:focus-visible,
.product-card:focus-visible,
.filter:focus-visible,
.back-link:focus-visible {
  outline: 3px solid rgba(66, 188, 228, 0.55);
  outline-offset: 3px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  gap: clamp(28px, 5vw, 70px);
  min-height: min(820px, calc(100dvh - 82px));
  align-items: center;
  padding: clamp(32px, 6vw, 78px) clamp(16px, 4vw, 56px) clamp(42px, 7vw, 86px);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 8% auto auto 44%;
  width: 42vw;
  height: 42vw;
  max-width: 620px;
  max-height: 620px;
  background: radial-gradient(circle, rgba(243, 106, 183, 0.16), rgba(66, 188, 228, 0.08) 48%, transparent 70%);
  pointer-events: none;
}

.hero-copy {
  max-width: 680px;
}

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.95;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 570px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.04rem, 2vw, 1.24rem);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border: 1px solid rgba(234, 223, 231, 0.9);
  border-radius: 999px;
  padding: 6px 11px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 750;
}

.hero-actions,
.stacked-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 12px 18px;
  text-decoration: none;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--pink), var(--blue));
  color: #fff;
  box-shadow: 0 14px 34px rgba(207, 63, 147, 0.24);
}

.btn-secondary {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
  box-shadow: 0 10px 25px rgba(75, 49, 76, 0.08);
}

.icon-whatsapp,
.icon-pin,
.icon-instagram,
.icon-facebook {
  width: 20px;
  height: 20px;
  display: inline-block;
  background: currentColor;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}

.icon-whatsapp {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 21l1.7-4.9A9 9 0 1 1 8 19.3z'/%3E%3Cpath d='M9 10a.5.5 0 0 0 0 1 5 5 0 0 0 4 4 .5.5 0 0 0 1 0v-1.4a.5.5 0 0 0-.4-.5l-1.2-.3a.5.5 0 0 0-.5.1l-.5.5a4 4 0 0 1-1.8-1.8l.5-.5a.5.5 0 0 0 .1-.5l-.3-1.2a.5.5 0 0 0-.5-.4z'/%3E%3C/svg%3E");
}

.icon-pin {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 10c0 6-8 12-8 12S4 16 4 10a8 8 0 1 1 16 0Z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
}

.icon-instagram {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='2' width='20' height='20' rx='5' ry='5'/%3E%3Cpath d='M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37Z'/%3E%3Cpath d='M17.5 6.5h.01'/%3E%3C/svg%3E");
}

.icon-facebook {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M14 9h3V5h-3c-3.1 0-5 1.9-5 5v2H6v4h3v6h4v-6h3.2l.8-4h-4v-2c0-.7.3-1 1-1Z'/%3E%3C/svg%3E");
}

.hero-visual {
  position: relative;
}

.hero-media {
  position: relative;
  display: block;
  aspect-ratio: 1774 / 887;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.78);
  background: #fff;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 700ms ease, transform 1200ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 250, 252, 0.08), rgba(66, 188, 228, 0.1));
  pointer-events: none;
}

.hero-mini-gallery {
  position: absolute;
  left: clamp(14px, 3vw, 28px);
  bottom: clamp(14px, 3vw, 28px);
  display: flex;
  gap: 10px;
  padding: 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(234, 223, 231, 0.85);
  box-shadow: 0 14px 34px rgba(75, 49, 76, 0.14);
  backdrop-filter: blur(12px);
}

.hero-dots {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 3;
  display: flex;
  gap: 8px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(234, 223, 231, 0.9);
  backdrop-filter: blur(12px);
}

.hero-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: rgba(37, 35, 43, 0.28);
  cursor: pointer;
  transition: width 200ms ease, background 200ms ease;
}

.hero-dot.is-active {
  width: 24px;
  background: linear-gradient(135deg, var(--pink), var(--blue));
}

.hero-mini-gallery img {
  width: clamp(70px, 8vw, 112px);
  aspect-ratio: 1 / 1.12;
  height: auto;
  object-fit: cover;
  border-radius: 6px;
}

.intro-strip,
.section,
.footer {
  padding-inline: clamp(16px, 4vw, 56px);
}

.intro-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 1180px;
  margin: -18px auto 0;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.intro-strip div {
  background: #fff;
  padding: 22px;
}

.intro-strip strong,
.intro-strip span {
  display: block;
}

.intro-strip span {
  color: var(--muted);
  margin-top: 4px;
}

.section {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: clamp(58px, 8vw, 110px);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 24px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.04;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  margin: 14px 0 0;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

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

.category-tile {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 92px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(75, 49, 76, 0.05);
  text-align: left;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.category-tile:hover {
  transform: translateY(-2px);
  border-color: rgba(66, 188, 228, 0.42);
  box-shadow: 0 18px 42px rgba(75, 49, 76, 0.1);
}

.category-tile img {
  width: 70px;
  height: 72px;
  object-fit: cover;
  border-radius: 6px;
}

.category-tile strong,
.category-tile small {
  display: block;
}

.category-tile strong {
  line-height: 1.2;
  font-size: 0.95rem;
}

.category-tile small {
  margin-top: 3px;
  color: var(--muted);
  font-weight: 750;
}

.filter {
  min-height: 44px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  padding: 10px 16px;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-weight: 750;
}

.filter.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--pink-deep), var(--blue-deep));
  border-color: transparent;
  box-shadow: 0 12px 28px rgba(207, 63, 147, 0.16);
}

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

.product-card {
  position: relative;
  display: block;
  min-width: 0;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(75, 49, 76, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(243, 106, 183, 0.42), rgba(66, 188, 228, 0.36));
  opacity: 0;
  transition: opacity 220ms ease;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  padding: 2px;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(243, 106, 183, 0.38);
  box-shadow: 0 22px 56px rgba(75, 49, 76, 0.14);
}

.product-card:hover::before,
.product-card:focus-within::before {
  opacity: 1;
}

.product-card figure {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 4.7;
  background: var(--cream);
  overflow: hidden;
}

.product-image-link {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 360ms ease, filter 260ms ease;
}

.product-card:hover figure img,
.product-card:focus-within figure img {
  transform: scale(1.045);
  filter: saturate(1.04) brightness(0.96);
}

.product-card figure::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 48%, rgba(37, 35, 43, 0.26)),
    radial-gradient(circle at 18% 15%, rgba(243, 106, 183, 0.16), transparent 34%),
    radial-gradient(circle at 88% 18%, rgba(66, 188, 228, 0.14), transparent 30%);
  opacity: 0;
  transition: opacity 260ms ease;
}

.product-card:hover figure::after,
.product-card:focus-within figure::after {
  opacity: 1;
}

.image-hint {
  position: absolute;
  left: 10px;
  bottom: 10px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 850;
  box-shadow: 0 10px 24px rgba(37, 35, 43, 0.14);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.quick-actions {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 3;
  display: flex;
  gap: 8px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.product-card:hover .image-hint,
.product-card:hover .quick-actions,
.product-card:focus-within .image-hint,
.product-card:focus-within .quick-actions {
  opacity: 1;
  transform: translateY(0);
}

.quick-action {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(37, 35, 43, 0.18);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.quick-action:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 16px 30px rgba(37, 35, 43, 0.22);
}

.quick-whatsapp {
  background: linear-gradient(135deg, var(--pink), var(--pink-deep));
}

.quick-location {
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
}

.product-card-body {
  position: relative;
  z-index: 2;
  padding: 14px;
}

.badge {
  display: inline-flex;
  max-width: 100%;
  border-radius: 999px;
  padding: 4px 10px;
  background: linear-gradient(135deg, rgba(223, 245, 238, 0.98), rgba(232, 247, 255, 0.98));
  color: #146e74;
  font-size: 0.78rem;
  font-weight: 800;
}

.product-card h3 {
  margin: 10px 0 6px;
  font-size: 1rem;
  line-height: 1.25;
}

.product-card h3 a {
  text-decoration: none;
}

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

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

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.card-meta span {
  display: inline-flex;
  align-items: center;
}

.card-meta span + span::before {
  content: "";
  width: 4px;
  height: 4px;
  margin-right: 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pink), var(--blue));
}

.location-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 18px;
  align-items: stretch;
}

.location-panel,
.review-grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(20px, 4vw, 34px);
  box-shadow: 0 10px 28px rgba(75, 49, 76, 0.06);
}

.location-panel img {
  width: 170px;
  height: auto;
  margin-bottom: 12px;
}

.location-panel h3 {
  margin: 0;
  font-size: 1.5rem;
}

.location-panel p {
  color: var(--muted);
}

.stacked-actions {
  flex-direction: column;
}

.social-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.social-panel strong,
.social-panel span {
  display: block;
}

.social-panel strong {
  color: var(--ink);
  font-size: 0.98rem;
}

.social-panel span {
  max-width: 330px;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 9px;
}

.social-links a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--ink);
  text-decoration: none;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(243, 106, 183, 0.48), rgba(66, 188, 228, 0.48)) border-box;
  border: 1px solid transparent;
  box-shadow: 0 12px 26px rgba(75, 49, 76, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, color 180ms ease, background 180ms ease;
}

.social-links a:hover {
  transform: translateY(-2px);
  color: #fff;
  background: linear-gradient(135deg, var(--pink), var(--blue));
  box-shadow: 0 18px 34px rgba(207, 63, 147, 0.2);
}

.map {
  width: 100%;
  min-height: 420px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.instagram-preview {
  position: relative;
  display: block;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 154, 138, 0.12), rgba(143, 205, 243, 0.14)),
    #fff;
}

.instagram-preview img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.instagram-preview::after {
  content: "Baby Stoon";
  position: absolute;
  left: 18px;
  bottom: 18px;
  border-radius: 999px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(32, 55, 70, 0.14);
  backdrop-filter: blur(12px);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.review-grid p {
  margin: 0;
  color: var(--ink);
  font-size: 1.02rem;
}

.stars {
  color: var(--pink-deep);
  font-size: 0.88rem;
  letter-spacing: 0;
  margin-bottom: 10px;
}

.review-grid span {
  display: block;
  color: var(--muted);
  margin-top: 14px;
  font-weight: 700;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 52px;
  padding-bottom: 36px;
  color: var(--muted);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-brand p {
  max-width: 660px;
  margin: 0;
}

.footer img {
  width: 128px;
  height: auto;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
  white-space: nowrap;
}

.sticky-whatsapp {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 40;
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg, var(--pink), var(--blue));
  box-shadow: 0 18px 38px rgba(207, 63, 147, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.sticky-whatsapp::before {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: inherit;
  border: 1px solid rgba(243, 106, 183, 0.28);
  opacity: 0.7;
}

.sticky-whatsapp:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 22px 46px rgba(66, 188, 228, 0.28);
}

.sticky-whatsapp .icon-whatsapp {
  width: 24px;
  height: 24px;
}

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

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

.language-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 28% 28%, rgba(243, 106, 183, 0.18), transparent 34%),
    radial-gradient(circle at 72% 22%, rgba(66, 188, 228, 0.18), transparent 34%),
    rgba(37, 35, 43, 0.26);
  backdrop-filter: blur(14px);
}

.language-card {
  position: relative;
  z-index: 1;
  width: min(100%, 470px);
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 8px;
  padding: clamp(22px, 5vw, 34px);
  background: rgba(255, 250, 252, 0.94);
  box-shadow: 0 26px 80px rgba(75, 49, 76, 0.24);
  text-align: center;
}

.language-card img {
  width: 112px;
  height: auto;
  margin: 0 auto 8px;
}

.language-card h2 {
  margin: 0;
  font-size: clamp(1.7rem, 5vw, 2.4rem);
  line-height: 1.05;
}

.language-card > p:not(.eyebrow) {
  max-width: 350px;
  margin: 12px auto 0;
  color: var(--muted);
}

.language-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 22px;
}

.language-options button {
  min-height: 86px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  text-align: start;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.language-options button:hover {
  transform: translateY(-2px);
  border-color: rgba(243, 106, 183, 0.42);
  box-shadow: 0 16px 34px rgba(75, 49, 76, 0.12);
}

.language-options strong,
.language-options span {
  display: block;
}

.language-options strong {
  font-size: 1.02rem;
}

.language-options span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.88rem;
}

.is-rtl {
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
}

.is-rtl .hero-copy,
.is-rtl .section-heading,
.is-rtl .location-panel,
.is-rtl .product-info,
.is-rtl .footer,
.is-rtl .product-card-body {
  text-align: right;
}

.is-rtl .card-meta span + span::before {
  margin-right: 0;
  margin-left: 6px;
}

.is-rtl .hero-mini-gallery {
  left: auto;
  right: clamp(14px, 3vw, 28px);
}

.is-rtl .hero-dots {
  right: auto;
  left: 16px;
}

.is-rtl .footer-brand {
  flex-direction: row-reverse;
}

.is-rtl .quick-actions {
  right: auto;
  left: 10px;
}

.is-rtl .image-hint {
  left: auto;
  right: 10px;
}

.product-page {
  max-width: 1280px;
  margin: 0 auto;
  padding: 28px clamp(16px, 4vw, 56px) 0;
}

.back-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--muted);
  font-weight: 800;
  text-decoration: none;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  gap: clamp(22px, 5vw, 64px);
  align-items: start;
  padding-top: 16px;
}

.gallery {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 14px;
}

.thumbs {
  display: grid;
  gap: 10px;
}

.thumbs button {
  width: 90px;
  aspect-ratio: 1;
  border: 2px solid transparent;
  border-radius: var(--radius);
  overflow: hidden;
  padding: 0;
  background: #fff;
  cursor: pointer;
}

.thumbs button.is-active {
  border-color: var(--pink);
}

.thumbs img,
.main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-image {
  aspect-ratio: 4 / 4.8;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}

.product-info {
  position: sticky;
  top: 110px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(20px, 4vw, 34px);
  box-shadow: 0 10px 28px rgba(75, 49, 76, 0.06);
}

.product-info h1 {
  margin-top: 14px;
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 1;
}

.product-info p {
  color: var(--muted);
}

.product-assurance {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 20px 0 18px;
}

.product-assurance div {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  background: var(--paper);
}

.product-assurance dt {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
}

.product-assurance dd {
  margin: 2px 0 0;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 850;
}

.variant-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0;
}

.variant-list span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 0.86rem;
  font-weight: 750;
  color: var(--muted);
  background: var(--paper);
}

.empty-state {
  grid-column: 1 / -1;
  background: #fff;
  border: 1px solid var(--line);
  padding: 28px;
  border-radius: var(--radius);
}

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

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

@media (max-width: 860px) {
  .site-header {
    align-items: center;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 2px;
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .brand img {
    width: 118px;
  }

  .site-header.is-scrolled .brand img {
    width: 96px;
    opacity: 0.82;
  }

  .nav {
    width: 100%;
    max-width: 390px;
    justify-content: space-between;
    gap: 8px;
  }

  .header-actions {
    position: absolute;
    top: 12px;
    right: 16px;
    display: block;
  }

  .is-rtl .header-actions {
    right: auto;
    left: 16px;
  }

  .header-actions .header-action {
    display: none;
  }

  .header-actions .header-social {
    display: none;
  }

  .language-toggle {
    min-width: 38px;
    min-height: 38px;
    font-size: 0.76rem;
  }

  .hero,
  .product-detail,
  .location-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 34px;
  }

  .hero-media {
    border-radius: var(--radius);
  }

  .hero-mini-gallery {
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: 12px;
    justify-content: center;
  }

  .is-rtl .hero-mini-gallery {
    right: auto;
  }

  .hero-dots {
    right: 12px;
    bottom: 12px;
  }

  .is-rtl .hero-dots {
    left: 12px;
  }

  .intro-strip,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding-top: clamp(42px, 9vw, 70px);
  }

  .section-heading {
    margin-bottom: 16px;
  }

  .section-heading h2 {
    font-size: clamp(1.9rem, 9vw, 2.8rem);
  }

  .section-heading p:not(.eyebrow) {
    margin-top: 8px;
  }

  .category-showcase {
    display: flex;
    gap: 10px;
    margin: 0 -16px 12px;
    padding: 0 16px 4px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }

  .category-showcase::-webkit-scrollbar {
    display: none;
  }

  .category-tile {
    flex: 0 0 min(74vw, 280px);
    grid-template-columns: 58px minmax(0, 1fr);
    min-height: 74px;
    gap: 10px;
    padding: 8px;
    scroll-snap-align: start;
  }

  .category-tile img {
    width: 58px;
    height: 58px;
  }

  .category-tile strong {
    font-size: 0.9rem;
  }

  .category-tile small {
    font-size: 0.78rem;
  }

  .filters {
    flex-wrap: nowrap;
    gap: 8px;
    margin: 0 -16px 16px;
    padding: 0 16px 2px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
  }

  .filters::-webkit-scrollbar {
    display: none;
  }

  .filter {
    flex: 0 0 auto;
    min-height: 40px;
    padding: 8px 13px;
    font-size: 0.9rem;
  }

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

  .product-info {
    position: static;
  }
}

@media (max-width: 560px) {
  .hero-actions,
  .stacked-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .product-grid {
    gap: 12px;
  }

  .category-showcase {
    margin-bottom: 10px;
  }

  .category-tile {
    flex-basis: 218px;
    grid-template-columns: 48px minmax(0, 1fr);
    min-height: 64px;
    gap: 8px;
  }

  .category-tile img {
    width: 48px;
    height: 48px;
  }

  .category-tile strong {
    font-size: 0.84rem;
  }

  .category-tile small {
    margin-top: 1px;
    font-size: 0.72rem;
  }

  .filters {
    margin-bottom: 14px;
  }

  .filter {
    min-height: 38px;
    padding: 7px 12px;
    font-size: 0.84rem;
  }

  .product-card-body {
    padding: 12px;
  }

  .image-hint {
    opacity: 1;
    transform: none;
    min-height: 30px;
    font-size: 0.72rem;
  }

  .quick-actions {
    opacity: 1;
    transform: none;
  }

  .quick-action {
    width: 36px;
    height: 36px;
  }

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

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

  .thumbs button {
    width: 100%;
  }

  .footer {
    flex-direction: column;
    align-items: stretch;
    padding-bottom: 92px;
  }

  .footer-brand {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .is-rtl .footer-brand {
    flex-direction: column;
  }

  .footer-social,
  .social-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-social {
    gap: 8px;
  }

  .sticky-whatsapp {
    width: 50px;
    height: 50px;
    right: 16px;
    bottom: 16px;
  }

  .map {
    min-height: 330px;
  }

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

  .language-options {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
