@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700&family=Unbounded:wght@400;500;600;700&family=Playfair+Display:wght@500;600&display=swap");

html {
  scroll-behavior: smooth;
}

:root {
  color-scheme: light;
  --bg: #faf8f6;
  --bg-accent: #fff0f5;
  --text: #1a1a20;
  --muted: #6b6478;
  --primary: #1a1a20;
  --secondary: #e8527a;
  --accent: #2ec4b6;
  --accent-2: #ffd166;
  --card: #ffffff;
  --outline: rgba(28, 27, 34, 0.08);
  --shadow: 0 12px 40px rgba(27, 23, 38, 0.08);
  --shadow-hover: 0 20px 50px rgba(27, 23, 38, 0.14);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

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

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.page {
  background: transparent;
}

body::before,
body::after {
  content: "";
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 999px;
  filter: blur(120px);
  opacity: 0.3;
  z-index: -1;
  pointer-events: none;
}

body::before {
  top: -220px;
  right: -160px;
  background: radial-gradient(circle, rgba(232, 82, 122, 0.4), transparent 70%);
}

body::after {
  bottom: -240px;
  left: -200px;
  background: radial-gradient(circle, rgba(46, 196, 182, 0.3), transparent 70%);
}

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

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 24px;
  margin: 0 auto;
}

.muted {
  color: var(--muted);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(24px) saturate(1.6);
  -webkit-backdrop-filter: blur(24px) saturate(1.6);
  background: rgba(250, 248, 246, 0.8);
  border-bottom: 1px solid rgba(28, 27, 34, 0.05);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(250, 248, 246, 0.95);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.header-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 18px 0;
}

.brand {
  font-family: "Unbounded", "Playfair Display", "Manrope", sans-serif;
  font-size: 18px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  background: linear-gradient(135deg, var(--text) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav {
  display: flex;
  gap: 22px;
  font-size: 14px;
}

.nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-link {
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.nav-link:hover {
  opacity: 1;
}

.nav a {
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--secondary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--card);
  border: 1px solid var(--outline);
  border-radius: 14px;
  padding: 10px;
  display: grid;
  gap: 6px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 20;
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown a {
  padding: 6px 10px;
  border-radius: 10px;
  color: var(--text);
}

.nav-dropdown a:hover {
  background: #f0f0ee;
}

.nav-cart {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-phone {
  font-weight: 600;
  opacity: 0.9;
  white-space: nowrap;
}

.header-phone {
  display: inline-flex;
  align-items: center;
}

.header-socials {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.header-social {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(28, 27, 34, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--text);
}

.header-social svg {
  width: 19px;
  height: 19px;
  display: block;
}

.header-social img {
  width: 19px;
  height: 19px;
  display: block;
  object-fit: contain;
}

.header-social:hover {
  border-color: rgba(28, 27, 34, 0.35);
}

.header-social.wa {
  color: #118d46;
}

.header-social.max {
  color: inherit;
  border: 1px solid rgba(255, 255, 255, 0.95);
  background: #fff;
  padding: 1px;
}

.header-social.tg {
  color: #1777d0;
}

#nav-cart-count {
  display: inline-flex;
  min-width: 20px;
  height: 20px;
  border-radius: 999px;
  background: rgba(27, 27, 27, 0.08);
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
}

.nav-divider {
  height: 1px;
  background: var(--outline);
  margin: 4px 6px;
}

.nav-all {
  font-weight: 600;
}

.nav a {
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.nav a:hover {
  opacity: 1;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--outline);
  background: var(--card);
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
}

.burger {
  position: relative;
  width: 20px;
  height: 2px;
  background: var(--text);
  display: block;
  border-radius: 2px;
}

.burger::before,
.burger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

.burger::before {
  top: -6px;
}

.burger::after {
  top: 6px;
}

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

.mobile-cart {
  display: none;
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid var(--outline);
  background: var(--card);
  align-items: center;
  justify-content: center;
  color: var(--text);
}

.mobile-cart-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mobile-cart-icon svg {
  width: 100%;
  height: 100%;
}


.mobile-cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: rgba(27, 27, 27, 0.9);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero {
  padding: 86px 0 64px;
  position: relative;
  background: transparent;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px 40px;
  align-items: start;
}

.hero-centered {
  grid-template-columns: 1fr;
  text-align: center;
  justify-items: center;
}

.hero-centered .hero-copy {
  max-width: 980px;
  width: 100%;
  display: grid;
  justify-items: center;
}

.hero-copy {
  display: grid;
  gap: 14px;
  text-align: center;
  justify-items: center;
}

.hero-modern {
  min-height: 40vh;
  background-image: url("/static/main/img/b23adbba67c2957c4894a4c6966d0f27_1fc31ea7-858c-4408-b63c-30de1f6ac691-2x.jpeg");
  background-image: -webkit-image-set(
    url("/static/main/img/b23adbba67c2957c4894a4c6966d0f27_1fc31ea7-858c-4408-b63c-30de1f6ac691.jpeg") 1x,
    url("/static/main/img/b23adbba67c2957c4894a4c6966d0f27_1fc31ea7-858c-4408-b63c-30de1f6ac691-2x.jpeg") 2x
  );
  background-image: image-set(
    url("/static/main/img/b23adbba67c2957c4894a4c6966d0f27_1fc31ea7-858c-4408-b63c-30de1f6ac691.jpeg") 1x,
    url("/static/main/img/b23adbba67c2957c4894a4c6966d0f27_1fc31ea7-858c-4408-b63c-30de1f6ac691-2x.jpeg") 2x
  );
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #f7f6fb;
  position: relative;
  overflow: hidden;
}

.hero-modern::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(255, 255, 255, 0.75) 35%,
    rgba(255, 255, 255, 0.4) 60%,
    rgba(255, 255, 255, 0) 80%
  );
  z-index: 0;
}

.hero-modern::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(224, 82, 134, 0.12), rgba(224, 82, 134, 0) 58%);
  opacity: 0.4;
  z-index: 0;
}

.hero-modern-container {
  position: relative;
  z-index: 1;
  min-height: 40vh;
  display: grid;
  align-content: start;
  gap: 24px;
  padding-top: 20px;
  padding-bottom: 28px;
}

.hero-modern-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
  align-items: center;
}

.hero-modern-content {
  max-width: 580px;
  display: grid;
  gap: 18px;
  color: #2a2a2a;
}

.hero-modern-content h1 {
  margin: 0;
  font-size: clamp(36px, 4.7vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

@media (min-width: 901px) {
  .hero-modern-content h1 {
    font-size: clamp(34px, 4.1vw, 58px);
  }
}

.hero-modern-content h1 span {
  color: var(--secondary);
  font-weight: 800;
}

.hero-modern-subtitle {
  margin: 0;
  font-size: clamp(18px, 2.05vw, 34px);
  line-height: 1.18;
  color: #555;
}

.hero-modern-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-modern-actions .btn.primary {
  background: var(--secondary);
  color: #ffffff;
  border-radius: 16px;
  padding: 16px 34px;
  font-weight: 700;
  font-size: 15px;
  border: none;
  box-shadow: 0 8px 24px rgba(232, 82, 122, 0.3);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  letter-spacing: 0.3px;
}

.hero-modern-actions .btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(232, 82, 122, 0.4);
}

.hero-modern-secondary {
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid var(--secondary);
  color: var(--secondary);
  border-radius: 16px;
  padding: 16px 34px;
  box-shadow: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  font-weight: 600;
  backdrop-filter: blur(8px);
}

.hero-modern-secondary:hover {
  background: var(--secondary);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(232, 82, 122, 0.25);
}

.hero-modern-rating {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 48px;
  padding: 10px 18px;
  border-radius: 14px;
  border: 1px solid rgba(232, 82, 122, 0.15);
  background: rgba(255, 240, 246, 0.8);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(232, 82, 122, 0.08);
  font-size: 14px;
  font-weight: 600;
  color: #2a2a2a;
  letter-spacing: 0.2px;
}

.hero-modern-bottom {
  display: block;
  max-width: 560px;
}

.hero-modern-bottom .hero-info-list {
  margin-left: 0;
  max-width: 100%;
}

.hero-modern-top .hero-promo {
  display: none;
}

.hero-modern-top .hero-promo-card {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 3 / 4;
  height: auto;
  border-radius: 16px;
  border: none;
  box-shadow: 0 16px 36px rgba(28, 27, 34, 0.2);
  backdrop-filter: blur(2px);
  transform: translateY(-8px);
}

.hero-modern-top .hero-promo-dots {
  bottom: 12px;
  background: rgba(0, 0, 0, 0.26);
}

.hero-side {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 18px;
  align-items: stretch;
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
}

.hero-centered .hero-actions,
.hero-centered .hero-tags {
  justify-content: center;
}

.hero-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: none;
  width: 100%;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255, 122, 162, 0.24), rgba(46, 196, 182, 0.18));
  padding: 6px;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-info-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0;
  max-width: 560px;
  margin-left: 0;
  width: 100%;
}

.hero-info-item {
  position: relative;
  padding: 14px 18px;
  text-align: left;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  min-height: 54px;
  width: 100%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  transition: transform 0.2s ease;
}

.hero-info-item + .hero-info-item::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(28, 27, 34, 0), rgba(28, 27, 34, 0.16), rgba(28, 27, 34, 0));
}

.hero-info-icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 122, 162, 0.18);
  font-size: 14px;
  line-height: 1;
}

.hero-info-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}

.hero-info-item:first-child {
  border-radius: calc(var(--radius-lg) - 6px) calc(var(--radius-lg) - 6px) 0 0;
}

.hero-info-item:last-child {
  border-radius: 0 0 calc(var(--radius-lg) - 6px) calc(var(--radius-lg) - 6px);
}

.hero-info-item:hover {
  transform: translateX(4px);
}

.hero-promo {
  display: flex;
  justify-content: center;
  align-items: stretch;
  width: 100%;
}

.hero-promo-slider .hero-promo-card {
  position: relative;
}

.hero-promo-slide {
  position: absolute;
  inset: 0;
  display: none;
  pointer-events: none;
  background: #fff;
}

.hero-promo-slide.active {
  display: block;
  pointer-events: auto;
}

.hero-promo-slide.active img {
  animation: heroPromoPulse 0.9s ease;
}

.hero-promo-slide a {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-promo-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(28, 27, 34, 0.08);
  background: #fff;
  width: 100%;
  max-width: none;
  aspect-ratio: 3 / 4;
  position: relative;
  box-shadow: var(--shadow);
  isolation: isolate;
}

@media (min-width: 701px) {
  .hero-info-list {
    margin-left: 16px;
  }

  .hero-promo-slider .hero-promo-card {
    height: 100%;
  }

  .hero-promo-card {
    aspect-ratio: auto;
  }

  .hero-modern-top .hero-promo-card {
    max-width: 360px;
    aspect-ratio: 3 / 4;
    height: auto;
  }
}

.hero-promo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
  transform: none;
  transition: none;
}

.hero-promo-card::after {
  content: none;
}

.hero-promo-card:hover::after {
  opacity: 0;
}

.hero-promo-card:hover img {
  transform: none;
}

.hero-promo-dots {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  z-index: 3;
  display: inline-flex;
  gap: 6px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
}

.hero-promo-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
}

.hero-promo-dot.active {
  background: rgba(255, 255, 255, 0.95);
}

.hero-promo-empty {
  display: grid;
  place-items: center;
  color: var(--muted);
  font-weight: 600;
  background: radial-gradient(circle at top, rgba(255, 209, 102, 0.2), transparent 60%),
    radial-gradient(circle at bottom, rgba(255, 122, 162, 0.2), transparent 60%);
}

.eyebrow {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

h1,
h2,
h3 {
  font-family: "Unbounded", "Playfair Display", "Manrope", sans-serif;
  letter-spacing: 0.4px;
}

h1 {
  font-size: clamp(40px, 6vw, 72px);
  margin: 12px 0 18px;
  line-height: 1.05;
}

h1,
h2,
h3,
p,
li,
a {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.hero-title {
  text-wrap: balance;
}

.lead {
  font-size: 17px;
  line-height: 1.7;
  max-width: 640px;
  text-align: left;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 28px;
}

.btn {
  border: none;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn.primary {
  background: linear-gradient(135deg, #1c1b22 0%, #302c3a 100%);
  color: #fff;
  border: 1px solid rgba(28, 27, 34, 0.3);
  box-shadow: var(--shadow);
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(28, 27, 34, 0.12);
}

.product-details-btn {
  background: #fff;
  color: #1c1b22;
  border: 1px solid rgba(28, 27, 34, 0.18);
}

.btn.secondary {
  background: #f0f0ee;
  color: var(--text);
}

.btn.ghost:hover,
.btn.secondary:hover {
  box-shadow: 0 10px 22px rgba(27, 27, 27, 0.1);
}

.hero-tags {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-tags span {
  background: rgba(255, 255, 255, 0.9);
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(28, 27, 34, 0.08);
  font-size: 12px;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroPromoPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1);
  }
}

.hero-anim-h1 {
  animation: heroFadeUp 0.7s ease-out 0.1s both;
}

.hero-anim-p {
  animation: heroFadeUp 0.7s ease-out 0.25s both;
}

.hero-anim-buttons {
  animation: heroFadeUp 0.7s ease-out 0.4s both;
}

.hero-card {
  margin-top: 12px;
  background: white;
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid var(--outline);
}

.hero-card-title {
  font-weight: 600;
  margin-bottom: 6px;
}

.hero-card-badge {
  margin-top: 12px;
  background: rgba(20, 20, 20, 0.06);
  color: var(--muted);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  display: inline-block;
}

.section {
  padding: 48px 0;
  background: transparent;
}

.hero,
.section {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero.is-visible,
.section.is-visible {
  opacity: 1;
  transform: translateY(0);
}


.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 82, 122, 0.12), rgba(46, 196, 182, 0.12), transparent);
  margin: 4px auto;
}

.section-divider + .section {
  padding-top: 24px;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  text-align: center;
  align-items: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.section-head h2 {
  font-size: clamp(24px, 3.4vw, 34px);
  margin: 0;
}

#popular .section-head h2 {
  color: var(--secondary);
}

#about .section-head h2,
#delivery .section-head h2,
#reviews .section-head h2,
#why .section-head h2 {
  color: var(--secondary);
}

.section-head p {
  margin: 0;
}

.section-actions {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.collection-grid,
.catalog-grid,
.benefits-grid,
.delivery-grid,
.reviews-placeholder,
.about-grid,
.footer-grid,
.simple-grid {
  display: grid;
  gap: 20px;
}

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

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

.popular-card {
  background: transparent;
  border-radius: 0;
  border: 0;
  overflow: visible;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  width: 100%;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.popular-card:hover {
  transform: translateY(-5px);
}

.popular-card:hover .popular-media {
  box-shadow: var(--shadow-hover);
}

.popular-media {
  display: block;
  line-height: 0;
  background: linear-gradient(135deg, rgba(255, 209, 102, 0.3), rgba(255, 122, 162, 0.25));
  color: var(--muted);
  min-height: 0;
  aspect-ratio: auto;
  overflow: hidden;
  text-decoration: none;
  position: relative;
  border-radius: var(--radius-md);
  transition: box-shadow 0.2s ease;
  width: 100%;
  padding: 0;
}

.popular-media img {
  position: static;
  width: 100%;
  height: auto;
  display: block;
}

.popular-overlay {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(28, 27, 34, 0.5), rgba(28, 27, 34, 0.2));
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.popular-overlay span {
  padding: 0 16px;
  text-align: center;
  line-height: 1.2;
  white-space: normal;
  word-break: break-word;
  max-width: 100%;
}

.popular-card:hover .popular-overlay {
  opacity: 1;
}

.popular-body {
  padding: 10px 10px 10px;
  border-top: 1px solid rgba(28, 27, 34, 0.08);
}

.popular-placeholder {
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 160px;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.2;
}

.popular-title {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  padding: 0 4px;
  line-height: 1.15;
}

.popular-count {
  display: block;
  font-size: 13px;
  padding: 0 4px;
  margin-top: 2px;
  text-align: center;
  width: 100%;
}

.hero-info-plain {
  border-radius: 0;
  background: none !important;
  border: 0;
  padding: 0 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: none !important;
  overflow: visible;
  isolation: isolate;
}

.hero-info-plain .hero-info-item {
  background: transparent;
  border-radius: 0;
  min-height: 48px;
  padding: 10px 0 14px;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  transition: none;
  background-image: linear-gradient(
    90deg,
    rgba(255, 122, 162, 0),
    rgba(255, 122, 162, 0.5) 28%,
    rgba(46, 196, 182, 0.5) 72%,
    rgba(46, 196, 182, 0)
  );
  background-repeat: no-repeat;
  background-size: 100% 1px;
  background-position: 0 calc(100% - 2px);
}

.hero-info-plain .hero-info-item:first-child,
.hero-info-plain .hero-info-item:last-child {
  border-radius: 0;
}

.hero-info-plain .hero-info-item:hover {
  transform: none;
}

.hero-info-plain .hero-info-item + .hero-info-item::before {
  display: none;
}

.hero-info-plain .hero-info-icon {
  background: transparent;
  width: 22px;
  height: 22px;
  font-size: 15px;
}

.hero-info-plain .hero-info-label {
  font-size: 18px;
  font-weight: 600;
}

.collection-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.promo-carousel {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
}

.promo-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 360px);
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 4px 2px 8px;
}

.promo-track::-webkit-scrollbar {
  display: none;
}

.promo-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--outline);
  aspect-ratio: 16 / 9;
  height: 180px;
  scroll-snap-align: start;
}

.promo-card a {
  display: block;
  height: 100%;
  color: inherit;
}

.promo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.promo-caption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.2px;
}

.promo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0) 50%);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.promo-card:hover::after {
  opacity: 1;
}

.promo-empty {
  display: grid;
  place-items: center;
  color: var(--muted);
}

.promo-control {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--outline);
  background: var(--card);
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
}

.collection-card {
  background: var(--card);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid rgba(28, 27, 34, 0.08);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.collection-card.accent {
  background: linear-gradient(140deg, rgba(255, 209, 102, 0.2), rgba(255, 122, 162, 0.15));
  border-color: rgba(255, 122, 162, 0.3);
}

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

.chip {
  display: inline-block;
  margin-top: 14px;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(20, 20, 20, 0.06);
  color: var(--muted);
}

.catalog-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.product-card {
  background: var(--card);
  border-radius: 18px;
  border: 1px solid var(--outline);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.product-card-dots {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  display: inline-flex;
  gap: 5px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.product-card-dots .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(28, 27, 34, 0.3);
}

.product-card-dots .dot.active {
  background: rgba(28, 27, 34, 0.75);
}

.product-image {
  background: #f0f0ee;
  height: 380px;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-weight: 600;
  overflow: hidden;
  border: none;
  width: 100%;
  cursor: pointer;
  position: relative;
}

.product-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #1c1b22;
  font-size: 20px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  box-shadow: 0 8px 18px rgba(27, 27, 27, 0.12);
}

.product-nav.prev {
  left: 10px;
}

.product-nav.next {
  right: 10px;
}



.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.product-image:hover .product-overlay {
  opacity: 1;
}

@media (max-width: 900px) {
  .product-overlay {
    display: none;
  }
}

.discount-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(201, 168, 106, 0.95);
  color: #1b1b1b;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.4px;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 50;
  overscroll-behavior: contain;
}

.modal.open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.modal-dialog {
  position: relative;
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(27, 27, 27, 0.08);
  box-shadow: 0 30px 60px rgba(27, 27, 27, 0.25);
  width: min(640px, 92vw);
  display: grid;
  grid-template-rows: 680px auto;
  max-height: 90vh;
  overflow-y: auto;
  overflow: hidden;
  z-index: 1;
  overscroll-behavior: contain;
}

#checkout-modal .modal-dialog {
  width: min(860px, 92vw);
  grid-template-rows: auto;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  max-height: 90vh;
  overflow: hidden;
}

.checkout-visual {
  background: radial-gradient(circle at 20% 20%, rgba(255, 209, 102, 0.25), transparent 55%),
    radial-gradient(circle at 80% 10%, rgba(255, 122, 162, 0.2), transparent 50%),
    linear-gradient(140deg, #1c1b22 0%, #2b2734 50%, #1b1b22 100%);
  color: #f5f5f5;
  padding: 36px;
  display: grid;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.checkout-brand {
  font-family: "Unbounded", "Playfair Display", "Manrope", sans-serif;
  letter-spacing: 2px;
  font-size: 12px;
  text-transform: uppercase;
  opacity: 0.8;
}

.checkout-title {
  font-size: 28px;
  font-weight: 700;
}

.checkout-points {
  display: grid;
  gap: 8px;
  font-size: 13px;
}

.checkout-points span {
  padding-left: 14px;
  position: relative;
}

.checkout-points span::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #c9a86a;
}

.checkout-body {
  padding: 32px;
  overflow-y: auto;
  background: radial-gradient(circle at top, rgba(255, 209, 102, 0.12), transparent 60%);
}

.modal-media {
  background: #000;
  overflow: hidden;
}

.modal-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.modal-body {
  padding: 28px;
  display: grid;
  gap: 14px;
}

.modal-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid var(--outline);
  background: #fff;
  font-size: 18px;
  cursor: pointer;
  z-index: 2;
}

.modal-body h3 {
  margin: 0;
  font-size: 24px;
}

.modal-body .muted {
  margin: 0;
}


.modal-dialog .checkout-form .btn.primary {
  width: 100%;
}

#product-modal .modal-dialog {
  grid-template-rows: 520px auto;
  max-height: 90vh;
}

#product-modal .modal-body {
  min-height: 220px;
}

.product-modal-dialog {
  width: min(860px, 92vw);
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  grid-template-rows: auto;
  max-height: 88vh;
}

.modal-media-carousel {
  position: relative;
  background: linear-gradient(145deg, #1b1b1b, #2f2a37);
}

.modal-media-carousel img {
  object-fit: contain;
  background: #fff;
}

.product-modal-content {
  min-height: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  background: #fff;
}

.product-modal-body {
  padding: 20px 20px 18px;
  gap: 10px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  max-height: calc(88vh - 40px);
}

.product-modal-footer {
  padding: 0 20px 20px;
  background: #fff;
}

.product-modal-footer .btn {
  width: 100%;
  min-height: 44px;
}

.product-modal-body h3 {
  font-size: 24px;
  line-height: 1.2;
}

.modal-price-lg {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  font-size: 28px;
  font-weight: 700;
}

.modal-price-current {
  font-size: inherit;
  font-weight: inherit;
  line-height: 1;
}

.modal-price-old {
  font-size: 18px;
  color: var(--muted);
  text-decoration: line-through;
  font-weight: 600;
  line-height: 1;
}

.modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: #1c1b22;
  font-size: 24px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
}

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

.modal-nav.prev {
  left: 10px;
}

.modal-nav.next {
  right: 10px;
}

.modal-dots {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  display: inline-flex;
  gap: 6px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.28);
  z-index: 3;
}

.modal-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.45);
  padding: 0;
  cursor: pointer;
}

.modal-dot.active {
  background: rgba(255, 255, 255, 0.95);
}

.product-modal-body #modal-description {
  font-size: 14px;
  line-height: 1.45;
  white-space: pre-line;
}

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

.category-products .product-card {
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
  align-items: center;
  gap: 10px;
}

.category-products .product-image {
  height: auto;
  min-height: 0;
  background: linear-gradient(135deg, rgba(255, 209, 102, 0.3), rgba(255, 122, 162, 0.25));
  display: block;
  line-height: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  padding: 0;
}

.category-products .product-image img {
  width: 100%;
  height: auto;
  object-fit: initial;
}

.category-products .product-image:hover .product-overlay {
  opacity: 0;
}

.category-products .product-card:hover .product-image {
  box-shadow: var(--shadow);
}

.category-products .product-card {
  border-radius: 16px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.category-products .product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(27, 27, 27, 0.10);
}

.category-products .product-body {
  padding: 12px 14px 14px;
  gap: 8px;
  width: 100%;
}

.category-products .product-actions {
  display: grid;
  gap: 8px;
}

.category-products .product-actions .product-meta {
  justify-content: center;
  align-items: baseline;
  gap: 6px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
}

.category-products .price-old {
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
  text-decoration: line-through;
}

.category-products .product-body h3 {
  order: 1;
  margin: 0;
  font-size: 15px;
  line-height: 1.3;
  text-align: center;
  font-weight: 700;
  width: 100%;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.category-products .product-actions {
  order: 2;
}

.category-products .product-details-btn {
  order: 3;
  width: 100%;
  min-height: 36px;
  border-radius: 12px;
  font-size: 13px;
  text-align: center;
}

.category-products .cart-add-form {
  order: 4;
  width: 100%;
}

.category-products .cart-add-form .btn {
  width: 100%;
  min-height: 36px;
  border-radius: 12px;
  font-size: 13px;
}
.modal-backdrop {
  backdrop-filter: blur(3px);
}

@media (max-width: 900px) {
  .modal-dialog {
    grid-template-rows: 360px auto;
  }
  .modal-media {
    min-height: auto;
  }

  #checkout-modal .modal-dialog {
    grid-template-columns: 1fr;
    width: min(560px, 92vw);
    max-height: 80vh;
  }

  .checkout-visual {
    display: none;
  }

  .checkout-body {
    padding: 20px;
    max-height: 80vh;
    overflow-y: auto;
  }

  .product-modal-dialog {
    width: min(560px, 92vw);
    grid-template-columns: 1fr;
    grid-template-rows: 320px auto;
    border-radius: 16px;
    max-height: 86vh;
    overflow: hidden;
  }

  .product-modal-body {
    padding: 16px 16px 18px;
    gap: 8px;
    max-height: calc(86vh - 320px);
  }

  .modal-price-lg {
    font-size: 24px;
  }
}

.cart-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
}

.cart-list {
  display: grid;
  gap: 16px;
}

.cart-item {
  position: relative;
  background: var(--card);
  border-radius: 18px;
  border: 1px solid var(--outline);
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 0;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.cart-item:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.cart-image {
  background: #f5f4f2;
  display: grid;
  place-items: center;
  width: 140px;
  align-self: stretch;
  overflow: hidden;
}

.cart-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cart-body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 20px;
}

.cart-body h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.3;
  padding-right: 32px;
}

.cart-body h3 a {
  color: inherit;
  text-decoration: none;
}

.cart-body h3 a:hover {
  color: var(--secondary);
}

.cart-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
}

.cart-prices {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-weight: 600;
}

.cart-unit-price {
  color: var(--muted);
  font-size: 14px;
}

.cart-price-old {
  text-decoration: line-through;
}

.cart-line-total {
  font-size: 19px;
  white-space: nowrap;
}

.cart-line-subtotal {
  margin-left: auto;
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
}

.cart-remove-form {
  position: absolute;
  top: 10px;
  right: 10px;
}

.cart-remove-btn {
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.04);
  color: var(--muted);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.15s;
}

.cart-remove-btn:hover {
  background: rgba(232, 82, 122, 0.1);
  color: var(--secondary);
}

.cart-qty {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--outline);
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg);
}

.cart-qty-form {
  display: contents;
}

.cart-qty-btn {
  width: 34px;
  height: 34px;
  border: none;
  background: transparent;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: background 0.15s;
}

.cart-qty-btn:hover {
  background: rgba(0, 0, 0, 0.06);
}

.cart-qty-value {
  min-width: 28px;
  text-align: center;
  font-weight: 700;
  font-size: 15px;
}

.cart-line-total {
  margin-left: auto;
}

.cart-summary {
  align-self: start;
}

.summary-card {
  background: var(--card);
  border-radius: 16px;
  border: 1px solid var(--outline);
  padding: 18px;
  display: grid;
  gap: 12px;
}

.summary-title {
  font-weight: 600;
}

.summary-total {
  font-size: 22px;
  font-weight: 600;
}

.flash-stack {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}

.flash {
  padding: 12px 16px;
  border-radius: 12px;
  background: #1b1b1b;
  color: #fff;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 16px 30px rgba(27, 27, 27, 0.2);
}

.flash-success {
  background: #1b1b1b;
}

.flash.fade-out {
  animation: fadeOut 1s ease forwards;
}

@keyframes fadeOut {
  to {
    opacity: 0;
    transform: translateY(-6px);
  }
}

.checkout-form {
  display: grid;
  gap: 10px;
}

.checkout-form .btn.primary {
  width: 100%;
  margin-top: 6px;
}

.checkout-consent {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(28, 27, 34, 0.08);
}

.checkout-consent input {
  width: 16px;
  height: 16px;
}

.checkout-consent a {
  color: var(--text);
  text-decoration: underline;
}

.form-field {
  display: grid;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
}

.form-field input {
  border: 1px solid var(--outline);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 14px;
}

.form-field select {
  border: 1px solid var(--outline);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 14px;
  background: #fff;
}

.form-field.is-hidden {
  max-height: 0;
  opacity: 0;
  margin: 0;
  overflow: hidden;
  pointer-events: none;
  transition: max-height 0.25s ease, opacity 0.25s ease, margin 0.25s ease;
}

.form-field.slide {
  max-height: 120px;
  opacity: 1;
  margin-top: 0;
  transition: max-height 0.25s ease, opacity 0.25s ease, margin 0.25s ease;
}

.form-field.slide.is-hidden {
  max-height: 0;
  opacity: 0;
  margin: 0;
}
}

.cart-head {
  align-items: flex-start;
}

.cart-title {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.cart-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(27, 27, 27, 0.06);
  font-size: 20px;
}

.cart-count {
  display: inline-flex;
  min-width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(201, 168, 106, 0.25);
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.empty-state {
  display: grid;
  gap: 16px;
  justify-items: start;
}

@media (max-width: 900px) {
  .cart-grid {
    grid-template-columns: 1fr;
  }
  .cart-list,
  .cart-summary {
    padding: 0;
  }
  .cart-item {
    grid-template-columns: 90px 1fr;
    border-radius: 14px;
  }
  .cart-image {
    width: 90px;
  }
  .cart-body {
    gap: 6px;
    padding: 10px 12px;
  }
  .cart-body h3 {
    font-size: 14px;
    line-height: 1.25;
    padding-right: 28px;
  }
  .cart-row {
    gap: 10px;
  }
  .cart-qty-btn {
    width: 28px;
    height: 28px;
    font-size: 16px;
  }
  .cart-qty-value {
    min-width: 22px;
    font-size: 13px;
  }
  .cart-prices {
    gap: 6px;
  }
  .cart-unit-price {
    font-size: 12px;
  }
  .cart-line-total {
    font-size: 15px;
  }
  .cart-remove-form {
    top: 6px;
    right: 6px;
  }
  .cart-remove-btn {
    width: 28px;
    height: 28px;
  }
  .summary-card {
    padding: 14px;
  }
  .summary-title {
    font-size: 14px;
  }
  .summary-total {
    font-size: 22px;
  }
  .summary-note {
    font-size: 12px;
  }
  .cart-summary .btn {
    min-height: 38px;
    padding: 8px 12px;
    font-size: 13px;
  }
}

@media (max-width: 420px) {
  .cart-row {
    flex-wrap: wrap;
  }
  .cart-prices {
    margin-left: 0;
    width: 100%;
    justify-content: space-between;
  }
}


.product-body {
  padding: 18px;
  display: grid;
  gap: 12px;
}

.category-card {
  background: var(--card);
  border-radius: 18px;
  border: 1px solid var(--outline);
  overflow: hidden;
  display: grid;
  grid-template-rows: 240px 1fr;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(27, 27, 27, 0.12);
}

.category-media {
  background: #f0f0ee;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-weight: 600;
  border-bottom: 1px solid var(--outline);
  min-height: 240px;
  overflow: hidden;
  position: relative;
  text-decoration: none;
}

.category-media::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 14px;
  border: 1px solid rgba(201, 168, 106, 0.4);
  pointer-events: none;
}

.category-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.category-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.category-card:hover .category-overlay {
  opacity: 1;
}

.category-body {
  padding: 18px;
  display: grid;
  gap: 12px;
}

.category-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.category-count {
  font-size: 12px;
  color: var(--muted);
  background: rgba(20, 20, 20, 0.06);
  padding: 4px 10px;
  border-radius: 999px;
}

.category-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.category-chip {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(20, 20, 20, 0.06);
  color: var(--muted);
}

.category-link {
  font-weight: 600;
  font-size: 13px;
  color: var(--text);
}


.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}

.product-actions {
  display: grid;
  gap: 10px;
}

.product-actions .product-meta {
  justify-content: flex-start;
  gap: 8px;
  white-space: nowrap;
}

.product-actions .cart-add-form {
  width: 100%;
}

@media (max-width: 700px) {
  .product-actions {
    align-items: start;
  }

  .product-actions .cart-add-form {
    width: 100%;
  }
}

.price-current {
  font-weight: 700;
}

.price-old {
  text-decoration: line-through;
  color: var(--muted);
  font-weight: 500;
}

.badge {
  background: rgba(20, 20, 20, 0.06);
  color: var(--muted);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
}

.badge-hot {
  background: rgba(20, 20, 20, 0.08);
  color: var(--text);
}

.benefits-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  align-items: stretch;
}

.benefit {
  padding: 24px;
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--outline);
  box-shadow: var(--shadow);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.benefit::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.benefit:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}

.benefit:hover::before {
  opacity: 1;
}

.benefit p {
  margin: 0;
  margin-top: auto;
}

.delivery {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 44px;
  margin-bottom: 40px;
  border: 1px solid var(--outline);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.delivery::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary), var(--accent), var(--accent-2));
}

.delivery-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: stretch;
  gap: 24px;
}

.delivery-grid > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 100%;
}

.delivery-grid > div h3 {
  margin: 0;
}

.list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.delivery-grid .list li + li {
  margin-top: 6px;
}

.reviews-spotlight {
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.98), rgba(250, 248, 246, 0.95));
  border-radius: 32px;
  padding: 40px;
  border: 1px solid var(--outline);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.balloon-parallax {
  position: absolute;
  width: 240px;
  pointer-events: none;
  opacity: 0.9;
  transform: translate(0, 0);
  transition: transform 0.1s linear;
  animation: balloonFloat 8s ease-in-out infinite;
}

.balloon-right {
  right: -60px;
  top: 30px;
}

.balloon-left {
  left: -70px;
  top: 120px;
  transform: scaleX(-1);
  animation-delay: 1.5s;
}

.balloon-parallax img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 980px) {
  .balloon-parallax {
    display: none;
  }
}

@keyframes balloonFloat {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .balloon-parallax,
  .hero-anim-h1,
  .hero-anim-p,
  .hero-anim-buttons,
  .hero-promo-slide.active img {
    animation: none !important;
    transition: none !important;
  }
}

.reviews-headline {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.rating-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}

.stars {
  color: var(--secondary);
  letter-spacing: 2px;
}

.reviews-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.reviews-copy {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 20px;
  border: 1px solid rgba(28, 27, 34, 0.08);
}

.reviews-embed {
  display: grid;
  place-items: center;
}

.reviews-frame {
  width: min(760px, 100%);
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid rgba(28, 27, 34, 0.08);
  padding: 18px;
}

.reviews-frame iframe {
  width: 100%;
  min-height: 520px;
  border: none;
  border-radius: 12px;
}

.reviews-link {
  display: inline-flex;
  margin-top: 12px;
  font-size: 13px;
  color: var(--text);
  font-weight: 600;
}

.reviews-placeholder {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.review-card {
  padding: 18px;
  border-radius: 16px;
  background: var(--card);
  border: 1px dashed var(--outline);
}

.about {
  padding: 90px 0;
}

.about-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: 32px;
  font-size: 16px;
  line-height: 1.6;
}

.about-text {
  display: grid;
  gap: 20px;
  max-width: 560px;
}

.about .section-box {
  background: linear-gradient(135deg, #faf8f6 0%, #f5f2ee 100%);
  border-radius: 32px;
  border: 1px solid var(--outline);
  padding: 48px;
  box-shadow: var(--shadow);
}

.about-subtitle {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  color: #2c2428;
}

.about-highlight {
  font-size: 32px;
  font-weight: 800;
  color: var(--secondary);
  letter-spacing: -0.02em;
  margin-right: 6px;
}

.about-highlights {
  display: grid;
  gap: 14px;
}

.about-item {
  position: relative;
  padding-left: 22px;
}

.about-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--secondary);
  box-shadow: 0 0 0 6px rgba(232, 82, 122, 0.12);
}

.about-item h3 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 600;
  color: #2c2428;
}

.about-item p {
  margin: 0;
  color: #6f646a;
}

.about-final {
  margin: 0;
  padding-top: 4px;
  font-weight: 600;
  color: #2c2428;
}

.about-media {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(27, 23, 38, 0.16);
  background: #f2e8ec;
}

.about-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(44, 36, 40, 0.08), rgba(44, 36, 40, 0));
  pointer-events: none;
  z-index: 1;
}

.about-media::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: inherit;
  pointer-events: none;
  z-index: 2;
}

.about-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  position: relative;
  z-index: 0;
}

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

  .about {
    padding: 70px 0;
  }

  .about-text {
    max-width: 100%;
  }
}

.section-box {
  background: var(--card);
  border: 1px solid rgba(28, 27, 34, 0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
}

.cta {
  position: relative;
  padding: 120px 0;
  background: radial-gradient(120% 140% at 0% 0%, #3d1f2e 0%, #241520 45%, #170d14 100%);
  color: #f6eef1;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 60% at 75% 10%, rgba(255, 255, 255, 0.08), transparent 60%);
  pointer-events: none;
}

.cta-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

.cta-content {
  max-width: 520px;
}

.cta-kicker {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #e97f95;
  font-weight: 600;
}

.cta-title {
  margin: 14px 0 18px;
  font-family: "Playfair Display", "Manrope", serif;
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1.05;
  font-weight: 600;
  color: #f8eef2;
}

.cta-title-accent {
  display: inline-block;
  font-style: italic;
  color: #e77b90;
  font-weight: 600;
}

.cta-text {
  margin: 0 0 28px;
  color: rgba(248, 238, 242, 0.72);
  font-size: 16px;
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.07);
  color: #f7eff2;
  backdrop-filter: blur(8px);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.cta-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.22);
}

.cta-btn-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(231, 123, 144, 0.18);
  color: #f6c0cd;
}

.cta-btn-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.cta-btn-icon img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
}

.cta-btn-text {
  display: grid;
  gap: 2px;
  font-size: 12px;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.7);
}

.cta-btn-value {
  font-size: 15px;
  color: #f9f1f4;
  font-weight: 600;
}

.cta-btn-call .cta-btn-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cta-btn-tg {
  background: rgba(71, 130, 189, 0.22);
  border-color: rgba(71, 130, 189, 0.35);
}

.cta-btn-tg .cta-btn-icon {
  background: rgba(71, 130, 189, 0.35);
  color: #d6ecff;
}

.cta-btn-max {
  background: rgba(126, 111, 248, 0.18);
  border-color: rgba(126, 111, 248, 0.35);
}

.cta-btn-max .cta-btn-icon {
  background: rgba(126, 111, 248, 0.32);
}

.cta-form {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  padding: 36px;
  display: grid;
  gap: 16px;
  box-shadow: 0 30px 60px rgba(13, 8, 11, 0.35);
  backdrop-filter: blur(10px);
}

.cta-form-head h3 {
  margin: 0 0 8px;
  font-family: "Playfair Display", "Manrope", serif;
  font-size: 24px;
  font-weight: 600;
}

.cta-form-head p {
  margin: 0;
  color: rgba(248, 238, 242, 0.6);
  font-size: 14px;
}

.cta-field input,
.cta-field textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  padding: 14px 16px;
  color: #f9f1f4;
  font-size: 14px;
  resize: vertical;
}

.cta-field input::placeholder,
.cta-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.cta-field input:focus,
.cta-field textarea:focus {
  outline: none;
  border-color: rgba(231, 123, 144, 0.7);
  box-shadow: 0 0 0 3px rgba(231, 123, 144, 0.2);
}

.cta-submit {
  border: none;
  border-radius: 18px;
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #e8527a, #e77b90);
  box-shadow: 0 8px 24px rgba(232, 82, 122, 0.35);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  letter-spacing: 0.3px;
}

.cta-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(232, 82, 122, 0.5);
}

.cta-consent {
  margin: 0;
  font-size: 12px;
  color: rgba(248, 238, 242, 0.45);
}

.cta-consent a {
  color: rgba(248, 238, 242, 0.7);
  text-decoration: underline;
}

@media (max-width: 960px) {
  .cta {
    padding: 90px 0;
  }

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

  .cta-content {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .cta {
    padding: 70px 0;
  }

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

  .cta-form {
    padding: 24px;
  }
}

.request-form {
  background: var(--card);
  border: 1px solid rgba(28, 27, 34, 0.08);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: grid;
  gap: 16px;
  box-shadow: var(--shadow);
}

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

.request-form input,
.request-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(28, 27, 34, 0.12);
  background: #fff;
  font-size: 14px;
}

.request-form input:focus,
.request-form textarea:focus {
  outline: none;
  border-color: rgba(46, 196, 182, 0.6);
  box-shadow: 0 0 0 3px rgba(46, 196, 182, 0.18);
}

.consent {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
}

.consent input {
  width: 16px;
  height: 16px;
}

.consent a {
  color: var(--text);
  text-decoration: underline;
}

.site-footer {
  margin-top: auto;
  padding: 48px 0 28px;
  background: #121015;
  color: #f5f5f5;
}

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

.footer-title {
  font-weight: 600;
  margin-bottom: 12px;
}

.footer-grid a {
  display: block;
  margin-bottom: 8px;
  opacity: 0.8;
}

.contact-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  background: var(--card);
  border: 1px solid var(--outline);
  border-radius: 20px;
  padding: 20px;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: grid;
  gap: 10px;
}

.contact-list li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 8px;
  align-items: start;
  font-size: 15px;
  color: var(--text);
}

.contact-list span {
  color: var(--muted);
  font-weight: 600;
}

.contact-list a {
  color: inherit;
  text-decoration: none;
}

.contact-list a:hover {
  color: var(--secondary);
}

.contact-map {
  border-radius: 16px;
  overflow: hidden;
  min-height: 320px;
}

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

.footer-brand {
  font-size: 22px;
  background: linear-gradient(135deg, #f5f5f5, var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 24px;
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
}

.floating-actions {
  position: fixed;
  right: 16px;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 40;
}

.floating-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--outline);
}

.floating-btn svg {
  width: 22px;
  height: 22px;
}

.floating-btn.phone {
  background: #111;
  color: #fff;
  border-color: #111;
  position: relative;
}

.floating-btn.phone::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(17, 17, 17, 0.35);
  opacity: 0;
  animation: phone-pulse 2.2s ease-in-out infinite;
}

@keyframes phone-pulse {
  0% {
    transform: scale(0.9);
    opacity: 0.5;
  }
  70% {
    transform: scale(1.25);
    opacity: 0;
  }
  100% {
    transform: scale(1.25);
    opacity: 0;
  }
}

.floating-btn.telegram {
  background: #fff;
  color: #111;
}

.simple-page {
  padding: 80px 0;
}

.text-block {
  max-width: 720px;
  line-height: 1.6;
}

@media (max-width: 920px) {
  .header-grid {
    grid-template-columns: 1fr auto;
  }

  .nav {
    position: absolute;
    inset: 70px 16px auto 16px;
    background: white;
    border-radius: 16px;
    padding: 16px;
    flex-direction: column;
    gap: 12px;
    box-shadow: var(--shadow);
    transform: scale(0.98);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav-item {
    width: 100%;
  }

  .nav-dropdown {
    display: none;
  }

  .nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
  }

  .nav-toggle {
    display: inline-flex;
  }

  .mobile-cart {
    display: inline-flex;
  }

  .header-phone {
    display: none;
  }

  .header-socials {
    display: none;
  }


  .hero-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    align-items: start;
  }

  .hero-copy {
    grid-column: 1 / -1;
    grid-row: auto;
    text-align: center;
    justify-items: center;
  }

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

  .eyebrow {
    font-size: 16px;
    letter-spacing: 3px;
  }

  .lead {
    max-width: 520px;
    text-align: center;
  }

  .hero-info {
    max-width: 100%;
  }

  .hero-promo {
    grid-column: auto;
  }

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

  .popular-grid {
    grid-template-columns: repeat(2, minmax(130px, 160px));
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 6px;
  }

  .floating-actions {
    display: flex;
  }
}

@media (max-width: 700px) {
  .container {
    padding: 0 16px;
  }

  .hero {
    padding: 40px 0 24px;
  }

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

  .hero-side {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 10px;
    align-items: start;
  }

  .hero-promo-wide {
    grid-column: 1 / -1;
  }

  h1 {
    font-size: 36px;
  }

  .simple-page h1 {
    font-family: "Manrope", "Segoe UI", system-ui, sans-serif;
    font-size: clamp(20px, 6.2vw, 28px);
    letter-spacing: 0;
    white-space: nowrap;
    overflow-wrap: normal;
    word-break: normal;
  }

  .lead {
    font-size: 15px;
    line-height: 1.5;
    text-align: center;
  }

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

  .btn {
    width: 100%;
  }

  .hero-tags {
    justify-content: center;
  }

  .hero-info {
    flex-direction: column;
    gap: 0;
    grid-column: auto;
  }

  .hero-info-list {
    max-width: 100%;
  }

  .hero-info-item {
    width: 100%;
    min-height: 48px;
    justify-content: flex-start;
    padding: 10px 12px;
    font-size: 13px;
  }

  .hero-info-item + .hero-info-item::before {
    left: 12px;
    right: 12px;
    top: 0;
    bottom: auto;
    height: 1px;
    width: auto;
  }

  .hero-promo {
    width: 100%;
    grid-column: auto;
    align-items: flex-start;
  }

  .hero-promo-card {
    max-width: 100%;
    aspect-ratio: 3 / 4;
  }

  .hero-info-plain .hero-info-item {
    min-height: 36px;
    padding: 6px 0 10px;
  }

  .hero-info-plain .hero-info-label {
    font-size: 13px;
  }

  .hero-info-plain .hero-info-icon {
    width: 16px;
    height: 16px;
    font-size: 13px;
  }

  .lead {
    max-width: 100%;
  }

  .section {
    padding: 28px 0;
  }

  .section-head {
    gap: 6px;
    margin-bottom: 16px;
  }

  .collection-grid,
  .popular-grid,
  .catalog-grid,
  .benefits-grid,
  .delivery-grid,
  .reviews-placeholder,
  .about-grid,
  .footer-grid,
  .simple-grid,
  .category-grid {
    grid-template-columns: 1fr;
  }

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

  .category-card {
    grid-template-rows: 160px 1fr;
  }

  .category-body {
    padding: 10px;
    gap: 8px;
  }

  .category-top h3 {
    margin: 0;
    font-size: 16px;
    line-height: 1.2;
  }

  .category-body .muted {
    display: none;
  }

  .category-chip {
    display: none;
  }

  .category-actions {
    justify-content: flex-start;
  }

  .category-link {
    font-size: 12px;
  }

  .delivery {
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .benefit {
    padding: 12px;
  }

  .benefit h3 {
    font-size: 14px;
    margin: 0 0 6px;
  }

  .benefit p {
    font-size: 12px;
    line-height: 1.4;
    margin: 0;
  }

  .popular-grid {
    grid-template-columns: repeat(2, minmax(120px, 150px));
    justify-content: center;
    gap: 14px;
  }

  .popular-media {
    max-width: 128px;
    margin: 0 auto;
  }

  .popular-title {
    font-size: 14px;
  }

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

  .product-body {
    padding: 8px;
    gap: 6px;
  }

  .product-body h3 {
    margin: 0;
    font-size: 14px;
    line-height: 1.2;
  }

  .product-actions {
    gap: 4px;
  }

  .product-actions .product-meta {
    font-size: 13px;
    gap: 4px;
  }

  .product-actions .cart-add-form .btn {
    padding: 6px 8px;
    font-size: 12px;
  }

  .popular-placeholder {
    min-height: 130px;
  }

  .popular-overlay {
    display: none;
  }

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

  .promo-control {
    display: none;
  }

  .section-box {
    padding: 20px;
  }

  .request-form {
    padding: 20px;
  }

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

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

  .category-card,
  .collection-card,
  .product-card,
  .benefit,
  .delivery {
    border-radius: 16px;
  }

  .category-media {
    min-height: auto;
    height: auto;
    padding: 12px;
  }

  .category-media img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .product-image {
    height: auto;
    min-height: auto;
    padding: 8px;
  }

  .product-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .category-products .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 0 8px;
  }

  .category-products .product-image {
    height: auto;
    min-height: 0;
    padding: 0;
  }

  .category-products .product-image img {
    width: 100%;
    height: auto;
  }

  .category-products .product-body {
    padding: 8px 8px 10px;
    gap: 6px;
    display: grid;
    justify-items: center;
  }

  .category-products .product-body h3 {
    font-size: 13px;
    -webkit-line-clamp: 1;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: block;
    overflow: hidden;
  }

  .category-products .product-meta {
    font-size: 15px;
  }

  .category-products .price-old {
    font-size: 11px;
  }

  .category-products .cart-add-form .btn {
    min-height: 36px;
    padding: 8px 8px;
    font-size: 13px;
  }

  #product-modal {
    align-items: flex-end;
  }

  #product-modal .modal-backdrop {
    opacity: 0;
    transition: opacity 0.24s ease;
  }

  #product-modal.open .modal-backdrop {
    opacity: 1;
  }

  #product-modal .product-modal-dialog {
    width: 100%;
    max-width: 100%;
    margin: 0;
    border-radius: 20px 20px 0 0;
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
    grid-template-columns: 1fr;
    grid-template-rows: minmax(190px, 35vh) minmax(0, 1fr);
    max-height: 88vh;
    max-height: 88dvh;
    box-shadow: 0 -14px 36px rgba(27, 27, 34, 0.24);
    transform: translateY(105%);
    opacity: 0;
    transition: transform 0.28s ease, opacity 0.28s ease;
  }

  #product-modal .product-modal-dialog.is-dragging {
    transition: none;
  }

  #product-modal.open .product-modal-dialog {
    transform: translateY(0);
    opacity: 1;
  }

  #product-modal .product-modal-dialog::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 42px;
    height: 4px;
    border-radius: 999px;
    background: rgba(27, 27, 34, 0.22);
    z-index: 4;
    pointer-events: none;
  }

  #product-modal .modal-close {
    top: 12px;
    right: 12px;
  }

  #product-modal .modal-media-carousel {
    min-height: 190px;
    max-height: 35vh;
  }

  .modal-nav {
    width: 30px;
    height: 30px;
    font-size: 20px;
  }

  .modal-nav.prev {
    left: 8px;
  }

  .modal-nav.next {
    right: 8px;
  }

  .modal-dot {
    width: 6px;
    height: 6px;
  }

  #product-modal .product-modal-content {
    min-height: 0;
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    overflow: hidden;
  }

  #product-modal .product-modal-body {
    padding: 14px 16px 10px;
    gap: 6px;
    max-height: none;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }

  #product-modal .product-modal-footer {
    padding: 10px 16px calc(14px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(27, 27, 34, 0.08);
    background: #fff;
  }

  #product-modal .product-modal-footer .btn {
    width: 100%;
    min-height: 44px;
    font-size: 14px;
  }

  #product-modal .product-modal-body h3 {
    font-size: 18px;
  }

  #product-modal .modal-price-lg {
    font-size: 20px;
  }

  #product-modal .modal-price-old {
    font-size: 13px;
  }

  #product-modal .product-modal-body #modal-description {
    font-size: 13px;
    line-height: 1.35;
    margin-bottom: 0;
  }

  .reviews-spotlight {
    padding: 20px;
  }

  .reviews-frame {
    padding: 12px;
  }

  .reviews-frame iframe {
    min-height: 420px;
  }

  .about {
    padding-bottom: 40px;
  }

  .site-header {
    position: sticky;
  }

  .nav {
    inset: 64px 12px auto 12px;
  }

  .nav a {
    font-size: 15px;
  }

  .nav {
    max-height: 70vh;
    overflow-y: auto;
  }
}

@media (max-width: 900px) {
  .nav {
    inset: 64px 12px auto 12px;
  }

  .nav.open {
    position: fixed;
  }
}

@media (max-width: 520px) {
  .hero-side {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  }
}

@media (max-width: 900px) {
  .hero-modern {
    background-position: center;
    min-height: 36vh;
  }

  .hero-modern::before {
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.9) 0%,
      rgba(255, 255, 255, 0.74) 44%,
      rgba(255, 255, 255, 0.34) 100%
    );
  }

  .hero-modern-container {
    min-height: 36vh;
    justify-content: start;
    gap: 18px;
    padding-top: 6px;
  }

  .hero-modern-top {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hero-modern-top .hero-promo {
    display: none;
  }

  .hero-modern-top .hero-promo-card {
    max-width: 320px;
    aspect-ratio: 3 / 2;
    transform: none;
  }

  .hero-modern-content {
    max-width: 100%;
    text-align: center;
    justify-items: center;
  }

  .hero-modern-actions {
    width: 100%;
    flex-direction: column;
    align-items: center;
  }

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

  .hero-modern-rating {
    width: min(360px, 100%);
    justify-content: center;
    text-align: center;
  }

  .hero-modern-bottom .hero-info-list {
    max-width: 520px;
    margin: 0 auto;
  }
}

/* ── Balloon detail page ── */

.balloon-page {
  padding-top: 24px;
  padding-bottom: 48px;
  overflow-x: hidden;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 28px;
}

.breadcrumbs a:hover {
  color: var(--text);
}

.breadcrumbs-sep {
  opacity: 0.4;
}

.balloon-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.balloon-gallery-main {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #f0f0ee;
  aspect-ratio: 1;
}

.balloon-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.balloon-gallery-empty {
  display: grid;
  place-items: center;
  color: var(--muted);
  font-weight: 600;
  font-size: 18px;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: #1c1b22;
  font-size: 22px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  transition: background 0.2s, transform 0.2s;
}

.gallery-nav:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.08);
}

.gallery-nav.prev {
  left: 12px;
}

.gallery-nav.next {
  right: 12px;
}

.balloon-gallery-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.gallery-thumb {
  flex: 0 0 72px;
  height: 72px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  background: #f0f0ee;
  padding: 0;
  transition: border-color 0.2s, opacity 0.2s;
  opacity: 0.6;
}

.gallery-thumb.active {
  border-color: var(--secondary);
  opacity: 1;
}

.gallery-thumb:hover {
  opacity: 1;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.balloon-detail-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 8px;
}

.balloon-detail-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.25;
  margin: 0;
}

.balloon-detail-price {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.balloon-price-current {
  font-size: 32px;
  font-weight: 700;
  color: var(--text);
}

.balloon-price-old {
  font-size: 20px;
  color: var(--muted);
  text-decoration: line-through;
}

.balloon-price-badge {
  background: rgba(201, 168, 106, 0.95);
  color: #1b1b1b;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.4px;
}

.balloon-detail-desc {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.balloon-detail-desc p {
  margin: 0;
}

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

.balloon-cart-form {
  flex: 1;
  min-width: 160px;
}

.balloon-add-btn {
  width: 100%;
  padding: 16px 28px;
  font-size: 16px;
}

.balloon-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(28, 27, 34, 0.12);
  background: rgba(255, 255, 255, 0.7);
  color: var(--text);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}

.balloon-share-btn:hover {
  background: #fff;
  box-shadow: 0 6px 18px rgba(27, 27, 27, 0.1);
  transform: translateY(-1px);
}

.balloon-share-btn:active {
  transform: translateY(0);
}

.balloon-share-btn svg {
  flex-shrink: 0;
}

.share-toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: linear-gradient(135deg, #1c1b22 0%, #302c3a 100%);
  color: #fff;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 100;
}

.share-toast.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.balloon-detail-category {
  padding-top: 8px;
}

.balloon-detail-category a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.balloon-detail-category a:hover {
  color: var(--text);
}

.balloon-related {
  margin-top: 64px;
}

.balloon-related-grid {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.balloon-related-grid .product-card {
  display: flex;
  flex-direction: column;
}

.balloon-related-grid .product-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.balloon-related-grid .product-body h3 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.balloon-related-grid .cart-add-form {
  margin-top: auto;
  padding-top: 12px;
}

@media (max-width: 800px) {
  .balloon-detail {
    grid-template-columns: 1fr;
    gap: 28px;
    min-width: 0;
    overflow: hidden;
  }

  .balloon-detail-gallery {
    min-width: 0;
    overflow: hidden;
  }

  .balloon-gallery-main {
    aspect-ratio: 4 / 3;
    max-width: 100%;
  }

  .balloon-gallery-main img {
    max-width: 100%;
  }

  .balloon-gallery-thumbs {
    max-width: 100%;
  }

  .balloon-detail-title {
    font-size: 24px;
  }

  .balloon-price-current {
    font-size: 26px;
  }

  .balloon-detail-actions {
    flex-direction: column;
  }

  .balloon-cart-form {
    width: 100%;
  }

  .balloon-share-btn {
    width: 100%;
    justify-content: center;
  }

  .balloon-related-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }
}

/* ── 404 page ── */

.error-page {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-content {
  text-align: center;
  max-width: 440px;
}

.error-code {
  font-family: "Unbounded", "Manrope", sans-serif;
  font-size: 120px;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.error-content h1 {
  font-size: 24px;
  margin: 16px 0 8px;
}

.error-content p {
  margin: 0 0 28px;
}

.error-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   Category — price filter
   ============================================================ */

.catalog-filter {
  margin: 0 0 24px;
  padding: 18px 22px;
  background: var(--card);
  border: 1px solid var(--outline);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.catalog-filter-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 18px 24px;
}

.catalog-filter-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.catalog-filter-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--muted);
}

.catalog-filter-prices {
  display: flex;
  align-items: center;
  gap: 8px;
}

.catalog-filter-input {
  width: 110px;
  padding: 10px 12px;
  border: 1px solid var(--outline);
  border-radius: 12px;
  font: inherit;
  font-size: 14px;
  background: #fff;
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.catalog-filter-input:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(232, 82, 122, 0.12);
}

.catalog-filter-input::-webkit-outer-spin-button,
.catalog-filter-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.catalog-filter-input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}

.catalog-filter-dash {
  color: var(--muted);
  font-size: 16px;
}

.catalog-filter-select {
  padding: 10px 36px 10px 12px;
  border: 1px solid var(--outline);
  border-radius: 12px;
  font: inherit;
  font-size: 14px;
  background: #fff
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1l5 5 5-5' stroke='%231a1a20' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/></svg>")
    no-repeat right 12px center;
  color: var(--text);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  min-width: 200px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.catalog-filter-select:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(232, 82, 122, 0.12);
}

.catalog-filter-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
}

.catalog-filter-apply {
  padding: 11px 22px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
}

.catalog-filter-reset {
  font-size: 14px;
  color: var(--muted);
  text-decoration: underline;
  text-decoration-style: dashed;
  text-underline-offset: 4px;
  transition: color 0.2s ease;
}

.catalog-filter-reset:hover {
  color: var(--secondary);
}

.catalog-filter-summary {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--outline);
  font-size: 13px;
}

/* Section-head with inline CTA link (e.g. "Все разделы →")
   Heading stays centered as in default .section-head; link is absolutely
   positioned to the right edge of the section. On narrow screens it stacks
   below the subtitle. */
.section-head--with-link {
  position: relative;
  max-width: none;
  width: 100%;
}

.section-head-link {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: var(--radius-pill, 999px);
  border: 1px solid rgba(232, 82, 122, 0.35);
  background: rgba(232, 82, 122, 0.06);
  color: var(--secondary);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.2px;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.section-head-link span {
  transition: transform 0.2s ease;
}

.section-head-link:hover {
  background: var(--secondary);
  color: #fff;
  border-color: var(--secondary);
}

.section-head-link:hover span {
  transform: translateX(3px);
}

@media (max-width: 900px) {
  .section-head-link {
    position: static;
    transform: none;
    margin-top: 12px;
  }
}

.catalog-empty-filter {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 48px 24px;
  text-align: center;
  background: var(--card);
  border: 1px dashed var(--outline);
  border-radius: var(--radius-md);
}

@media (max-width: 720px) {
  .catalog-filter-row {
    gap: 14px;
  }
  .catalog-filter-actions {
    margin-left: 0;
    width: 100%;
  }
  .catalog-filter-apply {
    flex: 1;
  }
  .catalog-filter-select,
  .catalog-filter-input,
  .catalog-filter-prices,
  .catalog-filter-group {
    width: 100%;
    min-width: 0;
  }
}
