:root {
  color-scheme: light dark;
  --bg: #f6f7fb;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #ffffff;
  --border: rgba(17, 24, 39, 0.1);
  --text: #111827;
  --muted: rgba(17, 24, 39, 0.62);
  --primary: #7c3aed;
  --primary-deep: #5b21b6;
  --accent: #10b981;
  --accent-deep: #047857;
  --shadow: 0 18px 55px rgba(17, 24, 39, 0.12);
  --shadow-soft: 0 8px 24px rgba(17, 24, 39, 0.08);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: min(1240px, calc(100% - 24px));
  --font: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Tahoma, Arial, sans-serif;
  --font-display: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Tahoma, Arial, sans-serif;
}

html[data-theme="violet"] {
  --primary: #7c3aed;
  --primary-deep: #5b21b6;
  --accent: #10b981;
  --accent-deep: #047857;
}

html[data-theme="rose"] {
  --primary: #ec4899;
  --primary-deep: #be185d;
  --accent: #f59e0b;
  --accent-deep: #b45309;
}

html[data-theme="forest"] {
  --primary: #16a34a;
  --primary-deep: #166534;
  --accent: #0ea5e9;
  --accent-deep: #0369a1;
}

html[data-theme="midnight"] {
  color-scheme: dark;
  --bg: #0b1220;
  --surface: rgba(17, 24, 39, 0.72);
  --surface-strong: rgba(17, 24, 39, 0.92);
  --border: rgba(148, 163, 184, 0.14);
  --text: #e5e7eb;
  --muted: rgba(229, 231, 235, 0.68);
  --primary: #8b5cf6;
  --primary-deep: #6d28d9;
  --accent: #22c55e;
  --accent-deep: #16a34a;
  --shadow: 0 18px 55px rgba(0, 0, 0, 0.4);
  --shadow-soft: 0 10px 28px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 16%, color-mix(in srgb, var(--primary) 18%, transparent), transparent 40%),
    radial-gradient(circle at 84% 0%, color-mix(in srgb, var(--accent) 16%, transparent), transparent 38%),
    radial-gradient(circle at 84% 92%, color-mix(in srgb, var(--primary-deep) 14%, transparent), transparent 46%),
    linear-gradient(180deg, color-mix(in srgb, var(--bg) 12%, white) 0%, var(--bg) 100%);
  color: var(--text);
  font-family: var(--font);
}

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

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

button,
input,
textarea {
  font: inherit;
}

.phone-inline {
  display: inline-block;
  direction: ltr;
  unicode-bidi: isolate;
  text-align: left;
  white-space: nowrap;
}

.app-shell {
  width: var(--container);
  margin: 0 auto;
  padding: 14px 0 140px;
}

.topbar {
  position: sticky;
  top: 14px;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.topbar__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.topbar__logo {
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  overflow: hidden;
}

.topbar__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transform: scale(1.72) translateY(2px);
  transform-origin: center;
}

.topbar__titles {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.topbar__label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.topbar__name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 900;
}

.topbar__actions {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.theme-switcher {
  position: relative;
}

.topbar__theme {
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
  font-weight: 900;
  cursor: pointer;
}

.theme-menu {
  position: absolute;
  inset-inline-end: 0;
  top: calc(100% + 10px);
  z-index: 90;
  display: grid;
  gap: 8px;
  min-width: 180px;
  padding: 12px;
  border: 1px solid rgba(17, 24, 39, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.theme-menu.is-hidden {
  display: none;
}

.theme-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  font-weight: 900;
  cursor: pointer;
}

.theme-option.is-active {
  border-color: rgba(124, 58, 237, 0.36);
  border-color: color-mix(in srgb, var(--primary) 50%, transparent);
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.12), rgba(16, 185, 129, 0.1));
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--primary) 14%, white),
    color-mix(in srgb, var(--accent) 10%, white)
  );
}

.topbar__whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--accent-deep);
  font-weight: 900;
}

.topbar__whatsapp-label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.topbar__order {
  min-height: 44px;
  padding: 0 16px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  color: #fff;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 16px 30px rgba(124, 58, 237, 0.22);
  box-shadow: 0 16px 30px color-mix(in srgb, var(--primary) 22%, transparent);
}

.eyebrow {
  margin: 0 0 12px;
  color: rgba(91, 33, 182, 0.86);
  color: color-mix(in srgb, var(--primary-deep) 86%, transparent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  overflow: hidden;
  margin-top: 16px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(243, 244, 255, 0.82));
  box-shadow: var(--shadow);
}

.hero__glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(14px);
  opacity: 0.7;
  pointer-events: none;
}

.hero__glow--primary {
  top: -70px;
  right: -60px;
  width: 260px;
  height: 260px;
  background: rgba(124, 58, 237, 0.18);
  background: color-mix(in srgb, var(--primary) 18%, transparent);
}

.hero__glow--accent {
  bottom: -70px;
  left: -40px;
  width: 280px;
  height: 280px;
  background: rgba(16, 185, 129, 0.14);
  background: color-mix(in srgb, var(--accent) 14%, transparent);
}

.hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(260px, 360px);
  gap: 18px;
  align-items: start;
}

.hero__headline {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 950;
  letter-spacing: -0.02em;
}

.hero__subtitle {
  width: min(62ch, 100%);
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: none;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
}

.button--primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  color: #fff;
  box-shadow: 0 16px 30px rgba(124, 58, 237, 0.22);
  box-shadow: 0 16px 30px color-mix(in srgb, var(--primary) 22%, transparent);
}

.button--secondary {
  border: 1px solid rgba(17, 24, 39, 0.12);
  background: rgba(255, 255, 255, 0.76);
  color: var(--text);
  box-shadow: none;
}

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

.stat-card {
  padding: 14px 16px;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 10px 22px rgba(17, 24, 39, 0.05);
}

.stat-card span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.stat-card strong {
  display: block;
  margin-top: 10px;
  font-size: 26px;
  font-weight: 950;
}

.hero__panel {
  padding: 18px;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.7);
}

.hero__panel-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 950;
}

.hero__steps {
  margin: 14px 0 0;
  padding-inline-start: 18px;
  color: var(--muted);
  line-height: 1.9;
}

.hero__panel-footer {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(17, 24, 39, 0.08);
}

.hero__panel-label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__panel-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--accent-deep);
  font-weight: 900;
}

.hero--v3 {
  padding: 18px;
}

.hero__content--v3 {
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 18px;
  align-items: center;
}

.hero__copy--v3 {
  display: grid;
  gap: 14px;
  align-content: center;
}

.hero__subtitle--v3 {
  width: auto;
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
  display: block;
}

.hero__actions--v3 {
  margin-top: 0;
}

.hero__contact-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--accent-deep);
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(17, 24, 39, 0.08);
}

.hero__contact-bar .hero__contact-label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.hero__media-card {
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 38px rgba(17, 24, 39, 0.08);
}

.hero-slider {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(180deg, #fffdfc, #f7f0ea);
  aspect-ratio: 1600 / 702;
}

.hero-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.02) 0%, rgba(17, 24, 39, 0.08) 100%);
  pointer-events: none;
}

.hero-slider__track {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slider__slide {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 12px;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 360ms ease, transform 480ms ease;
  pointer-events: none;
}

.hero-slider__slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.hero-slider__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #ffffff;
}

.hero-slider__chrome {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  pointer-events: none;
}

.hero-slider__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--accent-deep);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.12);
  pointer-events: auto;
}

.hero-slider__nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  pointer-events: auto;
}

.hero-slider__nav-button {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--accent-deep);
  font-size: 24px;
  line-height: 1;
  box-shadow: 0 14px 30px rgba(17, 24, 39, 0.12);
  backdrop-filter: blur(14px);
}

.hero-slider__dots {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-slider__dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  box-shadow: 0 8px 20px rgba(17, 24, 39, 0.16);
  transition: transform 180ms ease, background-color 180ms ease, width 180ms ease;
}

.hero-slider__dot.is-active {
  width: 30px;
  background: rgba(255, 255, 255, 0.96);
}

.hero-slider.is-static .hero-slider__chrome,
.hero-slider.is-static .hero-slider__dots {
  display: none;
}

.hero__media-frame {
  overflow: hidden;
  border-radius: 20px;
  background: #ffffff;
  aspect-ratio: 1600 / 702;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__media-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #ffffff;
}

.hero__panel--floating {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  width: min(240px, calc(100% - 36px));
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}

.hero__panel--compact {
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}

.hero__panel--inline {
  position: static;
  width: auto;
}

.hero__panel--compact > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 30px rgba(17, 24, 39, 0.08);
  cursor: pointer;
  user-select: none;
  backdrop-filter: blur(14px);
}

.hero__panel--compact > summary::-webkit-details-marker {
  display: none;
}

.hero__panel--compact > summary::marker {
  content: "";
}

.hero__panel--compact > summary::after {
  content: "▾";
  color: var(--muted);
  font-size: 14px;
  transition: transform 160ms ease;
}

.hero__panel--compact[open] > summary::after {
  transform: rotate(180deg);
}

.hero__panel-summary-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 950;
}

.hero__panel-summary-hint {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero__panel-body {
  margin-top: 8px;
  padding: 14px 16px 16px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 40px rgba(17, 24, 39, 0.1);
  backdrop-filter: blur(16px);
}

.hero__panel-body .hero__steps {
  margin-top: 0;
  font-size: 14px;
  line-height: 1.8;
}

.hero__panel--inline .hero__panel-body {
  padding: 12px 14px 14px;
}

.hero__panel-body .hero__panel-footer {
  margin-top: 14px;
  padding-top: 14px;
}

.layout {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.filters-panel,
.results-panel,
.filter-panel,
.results-bar,
.product-card,
.featured-strip,
.empty-state {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.filters-panel {
  padding: 16px;
  display: grid;
  gap: 14px;
  align-content: start;
  position: sticky;
  top: 92px;
  max-height: calc(100vh - 112px);
  overflow-y: auto;
  scrollbar-gutter: stable;
  height: fit-content;
}

.filters-panel::-webkit-scrollbar {
  width: 10px;
}

.filters-panel::-webkit-scrollbar-track {
  background: rgba(17, 24, 39, 0.06);
  border-radius: 999px;
}

.filters-panel::-webkit-scrollbar-thumb {
  background: color-mix(in srgb, var(--primary) 22%, rgba(17, 24, 39, 0.18));
  border-radius: 999px;
}

.filters-panel__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.filters-panel h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 950;
  letter-spacing: -0.02em;
}

.filters-panel__note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.text-button {
  padding: 0;
  border: none;
  background: transparent;
  color: rgba(91, 33, 182, 0.92);
  color: color-mix(in srgb, var(--primary-deep) 92%, transparent);
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
  white-space: nowrap;
}

.text-button--icon {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid rgba(17, 24, 39, 0.1);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 22px rgba(17, 24, 39, 0.06);
}

.text-button--icon:hover {
  background: rgba(255, 255, 255, 0.9);
}

.text-button--icon:focus-visible {
  outline: 3px solid rgba(124, 58, 237, 0.28);
  outline-offset: 2px;
}

.text-button--icon span {
  font-size: 18px;
  line-height: 1;
}

.search-field {
  display: grid;
  gap: 10px;
}

.search-field span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.search-field input {
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
}

.filter-panel {
  padding: 14px;
  box-shadow: none;
  background: rgba(255, 255, 255, 0.62);
}

.filter-panel.is-hidden {
  display: none;
}

html[data-theme="midnight"] .topbar,
html[data-theme="midnight"] .theme-menu {
  background: rgba(17, 24, 39, 0.74);
  border-color: rgba(148, 163, 184, 0.18);
}

html[data-theme="midnight"] .topbar__logo,
html[data-theme="midnight"] .topbar__whatsapp,
html[data-theme="midnight"] .topbar__theme,
html[data-theme="midnight"] .theme-option,
html[data-theme="midnight"] .filter-panel,
html[data-theme="midnight"] .search-field input,
html[data-theme="midnight"] .drawer-panel,
html[data-theme="midnight"] .composer-panel {
  background: rgba(17, 24, 39, 0.82);
  border-color: rgba(148, 163, 184, 0.18);
}

html[data-theme="midnight"] .tag {
  background: rgba(148, 163, 184, 0.12);
  color: rgba(229, 231, 235, 0.82);
}

html[data-theme="midnight"] .badge {
  background: rgba(34, 197, 94, 0.16);
  color: rgba(134, 239, 172, 0.96);
}

html[data-theme="midnight"] .badge--featured {
  background: rgba(139, 92, 246, 0.18);
  color: rgba(221, 214, 254, 0.96);
}

.filter-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.filter-panel h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 950;
}

.chip-row,
.active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filters-panel .chip-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.filter-chip,
.active-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  cursor: pointer;
  transition: transform 140ms ease, border-color 140ms ease;
}

.filters-panel .filter-chip {
  width: 100%;
  justify-content: space-between;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 14px;
  text-align: right;
  box-shadow: 0 6px 14px rgba(17, 24, 39, 0.04);
}

.filter-chip__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.filter-chip__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.05);
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.filter-chip:hover,
.filter-chip.is-active {
  transform: translateY(-1px);
  border-color: rgba(124, 58, 237, 0.36);
}

.filter-chip.is-active {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.14), rgba(16, 185, 129, 0.1));
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--primary) 14%, white),
    color-mix(in srgb, var(--accent) 10%, white)
  );
}

.filter-chip.is-active .filter-chip__count {
  background: rgba(255, 255, 255, 0.78);
  color: color-mix(in srgb, var(--primary-deep) 84%, transparent);
}

.results-panel {
  padding: 16px;
}

.results-bar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  margin-bottom: 12px;
  border-radius: 20px;
}

.results-summary {
  margin: 0;
  font-size: 14px;
  font-weight: 900;
}

.active-chip {
  min-height: 32px;
  background: rgba(124, 58, 237, 0.08);
  color: rgba(91, 33, 182, 0.92);
  background: color-mix(in srgb, var(--primary) 10%, white);
  color: color-mix(in srgb, var(--primary-deep) 92%, transparent);
  font-size: 12px;
  font-weight: 900;
  cursor: default;
}

.featured-strip {
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
  padding: 14px;
}

.featured-strip.is-visible {
  display: grid;
}

.featured-card {
  padding: 14px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
}

.featured-card p,
.product-card p,
.site-footer p {
  margin: 0;
}

.featured-card__label {
  color: rgba(4, 120, 87, 0.92);
  color: color-mix(in srgb, var(--accent-deep) 92%, transparent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.featured-card h3 {
  margin: 10px 0 6px;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 950;
  letter-spacing: -0.02em;
}

.featured-card__meta {
  color: var(--muted);
  line-height: 1.7;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-auto-rows: var(--product-card-height);
  gap: 16px;
  margin-top: 14px;
  align-items: stretch;
  --product-card-height: clamp(520px, 62vh, 660px);
}

.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  cursor: pointer;
  overflow: hidden;
  content-visibility: auto;
  contain-intrinsic-size: 620px;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

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

.product-card.is-spotlight {
  border-color: rgba(124, 58, 237, 0.45);
  box-shadow: 0 22px 50px rgba(124, 58, 237, 0.14);
}

.product-card__image {
  position: relative;
  aspect-ratio: 1.05;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.06), rgba(16, 185, 129, 0.06));
}

.product-card__image img,
.product-card__image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-trigger {
  position: absolute;
  inset-inline-start: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.72);
  color: #fff;
  box-shadow: 0 14px 28px rgba(17, 24, 39, 0.18);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.media-trigger__icon {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 12px;
}

.media-trigger__label {
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.media-trigger--thumb {
  inset-inline-start: 8px;
  bottom: 8px;
  min-height: 34px;
  padding: 0 12px;
}

.product-card__body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
  gap: 12px;
  padding: 16px;
}

.product-card__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-shrink: 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.12);
  color: rgba(4, 120, 87, 0.92);
  background: color-mix(in srgb, var(--accent) 14%, transparent);
  color: color-mix(in srgb, var(--accent-deep) 92%, transparent);
  font-size: 12px;
  font-weight: 900;
}

.badge--featured {
  background: rgba(124, 58, 237, 0.12);
  color: rgba(91, 33, 182, 0.92);
  background: color-mix(in srgb, var(--primary) 14%, transparent);
  color: color-mix(in srgb, var(--primary-deep) 92%, transparent);
}

.product-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 950;
  letter-spacing: -0.02em;
  line-height: 1.25;
  flex-shrink: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.product-card__description {
  color: var(--muted);
  line-height: 1.85;
  flex: 1 1 auto;
  min-height: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-height: 68px;
  overflow: hidden;
  flex-shrink: 0;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.05);
  color: rgba(17, 24, 39, 0.72);
  font-size: 12px;
}

.product-card__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.product-card__pricing {
  display: grid;
  gap: 8px;
}

.product-card__actions {
  display: grid;
  justify-items: end;
  gap: 8px;
}

.price {
  font-size: 26px;
  font-weight: 950;
}

.price small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.variant-hint {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.cart-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.12);
  color: rgba(4, 120, 87, 0.92);
  font-size: 12px;
  font-weight: 900;
}

.order-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: none;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  color: #fff;
  font-weight: 950;
  cursor: pointer;
  box-shadow: 0 14px 26px rgba(124, 58, 237, 0.18);
  box-shadow: 0 14px 26px color-mix(in srgb, var(--primary) 18%, transparent);
}

.order-button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  box-shadow: none;
}

.order-button--ghost {
  border: 1px solid rgba(17, 24, 39, 0.12);
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
  box-shadow: none;
}

.order-button--danger {
  background: rgba(255, 255, 255, 0.08);
  color: #ffd5d2;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.empty-state {
  margin-top: 14px;
  padding: 32px 18px;
  text-align: center;
}

.empty-state.is-hidden {
  display: none;
}

.empty-state h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 950;
}

.empty-state p {
  margin: 10px 0 0;
  color: var(--muted);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 20px;
  padding: 8px 6px 0;
  color: var(--muted);
}

.site-footer p {
  display: grid;
  gap: 6px;
}

.site-footer span {
  font-size: 13px;
}

.site-footer a {
  color: rgba(91, 33, 182, 0.92);
  font-weight: 900;
}

.order-bar {
  position: fixed;
  right: 50%;
  bottom: 18px;
  z-index: 30;
  width: min(1080px, calc(100% - 20px));
  transform: translateX(50%);
}

.order-bar.is-hidden {
  display: none;
}

.order-bar__shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border: 1px solid rgba(17, 24, 39, 0.14);
  border-radius: 24px;
  background: rgba(17, 24, 39, 0.92);
  color: #fff;
  box-shadow: 0 22px 46px rgba(17, 24, 39, 0.22);
  backdrop-filter: blur(12px);
}

.order-bar__summary {
  display: grid;
  gap: 4px;
}

.order-bar__eyebrow,
.order-bar__phone {
  font-size: 12px;
}

.order-bar__eyebrow {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.order-bar__summary strong {
  font-size: 18px;
}

.order-bar__phone {
  color: rgba(255, 255, 255, 0.78);
}

.order-bar__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.overlay-root.is-hidden {
  display: none;
}

.overlay {
  position: fixed;
  inset: 0;
  z-index: 120;
}

.overlay--media {
  z-index: 130;
}

.overlay__scrim {
  position: absolute;
  inset: 0;
  border: none;
  background: rgba(17, 24, 39, 0.46);
  cursor: pointer;
}

.product-details {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(980px, calc(100% - 20px));
  max-height: calc(100vh - 36px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  border: 1px solid rgba(17, 24, 39, 0.14);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 32px 62px rgba(17, 24, 39, 0.24);
  transform: translate(-50%, -50%);
  overflow: hidden;
}

.product-details__header,
.product-details__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
}

.product-details__header {
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}

.product-details__header h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 950;
}

.product-details__footer {
  border-top: 1px solid rgba(17, 24, 39, 0.08);
}

.product-details__body {
  padding: 18px 22px 22px;
  overflow-y: auto;
}

.product-details__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 18px;
  align-items: start;
}

.product-details__media {
  position: relative;
  min-height: 360px;
  max-height: 60vh;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--primary) 12%, rgba(17, 24, 39, 0.04)),
    color-mix(in srgb, var(--accent) 10%, rgba(17, 24, 39, 0.02))
  );
}

.product-details__media-zoom {
  position: absolute;
  inset: 0;
  z-index: 1;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: zoom-in;
}

.product-details__media-zoom::after {
  content: "⌕";
  position: absolute;
  inset-inline-end: 14px;
  top: 14px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.58);
  color: rgba(255, 255, 255, 0.96);
  font-size: 18px;
  box-shadow: 0 18px 32px rgba(17, 24, 39, 0.22);
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 160ms ease, transform 160ms ease;
  pointer-events: none;
}

.product-details__media:hover .product-details__media-zoom::after {
  opacity: 1;
  transform: translateY(0);
}

.product-details__media-zoom:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.85);
  outline-offset: -3px;
}

.product-details__media-asset {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: rgba(17, 24, 39, 0.88);
}

.product-details__info {
  display: grid;
  gap: 14px;
  align-content: start;
}

.product-details__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.product-details__description {
  color: var(--text);
  line-height: 1.9;
}

.product-details__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-details__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.media-trigger--details {
  inset-inline-start: 12px;
  bottom: 12px;
  z-index: 2;
}

.product-details__pricing .price {
  font-size: 24px;
}

.drawer-panel,
.composer-panel {
  position: absolute;
  left: 50%;
  width: min(720px, calc(100% - 20px));
  border: 1px solid rgba(17, 24, 39, 0.16);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 30px 58px rgba(17, 24, 39, 0.2);
  transform: translateX(-50%);
}

.drawer-panel {
  top: 50%;
  max-height: calc(100vh - 48px);
  transform: translate(-50%, -50%);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
}

.composer-panel {
  top: 50%;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  transform: translate(-50%, -50%);
}

.drawer-panel__header,
.drawer-panel__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
}

.drawer-panel__header {
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}

.drawer-panel__footer {
  border-top: 1px solid rgba(17, 24, 39, 0.08);
}

.drawer-panel__eyebrow {
  margin: 0 0 6px;
  color: rgba(91, 33, 182, 0.92);
  color: color-mix(in srgb, var(--primary-deep) 92%, transparent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.drawer-panel__header h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 950;
}

.drawer-panel__body,
.composer-panel__body {
  padding: 18px 22px 22px;
}

.drawer-panel__body {
  overflow-y: auto;
}

.drawer-panel__summary {
  display: grid;
  gap: 4px;
}

.drawer-panel__summary span,
.drawer-panel__summary small {
  color: var(--muted);
}

.drawer-panel__summary strong {
  font-size: 24px;
  font-weight: 950;
}

.drawer-panel__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.drawer-empty {
  padding: 26px 18px;
  border: 1px dashed rgba(17, 24, 39, 0.2);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.7);
  text-align: center;
}

.drawer-empty h4,
.composer-section h4,
.order-line h4 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 950;
}

.drawer-empty p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.order-line {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}

.order-line:last-of-type {
  border-bottom: none;
}

.order-line__media {
  position: relative;
  width: 92px;
  height: 92px;
  border-radius: 18px;
  overflow: hidden;
}

.order-line__image {
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
}

.order-line__body {
  display: grid;
  gap: 12px;
}

.order-line__top,
.order-line__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.order-line__meta {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.line-action {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(17, 24, 39, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--text);
  font-weight: 900;
  cursor: pointer;
}

.line-action--danger {
  color: #b42318;
}

.qty-control {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 42px;
  padding: 0 8px;
  border: 1px solid rgba(17, 24, 39, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
}

.qty-control button {
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 999px;
  background: rgba(124, 58, 237, 0.12);
  color: rgba(91, 33, 182, 0.92);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

.qty-control span {
  min-width: 16px;
  text-align: center;
  font-weight: 950;
}

.qty-control--large {
  min-height: 48px;
}

.order-note {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.order-note label {
  font-size: 12px;
  font-weight: 950;
  color: var(--muted);
}

.order-note textarea {
  min-height: 110px;
  padding: 14px 16px;
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  resize: vertical;
}

.composer-product {
  display: grid;
  grid-template-columns: 136px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.composer-product__media-frame {
  position: relative;
  width: 136px;
  height: 136px;
  border-radius: 20px;
  overflow: hidden;
}

.composer-product img,
.composer-product video {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.media-viewer {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(920px, calc(100% - 20px));
  max-height: calc(100vh - 36px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  border: 1px solid rgba(17, 24, 39, 0.14);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 32px 62px rgba(17, 24, 39, 0.24);
  transform: translate(-50%, -50%);
  overflow: hidden;
}

.media-viewer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}

.media-viewer__header h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 950;
}

.media-viewer__body {
  padding: 0 22px 22px;
}

.media-viewer__actions {
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

.media-viewer__video {
  width: 100%;
  max-height: calc(100vh - 180px);
  display: block;
  border-radius: 22px;
  background: #000;
  object-fit: contain;
}

.media-viewer__image-shell {
  width: 100%;
  max-height: calc(100vh - 180px);
  border-radius: 22px;
  overflow: hidden;
  background: #0b1220;
  display: grid;
  place-items: center;
}

.media-viewer__image {
  width: 100%;
  height: 100%;
  max-height: calc(100vh - 180px);
  object-fit: contain;
  display: block;
}

.media-viewer--image.is-zoomed .media-viewer__body {
  padding: 0 0 0;
}

.media-viewer--image.is-zoomed .media-viewer__image-shell {
  max-height: none;
  height: calc(100vh - 104px);
  border-radius: 0;
  overflow: auto;
  place-items: start;
  cursor: zoom-out;
}

.media-viewer--image.is-zoomed .media-viewer__image {
  width: auto;
  height: auto;
  max-height: none;
  max-width: none;
  display: block;
}

.composer-product__category {
  margin: 0 0 10px;
  color: rgba(4, 120, 87, 0.92);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.composer-product__description {
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
}

.composer-section {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.composer-section--split {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
}

.variant-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.variant-option {
  display: grid;
  gap: 6px;
  min-width: 130px;
  padding: 14px 16px;
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  text-align: right;
  cursor: pointer;
}

.variant-option strong {
  font-size: 16px;
  font-weight: 950;
}

.variant-option span {
  color: var(--muted);
  font-size: 13px;
}

.variant-option.is-selected {
  border-color: rgba(124, 58, 237, 0.36);
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.12), rgba(16, 185, 129, 0.1));
}

.composer-total {
  display: grid;
  gap: 6px;
  min-width: 150px;
  text-align: left;
}

.composer-total span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.composer-total strong {
  font-size: 26px;
  font-weight: 950;
}

.is-overlay-open {
  overflow: hidden;
}

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

  * {
    transition: none !important;
  }
}

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

  .hero__content--v3 {
    gap: 14px;
  }

  .hero__media-card {
    order: -1;
  }

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

  .filters-panel {
    position: static;
    max-height: calc(100vh - 32px);
  }

  .featured-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 80px;
  }

  .app-shell {
    padding-top: 10px;
  }

  .topbar {
    top: 10px;
    border-radius: 24px;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
  }

  .topbar__actions {
    width: 100%;
    justify-content: stretch;
  }

  .theme-switcher {
    width: 100%;
  }

  .topbar__theme {
    width: 100%;
  }

  .theme-menu {
    inset-inline-start: 0;
    inset-inline-end: 0;
    min-width: 0;
  }

  .topbar__whatsapp,
  .topbar__order {
    width: 100%;
    justify-content: center;
  }

  .media-trigger {
    inset-inline-start: 10px;
    bottom: 10px;
    min-height: 34px;
    padding: 0 12px;
  }

  .media-trigger__label {
    font-size: 11px;
  }

  .hero,
  .filters-panel,
  .results-panel,
  .drawer-panel,
  .composer-panel,
  .product-details,
  .media-viewer {
    border-radius: 22px;
  }

  .hero {
    padding: 18px;
  }

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

  .media-viewer__header,
  .media-viewer__body {
    padding-inline: 14px;
  }

  .media-viewer__header {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .media-viewer__video {
    max-height: calc(100vh - 210px);
    border-radius: 18px;
  }

  .hero__panel--compact > summary,
  .hero__panel-link,
  .hero__contact-bar,
  .hero__actions--v3 .button {
    width: 100%;
    justify-content: center;
  }

  .hero__content--v3 {
    gap: 12px;
  }

  .hero__contact-bar {
    flex-direction: column;
    padding: 12px 14px;
  }

  .hero__media-card {
    padding: 10px;
    border-radius: 22px;
  }

  .hero-slider {
    border-radius: 16px;
  }

  .hero-slider__chrome {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .hero-slider__dots {
    top: 12px;
    left: 12px;
  }

  .hero-slider__count {
    min-height: 32px;
    padding: 0 12px;
    font-size: 11px;
  }

  .hero-slider__nav-button {
    width: 38px;
    height: 38px;
    font-size: 22px;
  }

  .hero__media-frame {
    border-radius: 16px;
  }

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

  .product-card__footer {
    flex-direction: column;
    align-items: stretch;
  }

  .product-card__actions {
    justify-items: stretch;
  }

  .order-button,
  .button {
    width: 100%;
  }

  .drawer-panel,
  .composer-panel,
  .product-details {
    top: auto;
    right: 10px;
    bottom: 10px;
    left: 10px;
    width: auto;
    max-height: calc(100vh - 20px);
    transform: none;
  }

  .product-details__body,
  .drawer-panel__body,
  .composer-panel__body,
  .drawer-panel__header,
  .drawer-panel__footer {
    padding-right: 18px;
    padding-left: 18px;
  }

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

  .product-details__media {
    min-height: 260px;
    max-height: 42vh;
  }

  .composer-product,
  .order-line {
    grid-template-columns: 1fr;
  }

  .order-bar {
    bottom: 10px;
    width: calc(100% - 16px);
  }
}
