:root {
  --bg: #f7f3ec;
  --bg-soft: #efe7db;
  --text: #1e1a16;
  --muted: #6f675f;
  --accent: #b58a5a;
  --accent-dark: #9e7450;
  --dark: #181512;
  --dark-2: #201b17;
  --line: rgba(30, 26, 22, 0.12);
  --line-dark: rgba(255, 255, 255, 0.14);
  --white: #fffaf3;
  --danger: #8b4b38;
  --ok: #667553;
  --font-serif: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --font-sans: "Manrope", Inter, Helvetica, Arial, sans-serif;
  --shadow: 0 24px 70px rgba(30, 26, 22, 0.11);
  --radius: 8px;
  --container: 1440px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}
body.is-locked { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.container { width: min(100% - 48px, var(--container)); margin: 0 auto; }
.section { padding: 96px 0; }
.section-tight { padding: 64px 0; }
.eyebrow {
  color: var(--accent-dark);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin: 0; }
h1, h2, .display {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: 0;
}
h1 { font-size: clamp(2.8rem, 5.6vw, 6.2rem); }
h2 { font-size: clamp(2.2rem, 4vw, 5rem); }
h3 { font-size: 1.08rem; line-height: 1.25; }
.lead { color: var(--muted); font-size: clamp(1.02rem, 1.3vw, 1.28rem); max-width: 720px; }
.muted { color: var(--muted); }
.grid { display: grid; gap: 24px; }

.btn {
  align-items: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  display: inline-flex;
  gap: 10px;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  transition: transform .25s ease, background .25s ease, border-color .25s ease, color .25s ease, opacity .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--text); color: var(--white); }
.btn-primary:hover { background: var(--accent-dark); }
.btn-secondary { border-color: var(--line); background: rgba(255,255,255,.28); }
.btn-light { background: var(--white); color: var(--text); }
.btn[disabled] { cursor: not-allowed; opacity: .48; transform: none; }
.icon-btn {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: inherit;
  display: inline-grid;
  place-items: center;
  transition: background .25s ease, transform .25s ease, border-color .25s ease;
}
.icon-btn:hover { background: rgba(181, 138, 90, .12); transform: translateY(-1px); }
.icon-img {
  height: 18px;
  width: 18px;
}
.icon-inline {
  display: inline-block;
  height: 16px;
  margin-left: 8px;
  vertical-align: -2px;
  width: 16px;
}
.mobile-panel .icon-img { filter: invert(1); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 243, 236, .82);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: box-shadow .25s ease, border-color .25s ease, padding .25s ease;
}
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 8px 28px rgba(30,26,22,.06); }
.header-inner {
  align-items: center;
  display: grid;
  gap: 18px;
  grid-template-columns: auto 1fr auto;
  min-height: 82px;
}
.logo { align-items: center; display: inline-flex; line-height: 1; width: 210px; }
.logo img { height: auto; width: 100%; }
.main-nav { justify-self: center; }
.nav-list { align-items: center; display: flex; gap: 22px; list-style: none; margin: 0; padding: 0; }
.nav-item { position: relative; }
.nav-link {
  background: none;
  border: 0;
  color: var(--muted);
  padding: 30px 0;
  transition: color .2s ease;
}
.nav-link:hover, .nav-link.active { color: var(--text); }
.mega {
  background: rgba(255, 250, 243, .97);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  gap: 10px;
  left: 50%;
  min-width: 280px;
  opacity: 0;
  padding: 18px;
  pointer-events: none;
  position: absolute;
  top: 78px;
  transform: translate(-50%, 8px);
  transition: opacity .2s ease, transform .2s ease;
}
.nav-item:hover .mega, .nav-item:focus-within .mega { opacity: 1; pointer-events: auto; transform: translate(-50%, 0); }
.mega a { color: var(--muted); padding: 8px; border-radius: 6px; }
.mega a:hover { background: var(--bg-soft); color: var(--text); }
.header-actions { align-items: center; display: flex; gap: 10px; justify-content: flex-end; }
.phone { color: var(--text); font-size: .92rem; white-space: nowrap; }
.lang { border: 1px solid var(--line); border-radius: 999px; color: var(--muted); display: flex; font-size: .78rem; overflow: hidden; }
.lang span { padding: 5px 8px; }
.lang .active { background: var(--text); color: var(--white); }
.burger { display: none; }

.mobile-panel {
  background: var(--dark);
  color: var(--white);
  inset: 0 0 0 auto;
  max-width: 430px;
  padding: 24px;
  position: fixed;
  transform: translateX(100%);
  transition: transform .3s ease;
  width: 100%;
  z-index: 80;
}
.mobile-panel.is-open { transform: translateX(0); }
.mobile-head { align-items: center; display: flex; justify-content: space-between; margin-bottom: 28px; }
.mobile-menu { display: grid; gap: 6px; }
.mobile-menu a, .mobile-accordion > button {
  background: none;
  border: 0;
  border-bottom: 1px solid var(--line-dark);
  color: var(--white);
  padding: 15px 0;
  text-align: left;
  width: 100%;
}
.mobile-sub { display: none; padding: 5px 0 12px 16px; }
.mobile-sub a { color: rgba(255,255,255,.68); display: block; padding: 8px 0; border: 0; }
.mobile-accordion.is-open .mobile-sub { display: block; }

.hero {
  min-height: calc(92vh - 82px);
  padding: 42px 0 72px;
  display: grid;
  align-items: center;
}
.hero-grid { align-items: center; display: grid; gap: 48px; grid-template-columns: 1.05fr .95fr; }
.hero-copy { display: grid; gap: 26px; }
.hero-copy h1 { font-size: clamp(3.2rem, 5.4vw, 6.4rem); max-width: 1040px; }
.badge { border: 1px solid var(--line); border-radius: 999px; color: var(--accent-dark); display: inline-flex; padding: 8px 13px; width: max-content; }
.hero-bullets { display: flex; flex-wrap: wrap; gap: 10px; margin: 0; padding: 0; list-style: none; }
.hero-bullets li { border: 1px solid var(--line); border-radius: 999px; color: var(--muted); padding: 8px 12px; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; }
.visual {
  border-radius: var(--radius);
  min-height: 560px;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(circle at 64% 18%, rgba(255,255,255,.64), transparent 19%),
    linear-gradient(135deg, rgba(181,138,90,.25), transparent 34%),
    linear-gradient(160deg, #d8c8b4 0%, #75685e 52%, #201b17 100%);
  box-shadow: var(--shadow);
}
.visual.photo-hero {
  background:
    linear-gradient(90deg, rgba(32, 27, 23, .12), rgba(32, 27, 23, .32)),
    url("../img/generated/hero-fragrance.png") center / cover no-repeat,
    linear-gradient(160deg, #d8c8b4 0%, #75685e 52%, #201b17 100%);
}
.visual.generated-hero {
  background:
    linear-gradient(90deg, rgba(32, 27, 23, .08), rgba(32, 27, 23, .24)),
    url("../img/generated/hero-fragrance.png") center / cover no-repeat,
    linear-gradient(160deg, #d8c8b4 0%, #75685e 52%, #201b17 100%);
}
.visual.photo-hero::before,
.visual.photo-hero::after {
  display: none;
}
.visual::before, .visual::after {
  content: "";
  position: absolute;
  background: rgba(255,250,243,.56);
  border: 1px solid rgba(255,255,255,.34);
  box-shadow: 0 26px 60px rgba(0,0,0,.18);
}
.visual::before { width: 24%; height: 58%; left: 24%; bottom: 12%; border-radius: 40px 40px 8px 8px; }
.visual::after { width: 34%; height: 34%; right: 18%; bottom: 13%; border-radius: 50% 50% 8px 8px; }
.visual-label { bottom: 24px; color: var(--white); left: 24px; position: absolute; z-index: 1; }

.logos { grid-template-columns: repeat(4, 1fr); }
.logo-card, .stat-card, .product-card, .case-card, .benefit, .note-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,250,243,.45);
}
.logo-card { color: var(--muted); min-height: 92px; display: grid; place-items: center; text-align: center; filter: grayscale(1); }
.stats { gap: 24px; grid-template-columns: repeat(4, 1fr); }
.stat-card {
  display: grid;
  gap: 18px;
  min-height: 240px;
  padding: 48px 42px;
}
.stat-card strong {
  color: var(--accent-dark);
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(3.4rem, 5.6vw, 6rem);
  line-height: .9;
}
.stat-card p {
  font-size: 1.08rem;
  line-height: 1.35;
  max-width: 260px;
}

.section-head { align-items: end; display: flex; gap: 24px; justify-content: space-between; margin-bottom: 34px; }
.solutions { grid-template-columns: repeat(4, 1fr); }
.solution-card {
  border-radius: var(--radius);
  color: var(--white);
  min-height: 310px;
  overflow: hidden;
  padding: 20px;
  position: relative;
  display: flex;
  align-items: end;
  background:
    linear-gradient(150deg, rgba(30,26,22,.05), rgba(30,26,22,.78)),
    var(--img, url("../img/generated/b2b-spaces-collage.png") var(--pos, 0% 0%) / 400% 200% no-repeat),
    linear-gradient(135deg,#bda88e,#4a4139);
}
.solution-card::before { content: ""; inset: 0; position: absolute; background: inherit; transition: transform .5s ease; z-index: -1; }
.solution-card:hover::before { transform: scale(1.06); }
.solution-card p { color: rgba(255,255,255,.74); }
.solution-card:first-child { --pos: 0% 0%; }
.solution-restaurant { --pos: 33% 0%; }
.solution-office { --pos: 66% 0%; }
.solution-retail { --pos: 100% 0%; }
.solution-spa { --pos: 0% 100%; }
.solution-medical { --pos: 33% 100%; }
.solution-auto { --pos: 66% 100%; }
.solution-gas { --pos: 100% 100%; }
.arrow { margin-left: auto; color: var(--accent); }

.dark-band { background: var(--dark); color: var(--white); }
.dark-band .lead, .dark-band .muted { color: rgba(255,255,255,.68); }
.dark-band .b2b-list li {
  border-color: var(--line-dark);
  color: rgba(255,255,255,.72);
}
.brand-scent { align-items: center; display: grid; gap: 48px; grid-template-columns: 1fr 1fr; }
.notes-stack { display: grid; gap: 14px; }
.note-card { background: rgba(255,255,255,.06); border-color: var(--line-dark); padding: 24px; }
.note-card span { color: var(--accent); font-family: var(--font-serif); font-size: 2rem; }

.category-grid { grid-template-columns: repeat(6, 1fr); }
.category-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-height: 210px;
  padding: 18px;
  display: flex;
  align-items: end;
  background:
    linear-gradient(145deg, rgba(255,250,243,.2), rgba(30,26,22,.5)),
    url("../img/generated/product-categories.png") var(--cat-pos, center) / cover no-repeat,
    var(--bg-soft);
  transition: transform .25s ease, box-shadow .25s ease;
}
.category-card:nth-child(1) { --cat-pos: 12% 50%; }
.category-card:nth-child(2) { --cat-pos: 24% 50%; }
.category-card:nth-child(3) { --cat-pos: 42% 50%; }
.category-card:nth-child(4) { --cat-pos: 58% 56%; }
.category-card:nth-child(5) { --cat-pos: 75% 50%; }
.category-card:nth-child(6) { --cat-pos: 90% 50%; }
.category-card h3 { color: var(--white); text-shadow: 0 2px 16px rgba(0,0,0,.34); }
.category-card:hover, .product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }

.product-grid { grid-template-columns: repeat(4, 1fr); }
.product-card {
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.product-img {
  aspect-ratio: 4 / 4.5;
  background:
    var(--photo, none),
    radial-gradient(circle at 58% 25%, rgba(255,255,255,.7), transparent 17%),
    linear-gradient(145deg, var(--c1, #d9c6af), var(--c2, #725f4f));
  position: relative;
}
.product-img::after {
  content: "";
  position: absolute;
  width: 25%;
  height: 48%;
  left: 37%;
  bottom: 16%;
  border-radius: 28px 28px 7px 7px;
  background: rgba(255,250,243,.58);
  border: 1px solid rgba(255,255,255,.5);
}
.tone-amber { --c1:#d9c6af; --c2:#725f4f; }
.tone-warm { --c1:#d7c4b5; --c2:#7d6d62; }
.tone-leather { --c1:#b7aa9c; --c2:#1f1b18; }
.tone-signature { --c1:#eee0cf; --c2:#91795e; }
.tone-carbon { --c1:#c9d0cf; --c2:#353b3d; }
.tone-cocktail { --c1:#e4c49a; --c2:#9b6650; }
.tone-forest { --c1:#c8d3bf; --c2:#475c42; }
.tone-love { --c1:#d2b5a6; --c2:#6c3435; }
.tone-floral { --c1:#ead0d2; --c2:#a77f84; }
.tone-goa { --c1:#e6c975; --c2:#4f7e70; }
.tone-pink { --c1:#efd2df; --c2:#a86379; }
.photo-amber-diffuser { --photo: url("../img/products/fallback-florescence.png") center / contain no-repeat; }
.photo-amber-diffuser-alt { --photo: url("../img/products/fallback-florescence.png") center / contain no-repeat; }
.photo-amber-bottle { --photo: url("../img/products/fallback-florescence.png") center / contain no-repeat; }
.photo-amber-refill { --photo: url("../img/products/fallback-florescence.png") center / contain no-repeat; }
.photo-black-leather { --photo: url("../img/products/fallback-signature.webp") center / contain no-repeat; }
.photo-black-sashe { --photo: url("../img/products/fallback-signature.webp") center / contain no-repeat; }
.photo-signature { --photo: url("../img/products/fallback-signature.webp") center / contain no-repeat; }
.photo-signature-alt { --photo: url("../img/products/fallback-signature.webp") center / contain no-repeat; }
.product-img[class*="photo-"]::after { display: none; }
.product-body { display: grid; gap: 10px; padding: 18px; }
.product-meta { color: var(--accent-dark); font-size: .78rem; font-weight: 700; text-transform: uppercase; }
.price { font-weight: 800; font-size: 1.1rem; }
.availability { border-radius: 999px; color: var(--ok); font-size: .78rem; width: max-content; }
.card-actions { align-items: center; display: flex; gap: 10px; justify-content: space-between; }

.steps { counter-reset: steps; grid-template-columns: repeat(5, 1fr); }
.step { border-top: 1px solid var(--line); padding-top: 22px; }
.step::before { counter-increment: steps; content: "0" counter(steps); color: var(--accent-dark); display: block; font-family: var(--font-serif); font-size: 2.6rem; line-height: 1; margin-bottom: 12px; }
.cases { grid-template-columns: repeat(3, 1fr); }
.case-card { padding: 24px; display: grid; gap: 14px; }
.quote { font-family: var(--font-serif); font-size: 1.35rem; line-height: 1.25; }

.form-grid { display: grid; gap: 14px; }
.form-row { display: grid; gap: 6px; }
label { color: var(--muted); font-size: .9rem; }
input, textarea, select {
  background: rgba(255,250,243,.56);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  min-height: 48px;
  padding: 12px 14px;
  width: 100%;
}
textarea { min-height: 124px; resize: vertical; }

.b2b-hero {
  align-items: center;
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .82fr);
  padding: 42px 0 72px;
}
.b2b-copy { display: grid; gap: 22px; }
.b2b-hero h1 { max-width: 940px; }
.b2b-media {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-height: 560px;
  overflow: hidden;
  position: relative;
  background:
    linear-gradient(145deg, rgba(30,26,22,.08), rgba(30,26,22,.48)),
    var(--b2b-img, url("../img/generated/b2b-spaces-collage.png") center / cover no-repeat),
    linear-gradient(135deg,#d9c8b6,#4c4239);
}
.b2b-media::after {
  background: rgba(255,250,243,.9);
  border-radius: 999px;
  bottom: 22px;
  color: var(--text);
  content: attr(data-label);
  left: 22px;
  padding: 9px 13px;
  position: absolute;
}
.b2b-hotel { --b2b-img: url("../img/generated/b2b-spaces-collage.png") 0% 0% / 220% 170% no-repeat; }
.b2b-restaurant { --b2b-img: url("../img/generated/b2b-spaces-collage.png") 42% 0% / 220% 170% no-repeat; }
.b2b-office { --b2b-img: url("../img/generated/b2b-spaces-collage.png") 80% 0% / 220% 170% no-repeat; }
.b2b-retail { --b2b-img: url("../img/generated/b2b-spaces-collage.png") 100% 45% / 220% 170% no-repeat; }
.b2b-spa { --b2b-img: url("../img/generated/b2b-spaces-collage.png") 0% 100% / 220% 170% no-repeat; }
.b2b-medical { --b2b-img: url("../img/generated/b2b-spaces-collage.png") 38% 100% / 220% 170% no-repeat; }
.b2b-auto { --b2b-img: url("../img/generated/b2b-spaces-collage.png") 70% 100% / 220% 170% no-repeat; }
.b2b-gas { --b2b-img: url("../img/generated/b2b-spaces-collage.png") 100% 100% / 220% 170% no-repeat; }
.b2b-grid-2 {
  align-items: start;
  display: grid;
  gap: 32px;
  grid-template-columns: .82fr 1.18fr;
}
.b2b-kicker {
  color: var(--accent-dark);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.b2b-card-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.b2b-card {
  background: rgba(255,250,243,.48);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  gap: 10px;
  padding: 22px;
}
.b2b-card strong {
  color: var(--accent-dark);
  font-size: .84rem;
  text-transform: uppercase;
}
.b2b-list {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.b2b-list li {
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  padding: 0 0 12px;
}
.zone-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.zone-pill {
  align-items: center;
  background: rgba(255,250,243,.48);
  border: 1px solid var(--line);
  border-radius: 999px;
  display: flex;
  justify-content: space-between;
  min-height: 54px;
  padding: 12px 16px;
}
.zone-pill::after {
  background: var(--accent);
  border-radius: 50%;
  content: "";
  height: 7px;
  width: 7px;
}
.equipment-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.equipment-card {
  background:
    linear-gradient(145deg, rgba(255,250,243,.72), rgba(255,250,243,.3)),
    radial-gradient(circle at 78% 8%, rgba(181,138,90,.18), transparent 26%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-height: 220px;
  padding: 22px;
}
.process-grid {
  counter-reset: process;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.process-step {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.process-step::before {
  color: var(--accent-dark);
  content: "0" counter(process);
  counter-increment: process;
  display: block;
  font-family: var(--font-serif);
  font-size: 2.3rem;
  line-height: 1;
  margin-bottom: 12px;
}
.benefit-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.b2b-case {
  align-items: stretch;
  display: grid;
  gap: 0;
  grid-template-columns: .9fr 1.1fr;
  overflow: hidden;
}
.case-media {
  min-height: 360px;
  background:
    linear-gradient(150deg, rgba(30,26,22,.08), rgba(30,26,22,.42)),
    var(--b2b-img, url("../img/generated/b2b-spaces-collage.png") center / cover no-repeat);
}
.case-body { display: grid; gap: 14px; padding: 28px; }
.b2b-lead-form {
  background: rgba(255,250,243,.48);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}
.b2b-form-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.b2b-form-grid .span-2 { grid-column: 1 / -1; }

.breadcrumbs { color: var(--muted); font-size: .92rem; padding: 28px 0 0; }
.catalog-hero { align-items: center; display: grid; gap: 36px; grid-template-columns: 1fr .6fr; padding: 42px 0 36px; }
.chips, .category-nav { display: flex; flex-wrap: wrap; gap: 10px; }
.chip, .cat-tab {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  padding: 9px 13px;
  white-space: nowrap;
}
.cat-tab.active { background: var(--text); color: var(--white); }
.catalog-shell { align-items: start; display: grid; gap: 28px; grid-template-columns: 290px 1fr; }
.filters {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  position: sticky;
  top: 106px;
}
.filter-group { border-bottom: 1px solid var(--line); padding: 0 0 18px; margin-bottom: 18px; }
.filter-group:last-child { border-bottom: 0; margin-bottom: 0; padding-bottom: 0; }
.check { align-items: center; display: flex; gap: 9px; margin-top: 10px; color: var(--muted); }
.check input { width: auto; min-height: auto; accent-color: var(--accent-dark); }
.sortbar { align-items: center; display: flex; gap: 14px; justify-content: space-between; margin-bottom: 18px; }
.view-toggle { display: flex; gap: 6px; }
.filter-open { display: none; }
.seo-block { align-items: center; display: grid; gap: 28px; grid-template-columns: 1fr 1fr; }
.seo-images { display: grid; gap: 16px; grid-template-columns: 1fr 1fr; }
.small-visual { min-height: 280px; border-radius: var(--radius); background: url("../img/generated/ingredients-editorial.png") center / cover no-repeat, linear-gradient(145deg,#d4c1a8,#5b4e43); }
.small-visual:nth-child(2) { background-image: url("../img/generated/refill-editorial.png"), linear-gradient(145deg,#d4c1a8,#5b4e43); }
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 42px; }
.pagination a { border: 1px solid var(--line); border-radius: 999px; padding: 10px 14px; }
.pagination a.active { background: var(--text); color: var(--white); }

.product-main { align-items: start; display: grid; gap: 48px; grid-template-columns: 1.05fr .95fr; padding: 44px 0 72px; }
.gallery-main { min-height: 680px; border-radius: var(--radius); position: relative; background: linear-gradient(145deg, var(--g1,#dccab5), var(--g2,#6a5648)); overflow: hidden; }
.gallery-main::after { content: ""; position: absolute; width: 24%; height: 58%; left: 38%; bottom: 14%; border-radius: 42px 42px 8px 8px; background: rgba(255,250,243,.6); border: 1px solid rgba(255,255,255,.52); }
.gallery-main.has-photo {
  background:
    var(--gallery-photo),
    linear-gradient(145deg, var(--g1,#dccab5), var(--g2,#6a5648));
}
.gallery-main.has-photo::after { display: none; }
.gallery-amber-1 { --gallery-photo: url("../img/products/fallback-florescence.png") center / contain no-repeat; }
.gallery-badge { position: absolute; left: 18px; top: 18px; z-index: 1; background: var(--white); border-radius: 999px; padding: 8px 12px; color: var(--accent-dark); }
.thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-top: 12px; }
.thumb { aspect-ratio: 1; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(145deg, var(--g1), var(--g2)); }
.thumb.has-photo {
  background:
    var(--thumb-photo),
    linear-gradient(145deg, var(--g1), var(--g2));
}
.thumb-photo-amber-1 { --thumb-photo: url("../img/products/fallback-florescence.png") center / cover no-repeat; }
.thumb-photo-amber-2 { --thumb-photo: url("../img/products/fallback-florescence.png") center / cover no-repeat; }
.thumb-photo-amber-3 { --thumb-photo: url("../img/products/fallback-florescence.png") center / cover no-repeat; }
.thumb-photo-amber-4 { --thumb-photo: url("../img/products/fallback-florescence.png") center / cover no-repeat; }
.thumb-photo-signature { --thumb-photo: url("../img/products/fallback-signature.webp") center / cover no-repeat; }
.thumb.active { border-color: var(--accent-dark); box-shadow: inset 0 0 0 2px var(--accent-dark); }
.thumb-1 { --g1:#dccab5; --g2:#6a5648; }
.thumb-2 { --g1:#eee3d3; --g2:#927b61; }
.thumb-3 { --g1:#c7b19a; --g2:#342b26; }
.thumb-4 { --g1:#d9d1c8; --g2:#5a605b; }
.thumb-5 { --g1:#e5c6b1; --g2:#704f45; }
.product-info { display: grid; gap: 20px; }
.sku { color: var(--muted); font-size: .9rem; }
.product-price { font-size: 2rem; font-weight: 800; }
.status-out { color: var(--danger); }
.note-list { display: grid; gap: 8px; margin: 0; padding: 0; list-style: none; color: var(--muted); }
.selector { display: flex; flex-wrap: wrap; gap: 8px; }
.pill { border: 1px solid var(--line); border-radius: 999px; background: transparent; padding: 9px 14px; }
.pill.active { background: var(--text); color: var(--white); }
.quantity { align-items: center; border: 1px solid var(--line); border-radius: 999px; display: inline-flex; overflow: hidden; width: max-content; }
.quantity button { background: transparent; border: 0; height: 42px; width: 42px; }
.quantity span { min-width: 36px; text-align: center; }
.benefits { grid-template-columns: repeat(4, 1fr); }
.benefit { padding: 18px; text-align: center; }
.tabs { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.tab-buttons { display: grid; grid-template-columns: repeat(4, 1fr); border-bottom: 1px solid var(--line); }
.tab-btn { background: transparent; border: 0; border-right: 1px solid var(--line); padding: 16px; color: var(--muted); }
.tab-btn:last-child { border-right: 0; }
.tab-btn.active { background: var(--text); color: var(--white); }
.tab-panel { display: none; padding: 28px; }
.tab-panel.active { display: block; }
.scent-pyramid { grid-template-columns: repeat(3, 1fr); }

.commerce-hero {
  align-items: end;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 48px 0 34px;
}
.commerce-shell {
  align-items: start;
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 1fr) 390px;
}
.commerce-panel,
.summary-card,
.checkout-card {
  background: rgba(255,250,243,.48);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.cart-list { display: grid; gap: 14px; }
.cart-item {
  align-items: center;
  display: grid;
  gap: 18px;
  grid-template-columns: 116px minmax(0, 1fr) auto auto;
  padding: 16px;
}
.cart-thumb {
  aspect-ratio: 1;
  border-radius: var(--radius);
  background:
    var(--photo, url("../img/products/fallback-florescence.png") center / contain no-repeat),
    linear-gradient(145deg, #e8dfd2, #bda88e);
}
.cart-title { display: grid; gap: 5px; }
.cart-title a { font-weight: 800; }
.cart-remove {
  background: transparent;
  border: 0;
  color: var(--muted);
  padding: 8px;
}
.cart-remove:hover { color: var(--danger); }
.summary-card {
  display: grid;
  gap: 18px;
  padding: 24px;
  position: sticky;
  top: 106px;
}
.summary-line {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding-bottom: 12px;
}
.summary-line.total {
  border-bottom: 0;
  font-size: 1.25rem;
  font-weight: 800;
}
.promo-form {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr auto;
}
.checkout-layout {
  align-items: start;
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 1fr) 420px;
}
.checkout-flow { display: grid; gap: 18px; }
.checkout-card { padding: 24px; }
.checkout-card h2 { font-size: clamp(1.8rem, 2.5vw, 3rem); margin-bottom: 18px; }
.checkout-grid { display: grid; gap: 14px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.span-2 { grid-column: 1 / -1; }
.choice-grid { display: grid; gap: 12px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.choice-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  display: grid;
  gap: 6px;
  padding: 16px;
}
.choice-card input { min-height: auto; width: auto; }
.choice-card:has(input:checked) {
  background: rgba(181,138,90,.12);
  border-color: var(--accent-dark);
}
.order-item {
  align-items: center;
  display: grid;
  gap: 12px;
  grid-template-columns: 64px 1fr auto;
}
.order-item .cart-thumb { border: 1px solid var(--line); }
.checkout-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.checkout-step {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  padding: 8px 12px;
}
.checkout-step.active {
  background: var(--text);
  color: var(--white);
}

.site-footer { background: var(--dark); color: var(--white); padding: 72px 0 28px; }
.footer-grid { display: grid; gap: 36px; grid-template-columns: 1.4fr 1fr 1fr 1fr; }
.footer-logo { max-width: 360px; }
.footer-logo img { filter: invert(1); height: auto; width: 100%; }
.footer-col { display: grid; gap: 11px; align-content: start; }
.footer-col a, .footer-col p { color: rgba(255,255,255,.68); }
.footer-bottom { border-top: 1px solid var(--line-dark); color: rgba(255,255,255,.52); margin-top: 44px; padding-top: 22px; }

.toast {
  bottom: 22px;
  left: 50%;
  position: fixed;
  transform: translate(-50%, 20px);
  background: var(--text);
  color: var(--white);
  border-radius: 999px;
  padding: 12px 18px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
  z-index: 120;
}
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }
.modal {
  align-items: center;
  background: rgba(24,21,18,.62);
  display: none;
  inset: 0;
  justify-content: center;
  padding: 18px;
  position: fixed;
  z-index: 100;
}
.modal.is-open { display: flex; }
.modal-card { background: var(--bg); border-radius: var(--radius); max-width: 480px; padding: 28px; position: relative; width: 100%; }
.modal-close { position: absolute; right: 14px; top: 14px; }

.reveal { opacity: .86; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1199px) {
  .container { width: min(100% - 36px, var(--container)); }
  .main-nav, .phone, .desktop-only { display: none; }
  .burger { display: inline-grid; }
  .header-inner { grid-template-columns: auto 1fr auto; min-height: 74px; }
  .hero-grid, .brand-scent, .catalog-hero, .product-main, .commerce-shell, .checkout-layout, .b2b-hero, .b2b-grid-2, .b2b-case { grid-template-columns: 1fr; }
  .visual, .gallery-main { min-height: 460px; }
  .logos, .stats, .solutions, .product-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-card { min-height: 220px; padding: 38px 34px; }
  .category-grid { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .process-grid, .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .zone-grid, .equipment-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .b2b-media { min-height: 460px; }
  .cases, .scent-pyramid, .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .catalog-shell { grid-template-columns: 1fr; }
  .filter-open { display: inline-flex; }
  .filters {
    background: var(--bg);
    inset: 0 auto 0 0;
    max-width: 360px;
    overflow: auto;
    position: fixed;
    transform: translateX(-105%);
    transition: transform .28s ease;
    width: calc(100% - 42px);
    z-index: 90;
  }
  .filters.is-open { transform: translateX(0); box-shadow: var(--shadow); }
  .category-nav { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 6px; }
  .summary-card { position: static; }
}

@media (max-width: 767px) {
  .container { width: min(100% - 32px, var(--container)); }
  .section { padding: 68px 0; }
  .section-tight { padding: 46px 0; }
  h1, .hero-copy h1 { font-size: clamp(2.25rem, 10vw, 3.35rem); }
  h2 { font-size: clamp(2rem, 10vw, 3.4rem); }
  .header-actions .icon-btn:nth-of-type(1), .header-actions .icon-btn:nth-of-type(2), .lang { display: none; }
  .logo { width: 194px; }
  .hero { min-height: auto; padding-top: 28px; }
  .hero-grid { gap: 28px; }
  .visual, .gallery-main { min-height: 320px; }
  .section-head, .sortbar { align-items: stretch; flex-direction: column; }
  .logos, .stats, .solutions, .category-grid, .product-grid, .steps, .cases, .benefits, .scent-pyramid, .footer-grid, .seo-block, .seo-images, .b2b-card-grid, .zone-grid, .equipment-grid, .process-grid, .benefit-grid, .b2b-form-grid { grid-template-columns: 1fr; }
  .stat-card { min-height: 190px; padding: 34px 28px; }
  .category-card { min-height: 160px; }
  .tab-buttons { display: none; }
  .tab-panel { display: block; border-top: 1px solid var(--line); padding: 18px; }
  .tab-panel::before { content: attr(data-title); display: block; font-weight: 800; margin-bottom: 10px; }
  .thumbs { grid-template-columns: repeat(4, 1fr); }
  .actions .btn, .product-info .btn { width: 100%; }
  .commerce-hero { align-items: stretch; flex-direction: column; padding: 34px 0 26px; }
  .b2b-hero { gap: 28px; padding: 30px 0 52px; }
  .b2b-media { min-height: 330px; }
  .b2b-lead-form, .case-body { padding: 20px; }
  .cart-item { grid-template-columns: 86px 1fr; }
  .cart-item .quantity, .cart-item .price, .cart-remove { justify-self: start; }
  .promo-form, .checkout-grid, .choice-grid { grid-template-columns: 1fr; }
  .checkout-card, .summary-card { padding: 18px; }
  .order-item { grid-template-columns: 56px 1fr; }
  .order-item .price { grid-column: 2; }
}
