:root {
  --bg: #f8f1e8;
  --bg-alt: #fff7ed;
  --paper: #fffdf9;
  --paper-soft: rgba(255, 253, 249, 0.78);
  --ink: #171717;
  --ink-soft: #3b332c;
  --muted: #7b6f65;
  --line: rgba(45, 38, 31, 0.11);
  --line-strong: rgba(45, 38, 31, 0.2);
  --green: #ff7a1a;
  --green-dark: #a83e08;
  --blue: #25201c;
  --amber: #ffb33f;
  --coral: #ff5c22;
  --orange-soft: #fff0df;
  --cream: #fffaf2;
  --glass: rgba(255, 255, 255, 0.72);
  --shadow: 0 30px 90px rgba(72, 46, 24, 0.16);
  --shadow-soft: 0 18px 54px rgba(72, 46, 24, 0.1);
  --radius: 24px;
  --radius-sm: 16px;
  --radius-lg: 34px;
  --radius-pill: 999px;
  --container: 1220px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

html.lenis,
html.lenis body {
  height: auto;
}

html.lenis {
  scroll-behavior: auto;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", Inter, "Avenir Next", "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.9), rgba(248, 241, 232, 1) 58%, rgba(255, 247, 237, 1)),
    linear-gradient(135deg, #ffffff 0%, #fff2e1 46%, #f5dfc8 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open,
body.cart-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

button {
  cursor: pointer;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(255, 122, 26, 0.34);
  outline-offset: 3px;
}

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

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.skip-link {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 100;
  transform: translateY(-140%);
  padding: 0.8rem 1rem;
  border-radius: var(--radius);
  color: #fff;
  background: var(--ink);
}

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

.notice {
  color: rgba(255, 255, 255, 0.9);
  background: linear-gradient(90deg, #171717, #33251c 52%, #171717);
}

.notice__inner {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  font-size: 0.82rem;
}

.notice__inner span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.notice__inner span::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 0.8rem 0;
  transition: background-color 220ms var(--ease), box-shadow 220ms var(--ease);
}

.site-header.is-scrolled {
  background: rgba(255, 248, 238, 0.76);
  box-shadow: 0 12px 42px rgba(72, 46, 24, 0.1);
  backdrop-filter: blur(22px) saturate(150%);
}

.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.4rem;
  padding: 0.65rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-lg);
  background: var(--glass);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(24px) saturate(170%);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 0.75rem;
}

.brand__mark {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 18px;
  color: #fff;
  font-weight: 900;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0) 46%),
    linear-gradient(135deg, #ff9a3d 0%, #ff5c22 56%, #a83e08 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.34), 0 12px 26px rgba(255, 112, 28, 0.25);
}

.brand__copy {
  display: grid;
  min-width: 0;
  gap: 0.1rem;
}

.brand__copy strong {
  overflow: hidden;
  font-size: 0.98rem;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand__copy span {
  overflow: hidden;
  color: var(--muted);
  font-size: 0.78rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.nav__links a {
  padding: 0.65rem 0.25rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  transition: color 180ms var(--ease);
}

.nav__links a:hover {
  color: var(--ink);
}

.nav__actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
}

.icon-button,
.cart-button {
  display: inline-grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 28px rgba(72, 46, 24, 0.08);
  backdrop-filter: blur(18px) saturate(150%);
  transition:
    transform 180ms var(--ease),
    border-color 180ms var(--ease),
    background-color 180ms var(--ease),
    color 180ms var(--ease);
}

.icon-button:hover,
.cart-button:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 122, 26, 0.45);
}

.icon-button svg,
.cart-button svg,
.button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.cart-button {
  position: relative;
  color: #fff;
  border-color: var(--green);
  background: linear-gradient(135deg, #ff9a3d 0%, var(--coral) 100%);
}

.cart-button span {
  position: absolute;
  top: -7px;
  right: -7px;
  display: grid;
  min-width: 22px;
  height: 22px;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  background: var(--ink);
}

.nav__toggle {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.82rem 1rem;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 850;
  line-height: 1.15;
  transition:
    transform 180ms var(--ease),
    box-shadow 180ms var(--ease),
    background-color 180ms var(--ease),
    color 180ms var(--ease),
    border-color 180ms var(--ease);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(72, 46, 24, 0.18);
}

.button--dark {
  color: #fff;
  background: linear-gradient(135deg, #24201c 0%, #100f0e 100%);
}

.button--light {
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
}

.hero {
  position: relative;
  min-height: max(560px, calc(100svh - 132px));
  overflow: hidden;
  padding: clamp(3.8rem, 6vw, 5.4rem) 0 clamp(3.2rem, 5vw, 4rem);
  color: #fff;
  background: #171717;
}

.hero__bg {
  display: none;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 180px;
  background: linear-gradient(180deg, rgba(23, 23, 23, 0) 0%, var(--bg) 100%);
  content: "";
  pointer-events: none;
}

.hero__grid {
  position: static;
  display: grid;
  grid-template-columns: minmax(0, 800px) minmax(220px, 1fr);
  align-items: center;
  gap: 3rem;
}

.hero__copy {
  position: absolute;
  left: max(30px, calc((100vw - var(--container)) / 2));
  bottom: clamp(2rem, 5vh, 3.2rem);
  z-index: 3;
  width: min(560px, calc(100% - 60px));
  max-width: 560px;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: #ffd2ad;
  font-size: 0.86rem;
  font-weight: 900;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 13ch;
  margin-bottom: 1rem;
  font-size: clamp(2.55rem, 3.7vw, 3.9rem);
  line-height: 0.98;
  font-weight: 880;
}

h2 {
  max-width: 14ch;
  margin-bottom: 0.85rem;
  font-size: 2.55rem;
  line-height: 1.06;
  font-weight: 840;
}

h3 {
  font-size: 1.1rem;
  line-height: 1.18;
}

.hero-slide > p:not(.eyebrow) {
  max-width: 500px;
  margin-bottom: 1.35rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1rem;
  line-height: 1.65;
}

.hero__slides {
  position: relative;
  min-height: 286px;
}

.hero-slide {
  display: none;
}

.hero-slide.is-active {
  display: block;
}

.hero-slide__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0.4rem 0 1.35rem;
}

.hero-slide__meta span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0.45rem 0.68rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-pill);
  color: #fff2e5;
  font-size: 0.82rem;
  font-weight: 850;
  background: rgba(23, 23, 23, 0.36);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(18px) saturate(150%);
}

.hero__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 0;
}

.hero-search {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  max-width: 680px;
  min-height: 68px;
  gap: 0.65rem;
  padding: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 28px;
  background: rgba(255, 250, 242, 0.9);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(22px) saturate(160%);
}

.hero-search > svg,
.catalog-search svg,
.sort-select svg {
  width: 21px;
  height: 21px;
  margin-left: 0.65rem;
  color: var(--muted);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.hero-search input,
.catalog-search input,
.sort-select select,
.advisor select,
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-width: 0;
  border: 0;
  color: var(--ink);
  background: transparent;
}

.hero-search input {
  font-size: 1rem;
}

.hero-search input::placeholder,
.catalog-search input::placeholder,
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #a09387;
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.hero__chips button,
.filter-pill {
  min-height: 40px;
  padding: 0.58rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--radius-pill);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(16px);
  transition:
    background-color 180ms var(--ease),
    color 180ms var(--ease),
    border-color 180ms var(--ease),
    transform 180ms var(--ease);
}

.hero__chips button:hover,
.filter-pill:hover,
.filter-pill.is-active {
  color: #fff;
  border-color: var(--green);
  background: linear-gradient(135deg, #ff9a3d 0%, var(--coral) 100%);
  transform: translateY(-1px);
}

.hero__shop {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero__visual {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #171717;
  box-shadow: none;
}

.hero-visual-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.03);
  transition:
    opacity 420ms var(--ease),
    transform 720ms var(--ease);
}

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

.hero-visual-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__visual::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(10, 8, 6, 0.7) 0%, rgba(10, 8, 6, 0.46) 42%, rgba(10, 8, 6, 0.12) 72%, rgba(10, 8, 6, 0.34) 100%),
    linear-gradient(180deg, rgba(10, 8, 6, 0.28) 0%, rgba(10, 8, 6, 0.02) 42%, rgba(10, 8, 6, 0.5) 100%);
  content: "";
}

.hero__badge {
  position: absolute;
  top: clamp(7rem, 12vw, 9rem);
  right: clamp(1rem, 5vw, 4rem);
  bottom: auto;
  z-index: 4;
  display: flex;
  width: min(230px, calc(100% - 2rem));
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 22px;
  color: #fff;
  background: rgba(23, 23, 23, 0.72);
  backdrop-filter: blur(18px) saturate(150%);
}

.hero__badge img {
  width: 74px;
  padding: 0.3rem;
  border-radius: 12px;
  background: #fff;
}

.hero__badge span {
  font-size: 0.82rem;
  font-weight: 800;
}

.hero__deal {
  position: absolute;
  right: clamp(1rem, 5vw, 4rem);
  bottom: clamp(4.2rem, 8vw, 5.8rem);
  z-index: 4;
  display: grid;
  grid-template-columns: 1fr auto;
  width: min(440px, calc(100% - 2rem));
  align-items: center;
  gap: 0.8rem 1rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 38%),
    linear-gradient(135deg, #ff9a3d 0%, #ff6a2a 50%, #a83e08 100%);
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.hero__deal strong,
.hero__deal > span:not(.deal__label) {
  grid-column: 1 / 2;
}

.deal__label {
  width: fit-content;
  padding: 0.32rem 0.48rem;
  border-radius: var(--radius-pill);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.82);
}

.hero__deal strong {
  font-size: 1.25rem;
}

.hero__deal > span:not(.deal__label) {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.92rem;
}

.hero__deal .button {
  grid-row: 1 / span 3;
  grid-column: 2;
}

.hero-slider-controls {
  position: relative;
  top: auto;
  right: auto;
  z-index: 4;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(230px, calc(100% - 2rem));
  gap: 0.75rem;
  margin: 1rem 0 0;
  padding: 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: var(--radius-pill);
  background: rgba(255, 250, 242, 0.86);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px) saturate(150%);
}

.hero-slider-controls [data-hero-prev] svg {
  transform: rotate(180deg);
}

.hero-slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
}

.hero-slider-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: var(--radius-pill);
  background: rgba(45, 38, 31, 0.18);
  transition:
    width 220ms var(--ease),
    background-color 220ms var(--ease);
}

.hero-slider-dots button.is-active {
  width: 34px;
  background: linear-gradient(135deg, #ff9a3d, var(--coral));
}

.trust-band {
  position: relative;
  z-index: 2;
  padding: 0 0 2.4rem;
}

.trust-band__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}

.trust-band article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px) saturate(150%);
}

.trust-band svg {
  width: 28px;
  height: 28px;
  color: var(--green);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.trust-band strong,
.trust-band span {
  display: block;
}

.trust-band strong {
  margin-bottom: 0.2rem;
}

.trust-band span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.section {
  padding: 5.2rem 0;
}

.section--tight {
  padding-top: 3.4rem;
}

.section-head {
  max-width: 700px;
  margin-bottom: 1.8rem;
}

.section-head--compact {
  margin-bottom: 0;
}

.section-head p:not(.eyebrow),
.advisor__copy p,
.atelier__copy > p,
.reviews .section-head p,
.contact p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.68;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.category-card {
  display: grid;
  min-height: 332px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px) saturate(150%);
  transition:
    transform 220ms var(--ease),
    box-shadow 220ms var(--ease),
    border-color 220ms var(--ease);
}

.category-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 122, 26, 0.42);
  box-shadow: var(--shadow);
}

.category-card img {
  width: 100%;
  height: 205px;
  object-fit: cover;
  background: #f5dfc8;
}

.category-card span,
.category-card small {
  display: block;
  padding: 0 1rem;
}

.category-card span {
  align-self: end;
  margin-top: 1rem;
  font-size: 1.05rem;
  font-weight: 900;
}

.category-card small {
  padding-bottom: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.catalog {
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.78) 0%, rgba(255, 239, 218, 0.92) 100%);
}

.catalog__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.75fr);
  align-items: end;
  gap: 2rem;
  margin-bottom: 1.4rem;
}

.catalog-tools {
  display: grid;
  grid-template-columns: 1fr 190px;
  gap: 0.75rem;
}

.catalog-search,
.sort-select {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 30px rgba(72, 46, 24, 0.08);
  backdrop-filter: blur(18px);
}

.sort-select select {
  padding-right: 0.75rem;
  appearance: none;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  align-items: stretch;
}

.product-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  min-height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 48px rgba(72, 46, 24, 0.09);
  backdrop-filter: blur(16px) saturate(150%);
  transition:
    transform 220ms var(--ease),
    box-shadow 220ms var(--ease),
    border-color 220ms var(--ease),
    opacity 180ms var(--ease);
}

.product-card.is-hidden {
  display: none;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 122, 26, 0.46);
  box-shadow: var(--shadow);
}

.product-card__fav {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
}

.product-card__fav.is-active {
  color: #fff;
  border-color: var(--coral);
  background: linear-gradient(135deg, #ff9a3d, var(--coral));
}

.product-card figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 1 / 0.64;
  background: #f5dfc8;
}

.product-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 380ms var(--ease);
}

.product-card:hover figure img {
  transform: scale(1.04);
}

.product-visual-label {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
  max-width: calc(100% - 1.5rem);
  padding: 0.34rem 0.52rem;
  border-radius: var(--radius-pill);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  background: rgba(23, 23, 23, 0.74);
  backdrop-filter: blur(14px);
}

.product-card__body {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 0.72rem;
  padding: 1rem;
}

.product-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
}

.product-card__meta span {
  padding: 0.32rem 0.45rem;
  border-radius: var(--radius-pill);
  color: var(--green-dark);
  font-size: 0.72rem;
  font-weight: 900;
  background: #fff0df;
}

.product-card__meta span:nth-child(2) {
  color: #704005;
  background: #ffe4bd;
}

.product-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.product-card__footer {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0.7rem;
  margin-top: 0.3rem;
}

.product-card__footer strong {
  font-size: 1.2rem;
  white-space: nowrap;
}

.product-card__footer .button {
  min-height: 42px;
  padding: 0.66rem 0.75rem;
  font-size: 0.86rem;
}

.empty-state {
  margin: 1.5rem 0 0;
  padding: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: var(--radius);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.72);
}

.vehicle-advisor {
  background:
    linear-gradient(120deg, rgba(255, 122, 26, 0.11), rgba(255, 179, 63, 0.12)),
    var(--bg);
}

.advisor__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  align-items: center;
  gap: 2.5rem;
}

.advisor {
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px) saturate(150%);
}

.advisor__controls {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}

.advisor label,
.contact-form label {
  display: grid;
  gap: 0.4rem;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.advisor select,
.contact-form input,
.contact-form select,
.contact-form textarea {
  min-height: 48px;
  padding: 0.72rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

.advisor__result {
  display: grid;
  gap: 0.45rem;
  padding: 1.25rem;
  border-radius: var(--radius);
  color: #fff;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0) 42%),
    linear-gradient(135deg, #ff9a3d 0%, #ff5c22 54%, #33251c 100%);
}

.advisor__result span {
  font-size: 0.82rem;
  font-weight: 900;
}

.advisor__result strong {
  font-size: 1.55rem;
  line-height: 1.15;
}

.advisor__result p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.55;
}

.atelier {
  background: rgba(255, 253, 249, 0.92);
}

.atelier__grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 3rem;
}

.atelier__media {
  overflow: hidden;
  aspect-ratio: 1 / 0.92;
  border-radius: var(--radius-lg);
  background: #f5dfc8;
  box-shadow: var(--shadow);
}

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

.process-list {
  display: grid;
  gap: 0.7rem;
  margin: 1.4rem 0;
}

.process-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  padding: 0.92rem;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 10px 30px rgba(72, 46, 24, 0.06);
}

.process-list span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, #ff9a3d, var(--coral));
}

.process-list strong,
.process-list p {
  margin-bottom: 0;
}

.process-list p {
  margin-top: 0.2rem;
  color: var(--muted);
  line-height: 1.5;
}

.reviews {
  background:
    linear-gradient(135deg, rgba(255, 122, 26, 0.18), rgba(255, 255, 255, 0) 38%),
    #171717;
  color: #fff;
}

.reviews .eyebrow {
  color: #ffb366;
}

.reviews .section-head p {
  color: rgba(255, 255, 255, 0.72);
}

.reviews__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr) minmax(220px, 0.55fr);
  align-items: stretch;
  gap: 1rem;
}

.review-card {
  display: grid;
  align-content: space-between;
  min-height: 260px;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(18px);
}

.review-card blockquote {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.55;
}

.review-card span {
  color: rgba(255, 255, 255, 0.68);
}

.review-card--accent {
  background: linear-gradient(135deg, #ffb33f, #ff7a1a);
  color: var(--ink);
}

.review-card--accent strong {
  font-size: 3.2rem;
  line-height: 1;
}

.review-card--accent span {
  color: rgba(18, 24, 32, 0.74);
  font-weight: 800;
  line-height: 1.45;
}

.stars {
  display: flex;
  gap: 0.3rem;
  color: #ffb366;
}

.stars svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  stroke: currentColor;
  stroke-linejoin: round;
}

.contact {
  background:
    linear-gradient(120deg, rgba(255, 122, 26, 0.12), rgba(255, 179, 63, 0.12)),
    var(--bg);
}

.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  align-items: start;
  gap: 2.5rem;
}

.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.3rem;
}

.contact-form {
  display: grid;
  gap: 0.9rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px) saturate(150%);
}

.contact-form textarea {
  min-height: 124px;
  resize: vertical;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  justify-content: flex-end;
  background: rgba(23, 23, 23, 0.42);
  backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms var(--ease);
}

body.cart-open .cart-drawer {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer__panel {
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(430px, 100%);
  min-height: 100%;
  padding: 1rem;
  background: rgba(255, 253, 249, 0.92);
  box-shadow: -24px 0 70px rgba(72, 46, 24, 0.2);
  backdrop-filter: blur(22px) saturate(150%);
  transform: translateX(100%);
  transition: transform 260ms var(--ease);
}

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

.cart-drawer header,
.cart-drawer footer {
  display: grid;
  gap: 0.8rem;
}

.cart-drawer header {
  grid-template-columns: 1fr auto;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.cart-drawer header span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.cart-drawer header strong {
  display: block;
  margin-top: 0.12rem;
  font-size: 1.2rem;
}

.cart-drawer__items {
  display: grid;
  align-content: start;
  gap: 0.7rem;
  overflow: auto;
  padding: 1rem 0;
}

.cart-drawer__items p {
  margin: 0;
  color: var(--muted);
}

.cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.6rem;
  padding: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
}

.cart-item strong {
  font-size: 0.95rem;
}

.cart-item span {
  color: var(--muted);
  font-weight: 800;
  white-space: nowrap;
}

.cart-drawer footer {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cart-total span {
  color: var(--muted);
  font-weight: 800;
}

.cart-total strong {
  font-size: 1.45rem;
}

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

  .nav__toggle {
    display: inline-grid;
  }

  .nav__links {
    position: fixed;
    inset: 82px 20px auto;
    z-index: 70;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: var(--radius-lg);
    background: #fffaf2;
    box-shadow: var(--shadow);
    backdrop-filter: blur(28px) saturate(160%);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms var(--ease), transform 180ms var(--ease);
  }

  .nav__links a {
    padding: 0.95rem;
    border-radius: 18px;
  }

  .nav__links a:hover {
    background: var(--orange-soft);
  }

  body.nav-open .nav__links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav__actions {
    justify-self: end;
  }

  .hero__grid,
  .catalog__top,
  .advisor__grid,
  .atelier__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .hero__copy {
    max-width: 760px;
  }

  .hero-slider-controls {
    position: relative;
    top: auto;
    right: auto;
    margin: 0 0 1rem;
  }

  h1 {
    max-width: 13ch;
    font-size: 3.3rem;
  }

  h2 {
    font-size: 2.15rem;
  }

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

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

  .reviews__grid .section-head {
    grid-column: 1 / -1;
  }
}

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

  .notice__inner {
    justify-content: flex-start;
    overflow-x: auto;
    padding: 0.15rem 0;
  }

  .notice__inner span {
    font-size: 0.78rem;
  }

  .site-header {
    padding: 0.55rem 0;
  }

  .nav {
    gap: 0.55rem;
    padding: 0.55rem;
  }

  .brand__mark {
    width: 40px;
    height: 40px;
  }

  .brand__copy strong {
    max-width: 140px;
    font-size: 0.86rem;
  }

  .brand__copy span {
    display: none;
  }

  .nav__actions .icon-button:nth-child(2) {
    display: none;
  }

  .icon-button,
  .cart-button {
    width: 40px;
    height: 40px;
  }

  .hero {
    min-height: max(620px, calc(100svh - 116px));
    padding: 4.4rem 0 4.8rem;
  }

  .hero__grid {
    gap: 1.6rem;
  }

  .hero__copy {
    left: 14px;
    right: 14px;
    bottom: clamp(2rem, 5vh, 3rem);
    width: auto;
  }

  h1 {
    max-width: 12ch;
    font-size: 2.55rem;
  }

  h2 {
    max-width: 16ch;
    font-size: 1.82rem;
  }

  .hero-slide > p:not(.eyebrow),
  .section-head p:not(.eyebrow),
  .advisor__copy p,
  .atelier__copy > p,
  .reviews .section-head p,
  .contact p {
    font-size: 0.96rem;
  }

  .hero__slides {
    min-height: auto;
  }

  .hero__cta-row .button {
    flex: 1 1 160px;
  }

  .hero-search {
    grid-template-columns: auto 1fr;
    min-height: 0;
  }

  .hero-search .button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .hero-search input {
    min-height: 48px;
  }

  .hero__deal {
    display: none;
  }

  .hero__deal .button {
    grid-row: auto;
    grid-column: auto;
    width: 100%;
  }

  .hero-slider-controls {
    position: relative;
    top: auto;
    right: auto;
    width: min(230px, calc(100% - 2rem));
    margin: 1rem 0 0;
    gap: 0.45rem;
  }

  .hero__badge {
    display: none;
  }

  .trust-band__grid,
  .category-grid,
  .product-grid,
  .advisor__controls,
  .catalog-tools,
  .reviews__grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3.8rem 0;
  }

  .category-card {
    min-height: auto;
  }

  .category-card img {
    height: 220px;
  }

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

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

  .contact__actions .button,
  .contact-form .button,
  .cart-drawer footer .button {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .brand__copy strong {
    max-width: 108px;
  }

  h1 {
    font-size: 2.2rem;
  }

  .hero__cta-row .button {
    min-height: 54px;
  }
}

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