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

:root {
  color-scheme: light;
  --bg: #ffffff;
  --bg-soft: #f4f5f7;
  --text: #0a0a0a;
  --muted: #5f6773;
  --accent: #0f172a;
  --accent-soft: #182235;
  --accent-contrast: #ffffff;
  --border: rgba(15, 23, 42, 0.1);
  --border-strong: rgba(255, 255, 255, 0.16);
  --shadow-lg: 0 24px 80px rgba(15, 23, 42, 0.12);
  --shadow-md: 0 18px 48px rgba(15, 23, 42, 0.08);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 16px;
  --container: 1240px;
  --panel-bg: rgba(255, 255, 255, 0.84);
  --panel-solid: #ffffff;
  --header-bg: rgba(255, 255, 255, 0.86);
  --header-bg-strong: rgba(255, 255, 255, 0.92);
  --section-soft-bg: rgba(244, 245, 247, 0.72);
  --chip-bg: #ffffff;
  --input-bg: rgba(255, 255, 255, 0.92);
  --toolbar-bg: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.9));
  --transition: 190ms cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(15, 23, 42, 0.05), transparent 35%),
    linear-gradient(180deg, #ffffff 0%, #fafafa 44%, #ffffff 100%);
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

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

.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;
}

.page-glow {
  position: fixed;
  inset: auto;
  z-index: -1;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  filter: blur(48px);
  opacity: 0.26;
  pointer-events: none;
}

.page-glow--one {
  top: 120px;
  left: -100px;
  background: rgba(15, 23, 42, 0.12);
}

.page-glow--two {
  right: -120px;
  bottom: 160px;
  background: rgba(148, 163, 184, 0.22);
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 72px 0;
}

.section-soft {
  background: var(--section-soft-bg);
}

.panel {
  background: var(--panel-bg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(20px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: var(--header-bg);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition), background-color var(--transition);
}

.site-header.is-scrolled {
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
  background: var(--header-bg-strong);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 84px;
}

.logo-wrap {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  flex-shrink: 0;
}

.logo-mark {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.logo-subtitle {
  font-size: 0.8rem;
  color: var(--muted);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.desktop-nav a,
.mobile-nav a {
  position: relative;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text);
  transition: color var(--transition);
}

.desktop-nav a::after,
.mobile-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.desktop-nav a:hover,
.mobile-nav a:hover {
  color: var(--accent);
}

.desktop-nav a:hover::after,
.mobile-nav a:hover::after {
  transform: scaleX(1);
}

.burger-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: var(--panel-solid);
  border: 1px solid var(--border);
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition),
    background-color var(--transition);
}

.burger-button:hover {
  transform: translateY(-2px);
  border-color: rgba(15, 23, 42, 0.18);
  box-shadow: var(--shadow-md);
}

.burger-button {
  display: none;
  flex-direction: column;
  gap: 6px;
}

.burger-button span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform var(--transition), opacity var(--transition);
}

.burger-button.is-open span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.burger-button.is-open {
  background: var(--accent);
  border-color: var(--accent);
}

.burger-button.is-open span {
  background: #ffffff;
}

.burger-button.is-open span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 26px;
  align-items: stretch;
}

.hero-copy,
.hero-visual {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  border-radius: var(--radius-xl);
}

.hero-copy {
  padding: clamp(32px, 5vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.02), transparent 32%),
    radial-gradient(circle at bottom right, rgba(148, 163, 184, 0.22), transparent 32%);
  pointer-events: none;
}

.eyebrow-row {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.eyebrow-pill,
.section-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(15, 23, 42, 0.06);
}

.section-kicker--light {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
}

.eyebrow-note {
  color: var(--muted);
  font-weight: 600;
}

.hero-copy h1 {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 13ch;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.35rem, 5.3vw, 4.35rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.hero-text {
  position: relative;
  z-index: 1;
  margin: 24px 0 32px;
  max-width: 34rem;
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--muted);
}

.hero-actions-row {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background-color var(--transition),
    color var(--transition),
    border-color var(--transition);
}

.button:hover {
  box-shadow:
    0 0 0 1px rgba(15, 23, 42, 0.12) inset,
    0 10px 24px rgba(15, 23, 42, 0.08);
}

.button-primary {
  color: var(--accent-contrast);
  background: var(--accent);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.22);
}

.button-primary:hover {
  background: #273449;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.22) inset,
    0 0 0 2px rgba(15, 23, 42, 0.12),
    0 16px 32px rgba(15, 23, 42, 0.24);
}

.button-secondary {
  color: var(--text);
  background: var(--panel-solid);
  border: 1px solid var(--border);
}

.button-secondary:hover {
  color: var(--text);
  background: #f3f5f8;
  border-color: rgba(15, 23, 42, 0.2);
  box-shadow:
    0 0 0 1px rgba(15, 23, 42, 0.06) inset,
    0 10px 24px rgba(15, 23, 42, 0.08);
}

.button-light {
  color: var(--accent);
  background: var(--panel-solid);
}

.button-light:hover {
  background: #eef2f7;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.28) inset,
    0 10px 24px rgba(15, 23, 42, 0.08);
}

.button-full {
  width: 100%;
}

.hero-visual {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(15, 23, 42, 0.18)),
    linear-gradient(135deg, #dce2ea 0%, #f8fafc 42%, #cfd7e3 100%);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.hero-visual.has-image,
.promo-visual.has-image,
.media-shell.has-image {
  background-size: cover;
  background-position: center;
}

#heroVisual.has-image {
  background-color: #eef2f7;
  background-size: contain;
  background-position: center center, center center;
  background-repeat: no-repeat, no-repeat;
}

.hero-visual::before,
.promo-visual::before,
.media-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 38%),
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.08) 0,
      rgba(255, 255, 255, 0.08) 10px,
      rgba(0, 0, 0, 0.02) 10px,
      rgba(0, 0, 0, 0.02) 20px
    );
  pointer-events: none;
}

.hero-visual.has-image::before,
.promo-visual.has-image::before,
.media-shell.has-image::before {
  background: none;
}

.media-placeholder {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(14px);
}

.media-placeholder--dark {
  color: #ffffff;
  background: rgba(15, 23, 42, 0.46);
  border-color: var(--border-strong);
}

.media-placeholder strong {
  font-size: 1rem;
}

.media-placeholder span {
  font-size: 0.84rem;
  color: inherit;
  opacity: 0.76;
}

.category-card .media-placeholder span {
  display: inline-block;
  white-space: nowrap;
}

.hero-floating {
  position: absolute;
  z-index: 2;
  min-width: 220px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
}

.hero-floating--top {
  top: 24px;
  left: 24px;
}

.hero-floating--bottom {
  margin-left: 18px;
  right: 24px;
  bottom: 24px;
}

.hero-floating__label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.hero-floating__text {
  display: block;
  line-height: 1.45;
}

.hero-floating__text--compact {
  font-size: 15px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-head h2,
.promo-copy h2,
.quick-order-copy h2,
.newsletter-copy h2 {
  margin: 14px 0 0;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.section-head p,
.promo-copy p,
.quick-order-copy p,
.footer-brand p {
  max-width: 34rem;
  margin: 0;
  line-height: 1.75;
  color: var(--muted);
}

.newsletter-copy .button {
  margin-top: 34px;
}

.text-link {
  font-weight: 700;
  color: var(--accent);
}

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

.category-card,
.product-card,
.review-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--panel-solid);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.category-card:hover,
.product-card:hover,
.review-card:hover {
  transform: translateY(-6px);
  border-color: rgba(15, 23, 42, 0.16);
  box-shadow: 0 28px 64px rgba(15, 23, 42, 0.12);
}

.category-card .media-shell {
  min-height: 280px;
}

.category-body,
.product-body,
.review-body {
  padding: 20px;
}

.category-body,
.product-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.category-body h3,
.product-body h3,
.review-body h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
}

.category-body p,
.review-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.category-body p {
  flex: 1;
}

.category-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--accent);
}

.category-link:hover {
  color: #000000;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.category-link::after {
  content: "→";
}

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

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

.popular-grid .product-card:nth-child(1) {
  grid-column: span 5;
}

.popular-grid .product-card:nth-child(2) {
  grid-column: span 3;
}

.popular-grid .product-card:nth-child(3) {
  grid-column: span 4;
}

.popular-grid .product-card:nth-child(4) {
  grid-column: span 4;
}

.popular-grid .product-card:nth-child(5) {
  grid-column: span 4;
}

.popular-grid .product-card:nth-child(6) {
  grid-column: span 4;
}

.product-card .media-shell {
  min-height: 360px;
}

.media-shell {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.08), rgba(255, 255, 255, 0.26)),
    linear-gradient(135deg, #e4e8ef 0%, #fafafa 46%, #d6dde8 100%);
}

.product-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 23, 42, 0.08);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.product-meta {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  flex: 1;
}

.product-meta > div {
  flex: 1;
  min-width: 0;
}

.product-body h3 {
  display: -webkit-box;
  min-height: 2.8em;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-meta p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  display: -webkit-box;
  min-height: 3.3em;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.price {
  flex-shrink: 0;
  font-size: 1.08rem;
  font-weight: 800;
  text-align: right;
}

.promo-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: 24px;
  padding: clamp(28px, 4vw, 38px);
  border-radius: var(--radius-xl);
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 34%),
    linear-gradient(135deg, #0f172a 0%, #111827 55%, #1e293b 100%);
  box-shadow: var(--shadow-lg);
}

.promo-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.promo-copy p {
  margin: 22px 0 30px;
  color: rgba(255, 255, 255, 0.78);
}

.promo-visual {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(15, 23, 42, 0.18)),
    linear-gradient(135deg, #7b8798 0%, #e5e7eb 42%, #99a2af 100%);
}

.quick-order-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 26px;
  align-items: start;
}

.quick-order-copy,
.quick-order-form,
.newsletter {
  border-radius: var(--radius-xl);
}

.quick-order-copy {
  padding: clamp(28px, 4vw, 42px);
  background: transparent;
}

.quick-order-points {
  margin: 24px 0 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.8;
}

.quick-order-form,
.newsletter {
  padding: clamp(26px, 4vw, 38px);
}

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

.field span {
  font-size: 0.92rem;
  font-weight: 700;
}

.field input,
.field textarea,
.newsletter-field input {
  width: 100%;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: var(--input-bg);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.field input:focus,
.field textarea:focus,
.newsletter-field input:focus {
  outline: none;
  border-color: rgba(15, 23, 42, 0.28);
  box-shadow: 0 0 0 4px rgba(15, 23, 42, 0.06);
}

.field textarea {
  resize: vertical;
  min-height: 120px;
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  font-size: 0.95rem;
  color: var(--muted);
}

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

.review-card {
  padding: 24px;
}

.review-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.review-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-weight: 800;
  color: var(--accent-contrast);
  background: var(--accent);
}

.review-city {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.92rem;
}

.newsletter {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, auto);
  gap: 22px;
  align-items: center;
}

.newsletter-form {
  display: flex;
  gap: 12px;
}

.newsletter-field {
  flex: 1;
}

.site-footer {
  padding: 28px 0 48px;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.3fr) repeat(4, minmax(140px, 1fr));
  gap: 24px;
}

.footer-grid h3 {
  margin: 0 0 14px;
  font-size: 1rem;
}

.footer-grid a,
.footer-grid span,
.footer-brand p {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  line-height: 1.7;
}

.footer-grid a:hover {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.footer-social {
  display: block !important;
  width: fit-content;
  padding: 0;
  margin-bottom: 12px;
  font-weight: 800;
  background: none;
  box-shadow: none;
}

.footer-social--whatsapp {
  color: #25d366 !important;
}

.footer-social--instagram {
  color: #d62976 !important;
}

.footer-social--whatsapp:hover {
  color: #128c4a !important;
  text-decoration-color: rgba(18, 140, 74, 0.48);
}

.footer-social--instagram:hover {
  color: #b51762 !important;
  text-decoration-color: rgba(181, 23, 98, 0.48);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}

.footer-bottom__label {
  color: var(--muted);
  font-weight: 700;
}

.footer-site-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff !important;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.footer-site-link:hover {
  color: #ffffff !important;
  background: #273449;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.22) inset,
    0 0 0 2px rgba(15, 23, 42, 0.12),
    0 16px 32px rgba(15, 23, 42, 0.24);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 60;
  min-width: 220px;
  max-width: calc(100% - 40px);
  padding: 14px 18px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(15, 23, 42, 0.92);
  box-shadow: var(--shadow-md);
  transform: translate(-50%, 24px);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  text-align: center;
}

.toast.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.noscript-note {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 70;
  padding: 12px 16px;
  border-radius: 16px;
  color: #ffffff;
  background: #b91c1c;
  text-align: center;
}

.reveal,
.reveal.is-visible {
  opacity: 1;
  transform: none;
  transition: none;
}

.header-side {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-cta {
  min-height: 46px;
  padding: 0 20px;
}

.mobile-nav .mobile-menu__cta {
  width: 100%;
  margin-top: 6px;
  color: #ffffff;
}

.mobile-nav .mobile-menu__cta::after {
  display: none;
}

.mobile-nav .mobile-menu__cta:hover {
  color: #ffffff;
}

.product-link {
  display: block;
  padding: 0;
  border: 0;
  color: inherit;
  text-align: left;
  background-color: transparent;
}

button.product-link {
  width: 100%;
}

.product-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: auto;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.catalog-toolbar {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
}

.filter-chip {
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: var(--chip-bg);
  color: var(--text);
  font-weight: 700;
  transition:
    transform var(--transition),
    border-color var(--transition),
    background-color var(--transition),
    color var(--transition),
    box-shadow var(--transition);
}

.filter-chip:hover {
  color: var(--text);
  background: #f3f5f8;
  border-color: rgba(15, 23, 42, 0.24);
  box-shadow:
    0 0 0 1px rgba(15, 23, 42, 0.06) inset,
    0 10px 24px rgba(15, 23, 42, 0.08);
}

.filter-chip.is-active {
  color: var(--accent-contrast);
  background: var(--accent);
  border-color: var(--accent);
}

.catalog-grid {
  align-items: start;
}

.catalog-summary {
  font-size: 0.95rem;
  color: var(--muted);
}

.catalog-empty {
  padding: 22px 24px;
  border-radius: 22px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(244, 245, 247, 0.7);
  color: var(--muted);
}

.section-copy {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.promo-copy--cards {
  display: grid;
  gap: 14px;
  align-content: center;
}

.mini-panel {
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.mini-panel strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.mini-panel span {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.contact-card {
  display: grid;
  gap: 14px;
}

.store-location__label {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.location-map__head strong {
  font-size: 1rem;
  line-height: 1.45;
}

.location-map__head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.location-map {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 28px;
  background: rgba(244, 245, 247, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}

.location-map__head {
  display: grid;
  gap: 6px;
}

.location-map__delivery {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.08);
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 700;
}

.location-map__frame {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background:
    radial-gradient(circle at top left, rgba(15, 23, 42, 0.06), transparent 54%),
    linear-gradient(180deg, #f0f3f7 0%, #dfe5ee 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.location-map__frame iframe {
  display: block;
  width: 100%;
  height: clamp(248px, 30vw, 328px);
  border: 0;
}

.product-page .section:first-child {
  padding-top: 46px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: var(--muted);
}

.back-link {
  font-weight: 700;
  color: var(--accent);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: 24px;
  align-items: start;
}

.detail-gallery,
.detail-summary {
  border-radius: var(--radius-xl);
  padding: 24px;
}

.detail-main-media {
  margin-bottom: 16px;
}

.detail-main-media__image {
  height: 560px;
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.08), rgba(255, 255, 255, 0.26)),
    linear-gradient(135deg, #e4e8ef 0%, #fafafa 46%, #d6dde8 100%);
}

.detail-main-media__img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.detail-main-media__image.is-portrait .detail-main-media__img {
  object-fit: contain;
}

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

.detail-thumb {
  padding: 0;
  min-height: 96px;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background-color: var(--panel-solid);
  overflow: hidden;
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.detail-thumb__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.detail-thumb.is-portrait .detail-thumb__image {
  object-fit: contain;
  padding: 6px;
}

.detail-thumb:hover,
.detail-thumb.is-active {
  border-color: rgba(15, 23, 42, 0.24);
  box-shadow:
    0 0 0 1px rgba(15, 23, 42, 0.08) inset,
    0 8px 20px rgba(15, 23, 42, 0.08);
}

.detail-summary h1 {
  margin: 14px 0 12px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.detail-price {
  margin: 0 0 18px;
  font-size: 1.4rem;
  font-weight: 800;
}

.detail-copy {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.detail-points {
  margin: 24px 0 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.8;
}

.detail-actions {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

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

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

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

  .popular-grid .product-card:nth-child(n) {
    grid-column: auto;
  }

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

@media (max-width: 960px) {
  .desktop-nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .burger-button {
    display: inline-flex;
  }

  .mobile-menu {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows var(--transition), border-top-color var(--transition);
    border-top: 1px solid transparent;
  }

  .mobile-menu.is-open {
    grid-template-rows: 1fr;
    border-top-color: var(--border);
  }

  .mobile-nav {
    min-height: 0;
    overflow: hidden;
    display: grid;
    gap: 18px;
    padding: 0 20px;
  }

  .mobile-menu.is-open .mobile-nav {
    padding: 20px;
  }

  .hero-grid,
  .promo-banner,
  .quick-order-grid,
  .newsletter,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-visual {
    min-height: 540px;
  }

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

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

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

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

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

  .section {
    padding: 56px 0;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(1.95rem, 8vw, 2.85rem);
  }

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

  .category-grid {
    display: grid;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(240px, 82vw);
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 6px;
    scroll-snap-type: x proximity;
  }

  .category-grid::-webkit-scrollbar,
  .filter-bar::-webkit-scrollbar {
    display: none;
  }

  .category-card {
    scroll-snap-align: start;
  }

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

  .hero-floating {
    min-width: auto;
  }

  .hero-floating--top {
    display: none;
  }

  .hero-floating--bottom {
    margin-left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .category-card .media-shell,
  .product-card .media-shell,
  .promo-visual,
  .hero-visual {
    min-height: 280px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .catalog-toolbar {
    position: sticky;
    top: 74px;
    z-index: 12;
    padding: 12px 0 10px;
    isolation: isolate;
  }

  .catalog-toolbar::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
    background: var(--toolbar-bg);
    backdrop-filter: blur(14px);
    z-index: -1;
    pointer-events: none;
  }

  .filter-bar {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .catalog-summary {
    font-size: 0.88rem;
  }

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

  .catalog-grid .product-card .media-shell {
    min-height: 190px;
  }

  .catalog-grid .product-body {
    padding: 14px;
  }

  .catalog-grid .product-meta {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 12px;
  }

  .catalog-grid .product-body h3 {
    min-height: 2.7em;
    font-size: 1rem;
  }

  .catalog-grid .product-meta p {
    min-height: 2.9em;
    font-size: 0.9rem;
  }

  .catalog-grid .price {
    text-align: left;
    font-size: 1rem;
  }

  .catalog-grid .product-actions {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .catalog-grid .button {
    min-height: 44px;
    padding: 0 18px;
    font-size: 0.92rem;
  }

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

  .detail-main-media__image {
    height: 320px;
  }

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

  .button {
    min-height: 50px;
  }

  .burger-button {
    min-height: 0;
  }

  :root {
    --transition: 120ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
    transition-delay: 0ms;
  }

  .reveal.is-visible {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 420px) {
  .catalog-grid {
    gap: 10px;
  }

  .catalog-grid .product-card {
    border-radius: 22px;
  }

  .catalog-grid .product-card .media-shell {
    min-height: 158px;
  }

  .catalog-grid .product-tag {
    top: 10px;
    left: 10px;
    min-height: 28px;
    padding: 0 10px;
    font-size: 0.68rem;
  }

  .catalog-grid .media-placeholder {
    left: 10px;
    right: 10px;
    bottom: 10px;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 16px;
  }

  .catalog-grid .media-placeholder strong {
    font-size: 0.84rem;
  }

  .catalog-grid .media-placeholder span {
    font-size: 0.72rem;
  }

  .catalog-grid .product-body {
    padding: 12px;
  }

  .catalog-grid .product-body h3 {
    min-height: 2.6em;
    font-size: 0.95rem;
  }

  .catalog-grid .product-meta p {
    min-height: 2.8em;
    font-size: 0.84rem;
  }

  .catalog-grid .price {
    font-size: 0.96rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
    scroll-behavior: auto !important;
  }
}

html {
  scroll-behavior: auto;
}

*,
*::before,
*::after {
  animation: none !important;
  transition: none !important;
}

.button:hover,
.burger-button:hover,
.category-card:hover,
.product-card:hover,
.review-card:hover,
.filter-chip:hover,
.detail-thumb:hover,
.detail-thumb.is-active {
  transform: none !important;
}
