:root {
  color-scheme: light;
  --bg: #f4f5f6;
  --surface: #ffffff;
  --surface-2: #eceeef;
  --surface-3: #e2e4e6;
  --ink: #221f1f;
  --muted: #656466;
  --line: #d9dadd;
  --line-strong: #b9babd;
  --red: #bc202e;
  --red-dark: #981925;
  --red-soft: #f8e9eb;
  --success: #177442;
  --warning: #9a6200;
  --danger: #a81c28;
  --shadow-sm: 0 8px 24px rgba(20, 18, 18, 0.07);
  --shadow-lg: 0 28px 80px rgba(20, 18, 18, 0.14);
  --radius: 5px;
  --shell: min(1320px, calc(100vw - 40px));
  --font: Inter, "Segoe UI", Arial, Helvetica, sans-serif;
  --display: "Arial Narrow", "Roboto Condensed", "Segoe UI", Arial, sans-serif;
}

html[data-theme="dark"] {
  color-scheme: dark;
  --bg: #131314;
  --surface: #1d1c1d;
  --surface-2: #252426;
  --surface-3: #302f31;
  --ink: #f7f6f5;
  --muted: #b1afb2;
  --line: #39383a;
  --line-strong: #575558;
  --red-soft: #351a1e;
  --shadow-sm: 0 8px 24px rgba(0, 0, 0, 0.22);
  --shadow-lg: 0 28px 80px rgba(0, 0, 0, 0.42);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.6;
}

body.menu-open,
body.filters-open,
body.modal-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--red) 45%, transparent);
  outline-offset: 3px;
}

[hidden] {
  display: none !important;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 200;
  padding: 10px 14px;
  transform: translateY(-150%);
  background: var(--ink);
  color: var(--surface);
  font-weight: 800;
}

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

.preview-banner {
  position: relative;
  z-index: 180;
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 9px 20px;
  background: #1b191a;
  color: #fff;
  font-size: 12px;
}

.preview-banner strong {
  color: #ff707b;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.preview-banner span {
  color: #c8c4c6;
}

.preview-banner a {
  border-bottom: 1px solid #ff707b;
  color: #fff;
  font-weight: 800;
}

.button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.015em;
  line-height: 1.1;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

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

.button:disabled,
.cart-item__controls button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
  transform: none;
}

.showcase-contact-disabled {
  cursor: not-allowed;
  opacity: 0.62;
  pointer-events: none;
}

.showcase-contact-disabled small {
  margin-left: 7px;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.showcase-contact-card {
  cursor: not-allowed;
}

.showcase-contact-card:hover {
  border-color: var(--line);
  transform: none;
}

.showcase-checkout > p {
  color: var(--muted);
  line-height: 1.65;
}

.button--large {
  min-height: 52px;
  padding-inline: 23px;
  font-size: 14px;
}

.button--primary {
  background: var(--red);
  color: #fff;
}

.button--primary:hover {
  background: var(--red-dark);
}

.button--outline {
  border-color: var(--line-strong);
  background: var(--surface);
}

.button--outline:hover,
.button--quiet:hover {
  border-color: var(--ink);
}

.button--quiet {
  border-color: var(--line);
  background: transparent;
}

.button--light {
  background: #fff;
  color: #221f1f;
}

.icon-button,
.theme-button {
  display: inline-grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
}

.icon-button:hover,
.theme-button:hover,
.icon-button.is-favorite {
  border-color: var(--red);
  color: var(--red);
}

.icon-button--large {
  width: 52px;
  height: 52px;
}

.site-header {
  position: relative;
  z-index: 50;
  background: var(--surface);
  box-shadow: 0 1px 0 var(--line);
}

.utility-bar {
  min-height: 34px;
  background: var(--ink);
  color: var(--surface);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

html[data-theme="dark"] .utility-bar {
  background: #090909;
  color: #fff;
}

.utility-bar__inner {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.utility-bar__inner div {
  display: flex;
  gap: 24px;
}

.utility-bar a:hover {
  color: #ff737e;
}

.header-main {
  display: grid;
  min-height: 88px;
  grid-template-columns: 265px minmax(260px, 1fr) auto;
  align-items: center;
  gap: 34px;
}

.site-logo {
  display: block;
  width: 232px;
}

.site-logo img,
.footer-brand img {
  width: 100%;
  height: auto;
}

.logo-dark {
  display: none;
}

html[data-theme="dark"] .logo-light {
  display: none;
}

html[data-theme="dark"] .logo-dark {
  display: block;
}

.header-search {
  display: grid;
  height: 48px;
  grid-template-columns: 1fr 50px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--bg);
}

.header-search:focus-within {
  border-color: var(--red);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--red) 14%, transparent);
}

.header-search input {
  width: 100%;
  min-width: 0;
  padding: 0 16px;
  border: 0;
  outline: 0;
  background: transparent;
}

.header-search button {
  border: 0;
  border-left: 1px solid var(--line);
  background: transparent;
  color: var(--red);
  font-size: 27px;
}

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

.header-whatsapp {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 800;
}

.header-whatsapp:hover {
  border-color: var(--red);
}

.cart-button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 10px;
  padding: 0 7px 0 15px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--surface);
  font-size: 12px;
  font-weight: 800;
}

html[data-theme="dark"] .cart-button {
  background: #fff;
  color: #221f1f;
}

.cart-button strong {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 3px;
  background: var(--red);
  color: #fff;
}

.site-nav {
  border-top: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  min-height: 52px;
  align-items: stretch;
  gap: 2px;
  overflow-x: auto;
  scrollbar-width: none;
}

.nav-link {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  padding: 0 18px;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.nav-link::after {
  position: absolute;
  right: 18px;
  bottom: 0;
  left: 18px;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--red);
  content: "";
  transition: transform 160ms ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--red);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
}

.menu-button {
  display: none;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.kicker::before {
  width: 28px;
  height: 2px;
  background: currentColor;
  content: "";
}

.home-hero {
  position: relative;
  min-height: clamp(660px, 76vh, 820px);
  isolation: isolate;
  overflow: hidden;
  border-bottom: 3px solid var(--red);
  background: #070809;
}

.home-hero::before,
.home-hero::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
}

.home-hero::before {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 0.94) 0%, rgba(5, 6, 7, 0.82) 35%, rgba(5, 6, 7, 0.44) 62%, rgba(5, 6, 7, 0.22) 100%),
    linear-gradient(0deg, rgba(5, 6, 7, 0.72) 0%, rgba(5, 6, 7, 0.08) 52%, rgba(5, 6, 7, 0.34) 100%);
}

.home-hero::after {
  z-index: 2;
  background:
    linear-gradient(115deg, transparent 0 72%, color-mix(in srgb, var(--red) 72%, transparent) 72.1% 72.3%, transparent 72.4%),
    linear-gradient(115deg, transparent 0 76%, color-mix(in srgb, #fff 22%, transparent) 76.1% 76.2%, transparent 76.3%);
  opacity: 0.7;
}

.home-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.home-hero__media img {
  position: absolute;
  top: -56px;
  left: 0;
  width: 100%;
  height: calc(100% + 112px);
  object-fit: cover;
  object-position: center;
  transform: translate3d(0, var(--hero-parallax, 0), 0) scale(1.025);
  filter: saturate(0.9) contrast(1.08) brightness(0.88);
  will-change: transform;
}

.home-hero__grid {
  position: relative;
  z-index: 3;
  display: grid;
  min-height: clamp(660px, 76vh, 820px);
  grid-template-columns: minmax(0, 790px);
  align-items: center;
  padding-block: 94px;
}

.home-hero .kicker {
  color: #ff5f6d;
}

.home-hero__copy h1,
.page-hero h1,
.product-info h1,
.not-found h1 {
  max-width: 780px;
  margin: 18px 0 22px;
  font-family: var(--display);
  font-size: clamp(54px, 7vw, 102px);
  font-stretch: condensed;
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.91;
  text-transform: uppercase;
}

.home-hero__copy h1 {
  max-width: 790px;
  color: #fff;
  text-shadow: 0 8px 36px rgba(0, 0, 0, 0.38);
}

.home-hero__copy > p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
}

.hero-facts strong {
  margin-right: 6px;
  color: #fff;
  font-size: 17px;
}

.home-hero .button--outline {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(8, 9, 10, 0.32);
  color: #fff;
  backdrop-filter: blur(8px);
}

.home-hero .button--outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.product-visual {
  position: relative;
  display: grid;
  width: 100%;
  aspect-ratio: 4 / 3;
  margin: 0;
  place-items: center;
  overflow: hidden;
  background: var(--surface-2);
}

.product-visual > img:not([aria-hidden="true"]) {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-visual--large {
  min-height: 480px;
  aspect-ratio: 1 / 1;
}

.product-placeholder {
  isolation: isolate;
  background:
    linear-gradient(135deg, transparent 0 49.7%, var(--line) 49.8% 50%, transparent 50.1%),
    linear-gradient(45deg, transparent 0 64%, color-mix(in srgb, var(--red) 15%, transparent) 64.1% 64.5%, transparent 64.6%),
    var(--surface-2);
}

.product-placeholder::before,
.product-placeholder::after {
  position: absolute;
  z-index: -1;
  content: "";
}

.product-placeholder::before {
  top: 0;
  right: 14%;
  width: 26%;
  height: 42%;
  border-right: 3px solid var(--red);
  border-bottom: 3px solid var(--red);
}

.product-placeholder::after {
  bottom: 13%;
  left: 0;
  width: 31%;
  height: 2px;
  background: var(--red);
}

.product-placeholder > img {
  width: 31%;
  opacity: 0.92;
}

.product-placeholder figcaption {
  position: absolute;
  right: 18px;
  bottom: 16px;
  left: 18px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 15px;
  font-family: var(--display);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-placeholder figcaption span {
  color: var(--muted);
  font-size: 9px;
}

.content-section {
  padding-block: 88px;
  background: var(--surface);
}

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

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

.section-head h2,
.contact-cta h2,
.product-copy h2,
.contact-location h2 {
  max-width: 850px;
  margin: 10px 0 0;
  font-family: var(--display);
  font-size: clamp(32px, 4.2vw, 55px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1;
  text-transform: uppercase;
}

.text-link {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
  padding-bottom: 5px;
  border-bottom: 2px solid var(--ink);
  font-size: 12px;
  font-weight: 850;
}

.text-link span {
  color: var(--red);
  font-size: 18px;
}

.text-link:hover {
  border-color: var(--red);
  color: var(--red);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.category-card {
  position: relative;
  display: grid;
  min-height: 168px;
  grid-template-columns: 50px 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 28px;
  overflow: hidden;
  background: var(--surface);
  transition: color 180ms ease, background-color 180ms ease;
}

.category-card::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  transform: scaleY(0);
  transform-origin: bottom;
  background: var(--red);
  content: "";
  transition: transform 180ms ease;
}

.category-card:hover {
  background: var(--red-soft);
}

.category-card:hover::before {
  transform: scaleY(1);
}

.category-card__number {
  color: var(--red);
  font-family: var(--display);
  font-size: 25px;
  font-weight: 900;
}

.category-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 25px;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.category-card p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.category-card > strong {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

.category-card__arrow {
  position: absolute;
  right: 25px;
  bottom: 16px;
  color: var(--red);
  font-size: 22px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.benefit-card {
  min-height: 240px;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.benefit-card > span {
  color: var(--red);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 900;
}

.benefit-card h3 {
  margin: 42px 0 10px;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

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

.product-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.product-card:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.product-card[hidden] {
  display: none;
}

.product-card__media {
  position: relative;
  display: block;
  border-bottom: 1px solid var(--line);
}

.stock-badge,
.flag-badge {
  display: inline-flex;
  min-height: 27px;
  align-items: center;
  padding: 0 9px;
  border-radius: 3px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-card__media .stock-badge {
  position: absolute;
  top: 12px;
  left: 12px;
}

.flag-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--red);
  color: #fff;
}

.stock-badge--in_stock {
  background: #e5f4eb;
  color: var(--success);
}

html[data-theme="dark"] .stock-badge--in_stock {
  background: #163726;
  color: #7bd7a2;
}

.stock-badge--limited {
  background: #fff1d5;
  color: var(--warning);
}

html[data-theme="dark"] .stock-badge--limited {
  background: #392c16;
  color: #f1c66d;
}

.stock-badge--out_of_stock {
  background: var(--red-soft);
  color: var(--danger);
}

.product-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.product-card__overline {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--red);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card__overline span:last-child {
  color: var(--muted);
}

.product-card h3 {
  min-height: 48px;
  margin: 10px 0 7px;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.015em;
  line-height: 1.25;
  text-transform: uppercase;
}

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

.product-card__content > p {
  min-height: 42px;
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.product-specs {
  margin: auto 0 14px;
  border-top: 1px solid var(--line);
}

.product-specs div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 0;
  border-bottom: 1px solid var(--line);
  font-size: 10px;
}

.product-specs dt {
  color: var(--muted);
  text-transform: uppercase;
}

.product-specs dd {
  margin: 0;
  font-weight: 750;
  text-align: right;
}

.product-card__buy {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.product-card__buy > strong {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 900;
}

.product-card__price,
.product-price__values {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.product-card__price strong {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 900;
}

.product-card__price del,
.product-price__values del {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.flag-badge--sale {
  background: var(--ink);
}

.product-card__actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 7px;
}

.product-card__actions .button {
  padding-inline: 12px;
  font-size: 11px;
}

.contact-cta {
  position: relative;
  overflow: hidden;
  background: var(--red);
  color: #fff;
}

.contact-cta::before {
  position: absolute;
  top: -70px;
  right: 8%;
  width: 340px;
  height: 340px;
  border: 2px solid rgba(255, 255, 255, 0.17);
  transform: rotate(45deg);
  content: "";
}

.contact-cta .kicker {
  color: #fff;
}

.contact-cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 300px;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.contact-cta p {
  margin: 14px 0 0;
  opacity: 0.84;
}

.page-hero {
  position: relative;
  display: grid;
  min-height: 430px;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.page-hero::after {
  position: absolute;
  right: -8vw;
  bottom: -170px;
  width: 520px;
  height: 520px;
  border: 2px solid var(--red);
  transform: rotate(45deg);
  content: "";
}

.page-hero::before {
  position: absolute;
  top: 72px;
  right: 0;
  width: 35vw;
  height: 2px;
  transform: rotate(-12deg);
  background: var(--red);
  content: "";
}

.page-hero .shell {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 950px;
  font-size: clamp(52px, 7vw, 92px);
}

.page-hero p {
  max-width: 700px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.page-hero--compact {
  min-height: 320px;
}

.page-hero--compact h1 {
  margin-bottom: 15px;
}

.catalog-section {
  padding-block: 52px 90px;
}

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

.filters {
  position: sticky;
  top: 18px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--red);
  background: var(--surface);
}

.filters__head {
  display: flex;
  min-height: 60px;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
}

.filters__head button {
  display: none;
  border: 0;
  background: transparent;
  font-size: 26px;
}

.filters form {
  display: grid;
  gap: 15px;
  padding: 18px;
}

.filters label {
  display: grid;
  gap: 5px;
}

.filters label span,
.catalog-toolbar label span,
.checkout-form label span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.filters input,
.filters select,
.catalog-toolbar select,
.checkout-form input,
.checkout-form textarea {
  width: 100%;
  min-height: 42px;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 3px;
  outline: 0;
  background: var(--bg);
}

.filters input:focus,
.filters select:focus,
.catalog-toolbar select:focus,
.checkout-form input:focus,
.checkout-form textarea:focus {
  border-color: var(--red);
}

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

.filters__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  padding-top: 4px;
}

.catalog-toolbar {
  display: flex;
  min-height: 62px;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  padding: 10px 12px 10px 16px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.catalog-toolbar > strong {
  margin-right: auto;
  font-family: var(--display);
  font-size: 15px;
  text-transform: uppercase;
}

.catalog-toolbar label {
  display: flex;
  align-items: center;
  gap: 8px;
}

.catalog-toolbar select {
  width: auto;
  min-height: 38px;
}

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

.filter-open {
  display: none;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--red);
  border-radius: 3px;
  background: transparent;
  color: var(--red);
  font-size: 11px;
  font-weight: 850;
}

.load-more {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.empty-results {
  padding: 70px 25px;
  border: 1px solid var(--line);
  background: var(--surface);
  text-align: center;
}

.empty-results h2 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: 28px;
  text-transform: uppercase;
}

.empty-results p {
  margin: 0;
  color: var(--muted);
}

.product-breadcrumb {
  min-height: 50px;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.product-breadcrumb .shell {
  display: flex;
  min-height: 50px;
  align-items: center;
  gap: 9px;
  overflow: hidden;
  color: var(--muted);
  font-size: 11px;
  white-space: nowrap;
}

.product-breadcrumb a:hover {
  color: var(--red);
}

.product-detail {
  padding-block: 60px;
  background: var(--surface);
}

.product-detail__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.85fr);
  align-items: start;
  gap: 64px;
}

.product-gallery {
  min-width: 0;
  border: 1px solid var(--line);
}

.gallery-thumbs {
  display: flex;
  gap: 8px;
  padding: 10px;
  overflow-x: auto;
  border-top: 1px solid var(--line);
}

.gallery-thumbs button {
  width: 76px;
  height: 62px;
  padding: 2px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  background: var(--surface);
}

.gallery-thumbs button:hover {
  border-color: var(--red);
}

.gallery-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info {
  padding-top: 8px;
}

.product-info h1 {
  margin: 17px 0;
  font-size: clamp(42px, 5vw, 72px);
}

.product-info__lead {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 17px;
}

.product-price {
  display: grid;
  margin: 24px 0;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.product-price span,
.product-price small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-price strong,
.product-price__values strong {
  margin: 2px 0;
  font-family: var(--display);
  font-size: 34px;
  font-weight: 900;
}

.product-price__values del {
  font-size: 16px;
}

.detail-specs {
  margin: 0;
  border-top: 1px solid var(--line);
}

.detail-specs div {
  display: grid;
  grid-template-columns: 130px 1fr;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.detail-specs dt {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.detail-specs dd {
  margin: 0;
  font-weight: 750;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.product-copy {
  padding-block: 80px;
}

.product-copy__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 70px;
}

.product-copy article > p {
  max-width: 780px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.product-copy aside {
  padding: 28px;
  border-top: 3px solid var(--red);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.product-copy aside h2 {
  font-size: 28px;
}

.product-copy aside ul {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.product-copy aside li {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.product-copy aside li span {
  color: var(--muted);
}

.cart-section {
  min-height: 450px;
  padding-block: 52px 90px;
}

.cart-loading,
.cart-empty {
  padding: 80px 25px;
  border: 1px solid var(--line);
  background: var(--surface);
  text-align: center;
}

.cart-empty h2 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: 34px;
  text-transform: uppercase;
}

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

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  align-items: start;
  gap: 28px;
}

.cart-list,
.checkout-card {
  border: 1px solid var(--line);
  background: var(--surface);
}

.cart-list__head,
.checkout-card__head {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  border-bottom: 1px solid var(--line);
}

.cart-list__head h2,
.checkout-card h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 19px;
  text-transform: uppercase;
}

.cart-list__head button {
  border: 0;
  background: transparent;
  color: var(--red);
  font-size: 11px;
  font-weight: 850;
}

.cart-item {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.cart-item:last-child {
  border-bottom: 0;
}

.cart-item .product-visual {
  aspect-ratio: 1 / 1;
}

.cart-item__copy h3 {
  margin: 0 0 4px;
  font-family: var(--display);
  font-size: 17px;
  text-transform: uppercase;
}

.cart-item__copy p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.cart-item__copy strong {
  display: block;
  margin-top: 8px;
}

.cart-item__price {
  margin-top: 8px;
}

.cart-item__controls {
  display: flex;
  align-items: center;
  gap: 5px;
}

.cart-item__controls button {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  background: var(--bg);
}

.cart-item__controls button:hover {
  border-color: var(--red);
  color: var(--red);
}

.cart-item__controls strong {
  display: grid;
  width: 38px;
  height: 34px;
  place-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.checkout-card {
  position: sticky;
  top: 18px;
}

.checkout-form {
  display: grid;
  gap: 13px;
  padding: 20px;
}

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

.checkout-form textarea {
  min-height: 90px;
  padding-block: 10px;
  resize: vertical;
}

.checkout-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 0 3px;
  border-top: 1px solid var(--line);
}

.checkout-total strong {
  font-family: var(--display);
  font-size: 22px;
}

.checkout-note {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
}

.contact-section {
  padding-block: 70px 100px;
}

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

.contact-card,
.contact-location {
  position: relative;
  min-height: 245px;
  padding: 28px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--surface);
}

.contact-card {
  transition: border-color 180ms ease, transform 180ms ease;
}

.contact-card:hover {
  border-color: var(--red);
  transform: translateY(-3px);
}

.contact-card--primary {
  background: var(--red);
  color: #fff;
}

.contact-card span {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-card h2 {
  margin: 52px 0 8px;
  font-family: var(--display);
  font-size: 29px;
  font-weight: 900;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.contact-card p {
  margin: 0;
  color: var(--muted);
}

.contact-card--primary p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-card b {
  position: absolute;
  right: 28px;
  bottom: 24px;
  font-size: 11px;
}

.contact-location {
  grid-column: 1 / -1;
  min-height: 280px;
  padding-right: 40%;
  background:
    linear-gradient(90deg, transparent 60%, color-mix(in srgb, var(--red) 8%, transparent) 60%),
    var(--surface);
}

.contact-location::after {
  position: absolute;
  top: -110px;
  right: 9%;
  width: 360px;
  height: 360px;
  border: 2px solid var(--red);
  transform: rotate(45deg);
  content: "";
}

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

.footer-showcase-banner {
  width: 100%;
  height: clamp(220px, 26vw, 400px);
  overflow: hidden;
  background: #050607;
}

.footer-showcase-banner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.site-footer {
  padding-top: 62px;
  background: #171516;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 0.75fr);
  gap: 55px;
  padding-bottom: 55px;
}

.footer-brand img {
  width: 220px;
}

.footer-brand .logo-light {
  display: none;
}

.footer-brand .logo-dark {
  display: block;
}

.footer-brand p {
  max-width: 350px;
  margin: 22px 0 0;
  color: #aaa7a9;
}

.site-footer h2 {
  margin: 0 0 18px;
  color: #fff;
  font-family: var(--display);
  font-size: 15px;
  text-transform: uppercase;
}

.site-footer > .footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.site-footer a,
.site-footer p {
  margin: 0 0 9px;
  color: #aaa7a9;
  font-size: 12px;
}

.site-footer a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #343133;
  color: #777477;
  font-size: 10px;
  text-transform: uppercase;
}

.floating-whatsapp {
  position: fixed;
  right: max(20px, env(safe-area-inset-right));
  bottom: max(20px, env(safe-area-inset-bottom));
  z-index: 65;
  display: flex;
  min-height: 54px;
  align-items: center;
  gap: 10px;
  padding: 8px 17px 8px 8px;
  border: 1px solid color-mix(in srgb, #25d366 70%, #0a5b2e);
  border-radius: 999px;
  background: #25d366;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.26);
  color: #082616;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.floating-whatsapp span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: #157a3d;
  font-size: 11px;
}

.floating-whatsapp:hover {
  transform: translateY(-2px);
  background: #38dd77;
  color: #082616;
}

.not-found {
  display: grid;
  min-height: 650px;
  align-items: center;
  background: var(--surface);
}

.not-found p {
  margin: 0 0 25px;
  color: var(--muted);
  font-size: 18px;
}

.modal-root:empty {
  display: none;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(12, 10, 11, 0.72);
  backdrop-filter: blur(5px);
}

.quickview-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 101;
  display: grid;
  width: min(900px, calc(100vw - 32px));
  max-height: calc(100vh - 32px);
  grid-template-columns: 1fr 1fr;
  overflow: auto;
  transform: translate(-50%, -50%);
  border-top: 4px solid var(--red);
  background: var(--surface);
  box-shadow: var(--shadow-lg);
}

.quickview-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  background: var(--surface);
  font-size: 22px;
}

.quickview-modal__copy {
  padding: 46px 34px 34px;
}

.quickview-modal h2 {
  margin: 16px 0 12px;
  font-family: var(--display);
  font-size: 34px;
  line-height: 1;
  text-transform: uppercase;
}

.quickview-modal p {
  color: var(--muted);
}

.quickview-modal__price {
  display: block;
  margin: 22px 0;
  font-family: var(--display);
  font-size: 25px;
}

.quickview-modal__price.product-price__values {
  display: flex;
}

.quickview-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.toast-region {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 150;
  display: grid;
  width: min(350px, calc(100vw - 36px));
  gap: 8px;
  pointer-events: none;
}

.toast {
  padding: 13px 16px;
  transform: translateY(15px);
  border-left: 4px solid var(--red);
  background: var(--ink);
  color: var(--surface);
  box-shadow: var(--shadow-lg);
  font-size: 12px;
  font-weight: 750;
  opacity: 0;
  transition: transform 180ms ease, opacity 180ms ease;
}

.toast.is-visible {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 1180px) {
  .header-main {
    grid-template-columns: 220px minmax(220px, 1fr) auto;
    gap: 18px;
  }

  .site-logo {
    width: 200px;
  }

  .header-whatsapp {
    display: none;
  }

  .home-hero__grid {
    grid-template-columns: minmax(0, 760px);
  }

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

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

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

@media (max-width: 900px) {
  :root {
    --shell: min(100% - 30px, 1320px);
  }

  body.menu-open .site-header {
    z-index: 80;
  }

  .utility-bar__inner > span {
    display: none;
  }

  .utility-bar__inner {
    justify-content: flex-end;
  }

  .header-main {
    min-height: 72px;
    grid-template-columns: 42px 1fr auto;
  }

  .menu-button {
    display: grid;
    width: 42px;
    height: 42px;
    padding: 11px;
    place-content: center;
    gap: 4px;
    border: 1px solid var(--line);
    background: var(--surface);
  }

  .menu-button span {
    display: block;
    width: 19px;
    height: 2px;
    background: var(--ink);
  }

  .site-logo {
    width: 185px;
  }

  .header-search {
    grid-column: 1 / -1;
    grid-row: 2;
    margin-bottom: 13px;
  }

  .header-actions {
    grid-column: 3;
    grid-row: 1;
  }

  .cart-button span {
    display: none;
  }

  .cart-button {
    padding-left: 7px;
  }

  .site-nav {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 80;
    width: min(370px, 88vw);
    padding: 90px 22px 30px;
    transform: translateX(-105%);
    border: 0;
    background: var(--surface);
    box-shadow: var(--shadow-lg);
    transition: transform 220ms ease;
  }

  .site-nav::before {
    position: absolute;
    top: 28px;
    left: 22px;
    color: var(--red);
    content: "ENNO / MENU";
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.12em;
  }

  body.menu-open::after,
  body.filters-open::after {
    position: fixed;
    inset: 0;
    z-index: 70;
    background: rgba(12, 10, 11, 0.66);
    content: "";
  }

  body.menu-open .site-nav {
    transform: translateX(0);
  }

  .nav-inner {
    width: auto;
    flex-direction: column;
    align-items: stretch;
    overflow: visible;
  }

  .nav-link {
    min-height: 50px;
    padding: 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-link::after {
    right: auto;
    bottom: 0;
    left: 0;
    width: 40px;
  }

  .home-hero__grid {
    grid-template-columns: 1fr;
    padding-block: 65px;
  }

  .home-hero {
    min-height: 680px;
  }

  .home-hero__grid {
    min-height: 680px;
  }

  .home-hero::before {
    background:
      linear-gradient(90deg, rgba(5, 6, 7, 0.94) 0%, rgba(5, 6, 7, 0.8) 58%, rgba(5, 6, 7, 0.4) 100%),
      linear-gradient(0deg, rgba(5, 6, 7, 0.76) 0%, rgba(5, 6, 7, 0.12) 55%, rgba(5, 6, 7, 0.4) 100%);
  }

  .footer-showcase-banner {
    height: clamp(210px, 42vw, 300px);
  }

  .product-visual--large {
    min-height: 380px;
  }

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

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

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

  .filters {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 80;
    width: min(380px, 92vw);
    overflow-y: auto;
    transform: translateX(-105%);
    border: 0;
    border-top: 4px solid var(--red);
    transition: transform 220ms ease;
  }

  body.filters-open .filters {
    transform: translateX(0);
  }

  .filters__head button,
  .filter-open {
    display: block;
  }

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

  .product-detail__grid {
    gap: 36px;
  }

  .product-copy__grid {
    gap: 35px;
  }

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

  .checkout-card {
    position: static;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  :root {
    --shell: calc(100vw - 24px);
  }

  .utility-bar__inner {
    justify-content: center;
  }

  .utility-bar__inner div {
    gap: 15px;
  }

  .header-main {
    gap: 10px;
    padding-top: 6px;
  }

  .site-logo {
    width: 150px;
  }

  .home-hero__grid {
    min-height: 640px;
    padding-block: 72px;
  }

  .home-hero {
    min-height: 640px;
  }

  .home-hero__media img {
    top: 0;
    height: 100%;
    object-position: 60% center;
    transform: scale(1.02);
    filter: saturate(0.82) contrast(1.08) brightness(0.72);
    will-change: auto;
  }

  .home-hero::before {
    background:
      linear-gradient(90deg, rgba(5, 6, 7, 0.9) 0%, rgba(5, 6, 7, 0.74) 72%, rgba(5, 6, 7, 0.54) 100%),
      linear-gradient(0deg, rgba(5, 6, 7, 0.88) 0%, rgba(5, 6, 7, 0.18) 54%, rgba(5, 6, 7, 0.48) 100%);
  }

  .home-hero__copy h1,
  .page-hero h1,
  .not-found h1 {
    font-size: clamp(43px, 15vw, 66px);
  }

  .home-hero__copy > p,
  .page-hero p {
    font-size: 15px;
  }

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

  .hero-facts {
    gap: 14px 24px;
  }

  .footer-showcase-banner {
    height: 220px;
  }

  .floating-whatsapp {
    right: max(12px, env(safe-area-inset-right));
    bottom: max(12px, env(safe-area-inset-bottom));
  }

  .product-visual--large {
    min-height: 300px;
  }

  .content-section {
    padding-block: 62px;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 25px;
  }

  .section-head h2,
  .contact-cta h2,
  .product-copy h2,
  .contact-location h2 {
    font-size: 34px;
  }

  .category-card {
    min-height: 148px;
    grid-template-columns: 38px 1fr;
    gap: 12px;
    padding: 20px;
  }

  .category-card > strong {
    display: none;
  }

  .benefit-grid,
  .product-grid,
  .catalog-results .product-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

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

  .contact-cta__inner {
    min-height: 330px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

  .page-hero {
    min-height: 355px;
  }

  .page-hero--compact {
    min-height: 280px;
  }

  .catalog-section {
    padding-top: 28px;
  }

  .catalog-toolbar {
    flex-wrap: wrap;
  }

  .catalog-toolbar > strong {
    width: calc(100% - 100px);
  }

  .catalog-toolbar label {
    flex: 1;
    align-items: stretch;
    flex-direction: column;
  }

  .catalog-toolbar select {
    width: 100%;
  }

  .product-detail {
    padding-top: 28px;
  }

  .product-info h1 {
    font-size: 42px;
  }

  .detail-actions .button {
    width: calc(100% - 60px);
  }

  .detail-actions .button:nth-child(2) {
    width: 100%;
  }

  .product-copy {
    padding-block: 55px;
  }

  .cart-item {
    grid-template-columns: 85px minmax(0, 1fr);
  }

  .cart-item__controls {
    grid-column: 1 / -1;
    justify-content: flex-end;
  }

  .contact-location {
    grid-column: auto;
    padding-right: 28px;
  }

  .contact-location::after {
    opacity: 0.16;
  }

  .footer-grid {
    gap: 35px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .quickview-modal {
    grid-template-columns: 1fr;
  }

  .quickview-modal .product-visual {
    min-height: 260px;
    aspect-ratio: 4 / 3;
  }

  .quickview-modal__copy {
    padding: 28px 22px;
  }
}

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

/* Premium catalog revision */

::selection {
  background: var(--red);
  color: #fff;
}

body {
  background:
    radial-gradient(circle at 84% 12%, color-mix(in srgb, var(--red) 5%, transparent), transparent 26rem),
    var(--bg);
}

.utility-bar {
  position: relative;
  background: #181617;
}

.utility-bar::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red) 35%, var(--red) 65%, transparent);
  content: "";
  opacity: 0.75;
}

.header-main {
  position: relative;
}

.header-main::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--red), transparent 26%);
  content: "";
  opacity: 0.32;
}

.favorites-button {
  position: relative;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  padding: 0 8px 0 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  font-size: 12px;
  font-weight: 800;
}

.favorites-button > span {
  color: var(--red);
  font-size: 20px;
  line-height: 1;
}

.favorites-button > b {
  font-size: 12px;
}

.favorites-button > strong {
  display: grid;
  min-width: 24px;
  height: 24px;
  padding-inline: 5px;
  place-items: center;
  border-radius: 3px;
  background: var(--red-soft);
  color: var(--red);
  font-size: 10px;
}

.favorites-button:hover {
  border-color: var(--red);
}

.button--primary {
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 20px color-mix(in srgb, var(--red) 18%, transparent);
}

.button--primary::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -35%;
  width: 25%;
  transform: skewX(-20deg);
  background: rgba(255, 255, 255, 0.2);
  content: "";
  transition: left 240ms ease;
}

.button--primary:hover::after {
  left: 120%;
}

.product-card {
  isolation: isolate;
}

.product-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 3;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--red);
  content: "";
  transition: transform 180ms ease;
}

.product-card:hover::before {
  transform: scaleX(1);
}

.product-card__content > p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.catalog-toolbar,
.filters {
  box-shadow: 0 14px 40px rgba(22, 18, 19, 0.055);
}

.catalog-toolbar {
  position: relative;
  border-radius: var(--radius);
}

.catalog-toolbar::before {
  position: absolute;
  top: -1px;
  bottom: -1px;
  left: -1px;
  width: 4px;
  border-radius: var(--radius) 0 0 var(--radius);
  background: var(--red);
  content: "";
}

.active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -7px 0 20px;
}

.active-filters button {
  display: inline-flex;
  min-height: 33px;
  align-items: center;
  gap: 7px;
  padding: 0 10px;
  border: 1px solid color-mix(in srgb, var(--red) 30%, var(--line));
  border-radius: 999px;
  background: var(--red-soft);
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
}

.active-filters button span {
  color: var(--muted);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.active-filters button b {
  color: var(--red);
  font-size: 15px;
}

.active-filters button:hover {
  border-color: var(--red);
}

.favorites-section {
  min-height: 450px;
  padding-block: 58px 96px;
  background: var(--bg);
}

.favorites-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.favorites-head h2,
.favorites-empty h2 {
  margin: 8px 0 0;
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1;
  text-transform: uppercase;
}

.favorites-empty {
  display: grid;
  min-height: 370px;
  max-width: 760px;
  margin-inline: auto;
  place-items: center;
  align-content: center;
  padding: 50px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--red);
  background:
    linear-gradient(135deg, transparent 0 49.8%, color-mix(in srgb, var(--line) 65%, transparent) 49.9% 50%, transparent 50.1%),
    var(--surface);
  text-align: center;
}

.favorites-empty > span {
  color: var(--red);
  font-size: 60px;
  line-height: 1;
}

.favorites-empty > p:not(.kicker) {
  max-width: 520px;
  margin: 14px auto 26px;
  color: var(--muted);
}

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

@media (max-width: 1180px) {
  .favorites-button > b {
    display: none;
  }

  .favorites-button {
    padding-left: 10px;
  }

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

@media (max-width: 900px) {
  .favorites-button {
    width: 42px;
    padding: 0;
    justify-content: center;
  }

  .favorites-button > strong {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 18px;
    height: 18px;
    border: 2px solid var(--surface);
    background: var(--red);
    color: #fff;
    font-size: 8px;
  }

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

@media (max-width: 620px) {
  .preview-banner {
    align-items: flex-start;
    justify-content: flex-start;
    gap: 4px;
    flex-direction: column;
    padding-inline: 16px;
  }

  .site-logo {
    width: 136px;
  }

  .theme-button,
  .favorites-button,
  .cart-button {
    width: 38px;
    height: 38px;
    min-height: 38px;
  }

  .header-actions {
    gap: 6px;
  }

  .active-filters {
    margin-top: -8px;
  }

  .favorites-section {
    padding-block: 30px 64px;
  }

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

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

  .favorites-empty {
    min-height: 330px;
    padding: 34px 22px;
  }

  .product-card .product-visual {
    aspect-ratio: 16 / 10;
  }

  .product-card__content {
    padding: 16px;
  }

  .product-card h3 {
    min-height: 0;
  }

  .product-card__content > p {
    min-height: 0;
  }

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

  .product-specs div {
    display: grid;
    gap: 2px;
  }

  .product-specs dd {
    text-align: left;
  }
}
