/* ==========================================================================
   Tokens
   ========================================================================== */
/* Base layout and components. Responsive overrides live in media.css */

:root {
  --olive: #7c892c;
  --olive-d: #5e6922;
  --olive-m: #e7ead3;
  --cream: #f6f3ea;
  --paper: #fffef9;
  --wash: #efece1;
  --ink: #2a2c22;
  --muted: #7a7c70;
  --line: #e6e3d8;
  --sale: #d63c32;
  --sale-d: #b52f27;
  --sale-m: #f8cfcb;
  --ring: rgba(42, 44, 34, .12);
  --r: 18px;
  --pill: 999px;
  --w: 1200px;
  --section-y: 48px;
  --gutter: 20px;
  --shadow: 0 1px 0 rgba(42, 44, 34, .04);
  --fs-12: 12px;
  --fs-14: 14px;
  --fs-16: 16px;
  --fs-20: 20px;
  --fs-24: 24px;
  --fs-32: 32px;
  --icon: 16px;
}

/* ==========================================================================
   Reset
   ========================================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Manrope, sans-serif;
  background: var(--cream);
  color: var(--ink);
  font-size: var(--fs-16);
  line-height: 1.45;
  overflow-x: hidden;
}

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

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

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
}

button {
  cursor: pointer;
}

button:disabled,
input:disabled,
select:disabled,
textarea:disabled {
  cursor: not-allowed;
  opacity: .45;
}

.wrap {
  width: min(var(--w), calc(100% - var(--gutter) * 2));
  margin: 0 auto;
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  padding: 20px 0 0;
}

.hero-slider {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  background: #e8e6e0;
  isolation: isolate;
  box-shadow:
    0 1px 0 rgba(42, 44, 34, .04),
    0 18px 48px rgba(42, 44, 34, .08);
}

.hero-slider.swiper-horizontal>.swiper-pagination-bullets,
.hero-slider .hero-slider__pagination {
  bottom: 16px;
}

.hero-slider .swiper-wrapper {
  align-items: stretch;
}

.hero-slider__slide {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 8 / 3;
  margin: 0;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  background: #e8e6e0;
}

.hero-slider__slide img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center right;
}

.hero-slider__copy {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 12px;
  width: min(46%, 560px);
  padding: clamp(24px, 4.5vw, 56px);
  padding-left: clamp(64px, 7vw, 80px);
  background: none;
  pointer-events: none;
}

.hero-slider__copy .btn {
  pointer-events: none;
}

.hero-slider__copy>* {
  opacity: 0;
  transform: translateY(18px);
}

.hero-slider__slide.swiper-slide-active .hero-slider__copy>* {
  animation: heroIn .55s cubic-bezier(.22, 1, .36, 1) forwards;
}

.hero-slider__slide.swiper-slide-active .hero-slider__copy>*:nth-child(1) {
  animation-delay: .08s;
}

.hero-slider__slide.swiper-slide-active .hero-slider__copy>*:nth-child(2) {
  animation-delay: .16s;
}

.hero-slider__slide.swiper-slide-active .hero-slider__copy>*:nth-child(3) {
  animation-delay: .24s;
}

.hero-slider__slide.swiper-slide-active .hero-slider__copy>*:nth-child(4) {
  animation-delay: .32s;
}

@keyframes heroIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-slider__brand {
  font-size: clamp(34px, 5.2vw, 58px);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: .95;
  color: var(--olive-d);
  text-shadow: 0 1px 0 rgba(255, 254, 249, .8);
}

.hero-slider__slide--sale .hero-slider__brand {
  color: var(--sale);
}

.hero-slider__copy h1,
.hero-slider__copy .hero-slider__title {
  font-size: clamp(20px, 2.8vw, 30px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: var(--ink);
  text-shadow: 0 1px 0 rgba(255, 254, 249, .7);
}

.hero-slider__lead {
  font-size: clamp(14px, 1.4vw, 16px);
  font-weight: 500;
  color: var(--muted);
  max-width: 30ch;
}

.hero-slider__copy .btn {
  margin-top: 8px;
  height: 44px;
  padding: 0 22px;
  font-size: var(--fs-14);
  gap: 10px;
  box-shadow: 0 8px 20px rgba(124, 137, 44, .28);
}

.btn--sale {
  background: var(--sale);
}

.btn--sale:hover {
  background: var(--sale-d);
}

.hero-slider__prev,
.hero-slider__next {
  position: absolute;
  top: 50%;
  bottom: auto;
  z-index: 3;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: rgba(255, 254, 249, .72);
  border-color: transparent;
  box-shadow: 0 2px 10px rgba(42, 44, 34, .08);
  color: var(--muted);
}

.hero-slider__prev {
  left: 16px;
}

.hero-slider__next {
  right: 16px;
}

.hero-slider__prev:hover,
.hero-slider__next:hover {
  background: rgba(255, 254, 249, .95);
  color: var(--ink);
  transform: translateY(-50%);
}

.hero-slider__pagination {
  position: absolute !important;
  left: 0;
  right: 0;
  bottom: 22px !important;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 6px;
}

.hero-slider__pagination .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  margin: 0 !important;
  background: rgba(42, 44, 34, .18);
  opacity: 1;
  border-radius: 50%;
  transition: background .2s, transform .2s;
}

.hero-slider__pagination .swiper-pagination-bullet-active {
  width: 6px;
  border-radius: 50%;
  background: rgba(42, 44, 34, .4);
  transform: scale(1.15);
}

/* ==========================================================================
   Category wall
   ========================================================================== */

.cats {
  padding: var(--section-y) 0 0;
}

.cats__head {
  margin-bottom: 20px;
}

.cats__head h2 {
  margin-top: 4px;
}

.cats__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows:
    clamp(240px, 26vw, 300px) clamp(200px, 20vw, 250px) clamp(200px, 20vw, 250px);
  gap: 14px;
}

.cat {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 20px;
  background: #e8e6e0;
  min-height: 0;
  height: 100%;
  isolation: isolate;
}

.cats__grid>.cat:nth-child(1),
.cats__grid>.cat:nth-child(2) {
  grid-column: span 3;
}

.cats__grid>.cat:nth-child(3),
.cats__grid>.cat:nth-child(4),
.cats__grid>.cat:nth-child(6),
.cats__grid>.cat:nth-child(7) {
  grid-column: span 2;
}

.cat--wide {
  grid-column: span 3;
}

.cat--tall {
  grid-column: 5 / 7;
  grid-row: 2 / span 2;
}

.cat img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .55s cubic-bezier(.22, 1, .36, 1);
}

.cat::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 34%;
  pointer-events: none;
  z-index: 1;
  background:
    radial-gradient(110% 80% at 20% 100%, rgba(255, 255, 255, .88) 0%, rgba(255, 255, 255, .35) 45%, transparent 75%),
    linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, .12) 50%, rgba(255, 255, 255, .62) 100%);
}

.cat--photo::after {
  display: none;
}

.cat--pos-top img {
  object-position: center 18%;
}

.cat--pos-bottom img {
  object-position: center 82%;
}

.cat--tall.cat--pos-bottom img {
  object-position: center 95%;
}

.cat--dark::after {
  height: 38%;
  background:
    radial-gradient(120% 85% at 22% 100%, rgba(255, 255, 255, .9) 0%, rgba(255, 255, 255, .4) 48%, transparent 78%),
    linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, .15) 45%, rgba(255, 255, 255, .7) 100%);
}

.cat__name {
  position: absolute;
  left: 16px;
  right: 56px;
  bottom: 16px;
  z-index: 2;
  max-width: calc(100% - 72px);
  padding: 10px 12px 8px 4px;
  font-size: var(--fs-14);
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1.25;
  color: var(--ink);
}

.cat__name::before {
  content: "";
  position: absolute;
  left: -8px;
  right: -4px;
  top: -32px;
  bottom: -4px;
  z-index: -1;
  background: radial-gradient(ellipse 85% 80% at 30% 70%, rgba(255, 255, 255, .95) 0%, rgba(255, 255, 255, .55) 42%, rgba(255, 255, 255, 0) 78%);
  filter: blur(10px);
  pointer-events: none;
}

.cat__go {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 13px;
  background: rgba(255, 254, 249, .96);
  color: var(--ink);
  box-shadow: 0 1px 4px rgba(42, 44, 34, .08);
  transition: background .25s, color .25s, transform .25s cubic-bezier(.22, 1, .36, 1);
}

.cat:hover img {
  transform: scale(1.04);
}

.cat--photo:hover {
  box-shadow: 0 0 0 2px rgba(124, 137, 44, .35);
}

.cat:hover .cat__go {
  background: #fff;
  color: var(--olive);
  transform: translateX(2px);
}

.cat:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 3px var(--ring);
}

/* ==========================================================================
   Advantages
   ========================================================================== */

.perks {
  padding: var(--section-y) 0 0;
}

.perks__head {
  margin-bottom: 28px;
}

.perks__head h2 {
  margin-top: 4px;
}

.perks__grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: var(--paper);
  border-radius: 20px;
  overflow: hidden;
}

.perk {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 22px 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background .25s;
}

.perk:hover {
  background: var(--wash);
}

.perk__ico {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--olive-m);
  color: var(--olive-d);
  font-size: 18px;
  transition: transform .3s cubic-bezier(.22, 1, .36, 1), background .25s, color .25s;
}

.perk:hover .perk__ico {
  transform: translateY(-2px);
  background: var(--olive);
  color: #fff;
}

.perk__body h3 {
  font-size: var(--fs-16);
  font-weight: 800;
  letter-spacing: -.01em;
  margin-bottom: 4px;
  line-height: 1.2;
}

.perk__body p {
  font-size: var(--fs-14);
  color: var(--muted);
  line-height: 1.4;
  max-width: 28ch;
  margin: 0;
}

/* ==========================================================================
   Typography
   ========================================================================== */
h1,
h2,
h3 {
  font-family: Manrope, sans-serif;
  font-weight: 700;
  letter-spacing: -.02em;
}

h1 {
  font-size: var(--fs-32);
  line-height: 1.2;
  font-weight: 800;
}

h2 {
  font-size: var(--fs-24);
  line-height: 1.25;
}

h3 {
  font-size: var(--fs-20);
  line-height: 1.3;
}

.kicker {
  color: var(--olive);
  font-size: var(--fs-12);
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.lede {
  max-width: 560px;
  color: var(--muted);
  margin: 12px 0 0;
}

.hint {
  color: var(--muted);
  font-size: var(--fs-14);
  margin: 6px 0 16px;
}

.muted {
  color: var(--muted);
}

/* ==========================================================================
   Header
   ========================================================================== */

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--line);
}

.header__chrome {
  background: rgba(255, 254, 249, .82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.header.is-scrolled {
  box-shadow: var(--shadow);
}

.header__info {
  background: rgba(239, 236, 225, .72);
  border-bottom: 1px solid var(--line);
}

.header__info .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 36px;
}

.info-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
  overflow-x: auto;
  font-size: var(--fs-14);
  font-weight: 400;
}

.info-nav a {
  color: var(--muted);
  white-space: nowrap;
}

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

.info-nav a:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 3px var(--ring);
  border-radius: 6px;
}

.header__info-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.header__phone {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header__phones {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 2px 14px;
}

.header__info .header__link {
  height: 28px;
  padding: 0 6px;
  gap: 6px;
  font-size: var(--fs-14);
  font-weight: 400;
  color: var(--muted);
  border-radius: 8px;
  line-height: 1.2;
}

.header__info .header__link>i:first-child {
  color: var(--olive);
  font-size: 12px;
}

.header__info .header__link:hover {
  color: var(--ink);
  background: var(--paper);
}

.header__soc {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 14px;
  transition: transform .15s, filter .2s, box-shadow .2s;
}

.header__soc i {
  line-height: 1;
}

.header__soc--vb {
  background: #7360f2;
}

.header__soc--tg {
  background: #2aabee;
}

.header__soc:hover {
  filter: brightness(1.08);
  transform: scale(1.06);
}

.header__soc:active {
  transform: scale(.96);
}

.header__soc:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 3px var(--ring);
}

.info-login {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: var(--fs-14);
  font-weight: 400;
  white-space: nowrap;
}

.info-login i {
  color: var(--olive);
}

.info-login:hover {
  color: var(--ink);
}

.info-login:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 3px var(--ring);
  border-radius: 6px;
}

.lang {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}

.lang a,
.lang button {
  height: 24px;
  padding: 0 5px;
  border: 0;
  background: none;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .04em;
  color: #b0b1a6;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.lang a:hover,
.lang button:hover {
  color: var(--muted);
  background: transparent;
}

.lang a.is-on,
.lang button.is-on {
  color: var(--muted);
  background: transparent;
  font-weight: 600;
}

.lang a:focus-visible,
.lang button:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 3px var(--ring);
}

.header__top {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 88px;
  position: relative;
  z-index: 2;
}

.logo {
  flex-shrink: 0;
}

.logo img {
  height: 68px;
  width: auto;
}

.header__menu {
  display: none;
}

.icon-btn.header__search-btn {
  display: none;
}

.search-pill {
  flex: 1 1 240px;
  min-width: 0;
  max-width: 440px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  height: 48px;
  padding: 0 6px 0 18px;
  background: var(--cream);
  border: 1px solid transparent;
  border-radius: var(--pill);
  transition: background .2s, border-color .2s, box-shadow .2s;
}

.search-pill i {
  color: var(--muted);
  font-size: var(--icon);
}

.search-pill input {
  flex: 1;
  border: 0;
  outline: 0;
  background: none;
  font-size: var(--fs-14);
  min-width: 0;
}

.search-pill__go {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--muted);
  display: grid;
  place-items: center;
  opacity: .4;
}

.search-pill__go:hover {
  background: var(--wash);
  color: var(--ink);
  opacity: 1;
}

.search-pill:focus-within .search-pill__go {
  opacity: 1;
}

.search-pill:hover,
.search-pill.is-hover {
  background: var(--wash);
}

.search-pill:focus-within,
.search-pill.is-focus {
  background: #fff;
}

.header__tools {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.header__im {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 18px;
  transition: background .2s, color .2s, filter .2s, transform .15s, box-shadow .2s;
}

.header__im i {
  width: 1em;
  text-align: center;
  color: inherit;
}

.header__im:hover {
  background: var(--wash);
}

.header__im:active {
  transform: scale(.98);
}

.header__im:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 3px var(--ring);
}

.header__im--vb {
  color: #7360f2;
}

.header__im--tg {
  color: #2aabee;
}

.header__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 8px;
  border: 0;
  background: none;
  border-radius: 12px;
  font-size: var(--fs-14);
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  transition: background .2s, color .2s;
}

.header__link>i:first-child {
  color: var(--olive);
}

.header__link .fa-chevron-down {
  font-size: 10px;
  color: var(--muted);
  transition: transform .2s;
}

.header__link:hover {
  background: var(--wash);
}

.header__link:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 3px var(--ring);
}

.header__nav {
  border-top: 1px solid var(--line);
  background: rgba(255, 254, 249, .82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.header__nav .nav-drawer {
  width: min(var(--w), calc(100% - var(--gutter) * 2));
  margin: 0 auto;
  display: flex;
  align-items: center;
  min-height: 46px;
}

.nav-drawer__scroll {
  display: contents;
}

.nav-drawer__top,
.nav-drawer__extra,
.nav-drawer__label {
  display: none;
}

.nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 18px;
  width: 100%;
  font-size: var(--fs-16);
  font-weight: 600;
}

.nav__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 10px;
  border: 0;
  background: none;
  border-radius: 12px;
  color: var(--ink);
  font-size: var(--fs-16);
  font-weight: 600;
  white-space: nowrap;
  transition: background .2s, color .2s;
}

.nav__item>i:first-child {
  color: var(--olive);
  width: 1em;
  text-align: center;
}

.nav__item-txt {
  min-width: 0;
}

.nav__chevron,
.nav__item .fa-chevron-down {
  font-size: 10px;
  color: var(--muted);
  margin-left: 2px;
  transition: transform .2s;
}

.nav__item:hover,
.nav__item.is-hover {
  background: var(--wash);
}

.nav__item:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 3px var(--ring);
}

.nav__sale,
.nav__sale i {
  color: var(--sale) !important;
}

.nav__sale:hover,
.nav__sale.is-hover {
  color: var(--sale-d) !important;
  opacity: 1;
}

.drop {
  position: relative;
}

.menu {
  display: none;
  position: absolute;
  left: 0;
  top: calc(100% - 2px);
  z-index: 45;
  padding: 12px 10px;
  min-width: 280px;
  background: #fff;
  border: 1px solid #c9c4b6;
  border-radius: 14px;
  box-shadow:
    0 0 0 1px rgba(42, 44, 34, .04),
    0 18px 44px rgba(42, 44, 34, .2);
}

.menu::before {
  content: none;
}

.drop:hover>.menu,
.drop:focus-within>.menu {
  display: block;
}

.drop:hover>.nav__item,
.drop:focus-within>.nav__item {
  background: var(--wash);
}

.drop:hover>.nav__item .fa-chevron-down,
.drop:focus-within>.nav__item .fa-chevron-down {
  transform: rotate(180deg);
}

.header__tools .menu {
  left: auto;
  right: 0;
}

.menu button,
.menu a {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  border: 0;
  background: none;
  color: #1a1c14;
  text-align: left;
  padding: 11px 14px;
  border-radius: 10px;
  font-size: var(--fs-16);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0;
  white-space: normal;
  text-decoration: none;
  opacity: 1;
}

.menu button:first-child,
.menu a:first-child {
  margin-top: 0;
}

.menu button:last-child,
.menu a:last-child {
  margin-bottom: 0;
}

.menu button:hover,
.menu button.is-on,
.menu a:hover {
  background: var(--olive-m);
  color: #1a1c14;
}

.menu i {
  width: 1em;
  text-align: center;
  color: var(--olive);
}

.menu .nav__sale i {
  color: var(--sale);
}

.menu--wide {
  min-width: 300px;
  max-width: min(360px, calc(100vw - 32px));
  display: none;
  grid-template-columns: 1fr;
  gap: 2px;
  padding: 12px 10px;
}

.drop:hover>.menu--wide,
.drop:focus-within>.menu--wide {
  display: grid;
}

.menu--wide a {
  width: 100%;
}

/* «Показать всё» — только в мобильном меню, на ПК скрыто */
.menu .menu__all {
  display: none;
}

/* ==========================================================================
   Toast
   ========================================================================== */
.toast {
  position: fixed;
  left: 50%;
  bottom: max(24px, env(safe-area-inset-bottom));
  z-index: 120;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: min(420px, calc(100vw - 32px));
  padding: 12px 16px;
  border-radius: 14px;
  background: var(--ink);
  color: #fff;
  font-size: var(--fs-14);
  font-weight: 600;
  line-height: 1.3;
  box-shadow: 0 10px 30px rgba(42, 44, 34, .22);
  transform: translate(-50%, 12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}

.toast[hidden] {
  display: none;
}

.toast.is-on {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.toast i {
  flex-shrink: 0;
  color: #b7c86a;
  font-size: 15px;
}

.toast[data-type="err"] i {
  color: #ff8f86;
}

/* ==========================================================================
   Cart drawer
   ========================================================================== */
.cart-sheet {
  position: fixed;
  inset: 0;
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
  background: rgba(42, 44, 34, .36);
  z-index: 100;
  display: grid;
  justify-items: end;
  align-items: stretch;
}

.cart-sheet[hidden] {
  display: none;
}

.cart-sheet__box {
  width: min(440px, 100%);
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  max-height: 100dvh;
  min-height: 0;
  min-width: 0;
  box-sizing: border-box;
  background: var(--paper);
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: -16px 0 40px rgba(42, 44, 34, .14);
}

.cart-sheet__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding: 20px 20px 16px;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}

.cart-sheet__title {
  margin: 0;
  font-size: var(--fs-20);
  font-weight: 800;
  color: var(--ink);
}

.cart-sheet__count {
  margin: 4px 0 0;
  font-size: var(--fs-12);
  color: var(--muted);
  font-weight: 600;
}

.cart-sheet__body {
  flex: 1 1 auto;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  padding: 8px 16px 16px;
}

.cart-sheet__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cart-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  padding: 12px;
  border-radius: 14px;
  background: var(--cream);
}

.cart-item__img {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--wash);
}

.cart-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cart-item__main {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.cart-item__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.cart-item__info {
  min-width: 0;
  flex: 1;
}

.cart-item__name {
  margin: 0;
  font-size: var(--fs-14);
  font-weight: 700;
  line-height: 1.35;
  color: var(--ink);
}

.cart-item__meta {
  margin: 2px 0 0;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--muted);
}

.cart-item__remove {
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--muted);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  cursor: pointer;
}

.cart-item__remove:hover {
  color: var(--sale);
  background: rgba(214, 60, 50, .08);
}

.cart-item__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-width: 0;
}

.cart-item__price {
  display: grid;
  gap: 2px;
  justify-items: end;
  text-align: right;
  min-width: 0;
  flex: 1 1 auto;
}

.cart-item__price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: flex-end;
  gap: 6px;
}

.cart-item__price-old {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  text-decoration: line-through;
  white-space: nowrap;
}

.cart-item__price-now {
  font-size: var(--fs-14);
  font-weight: 800;
  color: var(--ink);
  white-space: nowrap;
}

.cart-item__price-old+.cart-item__price-now {
  color: var(--sale);
}

.cart-item__price-save {
  font-size: 11px;
  font-weight: 700;
  color: var(--olive);
  white-space: nowrap;
}

.cart-sheet__save {
  margin: -4px 0 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--olive);
}

.cart-sheet__save[hidden] {
  display: none;
}

.cart-item__qty {
  display: inline-flex;
  align-items: center;
  gap: 0;
  flex: 0 0 auto;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: var(--pill);
  background: var(--paper);
  overflow: visible;
}

.cart-item__qty button {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  padding: 0;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.cart-item__qty button:hover {
  background: var(--wash);
}

.cart-item__qty span {
  min-width: 28px;
  text-align: center;
  font-size: var(--fs-14);
  font-weight: 700;
  line-height: 1;
  color: var(--ink);
}

.cart-sheet__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 220px;
  text-align: center;
  color: var(--muted);
}

.cart-sheet__empty[hidden] {
  display: none;
}

.cart-sheet__empty i {
  font-size: 28px;
  color: var(--olive);
  opacity: .7;
}

.cart-sheet__empty p {
  margin: 0;
  font-size: var(--fs-16);
  font-weight: 600;
  color: var(--ink);
}

.cart-sheet__foot {
  margin-top: auto;
  padding: 16px 20px max(20px, env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  background: var(--paper);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cart-sheet__foot[hidden] {
  display: none;
}

.cart-sheet__sum {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-size: var(--fs-16);
}

.cart-sheet__sum b {
  font-size: var(--fs-20);
  font-weight: 800;
  letter-spacing: -.02em;
}

.cart-sheet__hint {
  margin: -4px 0 0;
  font-size: var(--fs-12);
  color: var(--muted);
}

.cart-sheet__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cart-sheet__actions .btn {
  width: 100%;
  height: 46px;
  max-width: 100%;
  box-sizing: border-box;
}

.btn.is-in-cart,
.pcard__cart.is-in-cart,
.product__cart.is-in-cart {
  background: var(--cream);
  color: var(--olive-d);
  box-shadow: inset 0 0 0 1px rgba(122, 132, 58, .35);
}

.btn.is-in-cart:hover,
.pcard__cart.is-in-cart:hover,
.product__cart.is-in-cart:hover {
  background: var(--olive-m);
  color: var(--olive-d);
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 40px;
  padding: 0 20px;
  border: 0;
  border-radius: var(--pill);
  background: var(--olive);
  color: #fff;
  font-size: var(--fs-14);
  font-weight: 700;
  transition: background .2s, transform .15s, box-shadow .2s;
}

.btn:hover,
.btn.is-hover {
  background: var(--olive-d);
}

.btn:active,
.btn.is-active {
  transform: scale(.97);
}

.btn:focus-visible,
.btn.is-focus {
  outline: 0;
  box-shadow: 0 0 0 3px var(--ring);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.btn--ghost:hover,
.btn--ghost.is-hover {
  background: var(--wash);
  border-color: transparent;
  color: var(--ink);
}

.btn--soft {
  background: var(--wash);
  color: var(--ink);
}

.btn--soft:hover {
  background: #e6e2d6;
}

/* ==========================================================================
   Icon buttons
   ========================================================================== */

.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 0;
  background: transparent;
  color: var(--ink);
  display: grid;
  place-items: center;
  position: relative;
  font-size: var(--icon);
  transition: background .2s, color .2s, transform .15s, box-shadow .2s;
}

.icon-btn i {
  font-size: inherit;
  width: 1em;
  text-align: center;
}

.icon-btn:hover,
.icon-btn.is-hover {
  background: var(--wash);
  color: var(--ink);
}

.icon-btn:active,
.icon-btn.is-active {
  transform: scale(.94);
}

.icon-btn:focus-visible,
.icon-btn.is-focus {
  outline: 0;
  box-shadow: 0 0 0 3px var(--ring);
}

.icon-btn.is-on,
.icon-btn[aria-pressed="true"] {
  color: var(--ink);
  background: var(--wash);
}

.icon-btn--fill {
  background: var(--olive);
  color: #fff;
}

.icon-btn--fill:hover {
  background: var(--olive-d);
  color: #fff;
}

.icon-btn.header__menu {
  display: none;
}

.header__actions {
  display: flex;
  align-items: stretch;
  flex-shrink: 0;
}

.tool {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-width: 82px;
  padding: 0 12px;
  border: 0;
  background: none;
  color: var(--ink);
  text-decoration: none;
  cursor: pointer;
  font: inherit;
  transition: color .2s, background .2s;
}

.tool+.tool {
  border-left: 1px solid var(--line);
}

.tool:hover,
.tool.is-on,
.tool[aria-pressed="true"] {
  color: var(--olive);
}

.tool:focus-visible {
  outline: 0;
  box-shadow: inset 0 0 0 3px var(--ring);
  border-radius: 10px;
}

.tool:active {
  transform: scale(.97);
}

.tool__ico {
  position: relative;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  line-height: 1;
}

.tool__ico svg,
.tool__ico i {
  display: block;
  width: auto;
  height: 19px;
  font-size: 18px;
  line-height: 1;
}

.tool__txt {
  font-size: var(--fs-12);
  line-height: 1.2;
  white-space: nowrap;
  color: inherit;
}

.tool .badge {
  top: -4px;
  right: -10px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  line-height: 18px;
  font-size: var(--fs-12);
  font-weight: 700;
  background: var(--olive-m);
  color: var(--olive-d);
  box-shadow: none;
  display: grid;
  place-items: center;
  text-align: center;
}

.tool .badge.is-empty {
  opacity: 1;
}

/* ==========================================================================
   Social
   ========================================================================== */
.soc {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: var(--icon);
  transition: transform .15s, filter .2s, box-shadow .2s;
}

.soc:hover,
.soc.is-hover {
  filter: brightness(.9);
  transform: scale(1.05);
}

.soc:active {
  transform: scale(.96);
}

.soc:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 3px var(--ring);
}

.soc--ig {
  background: radial-gradient(circle at 30% 110%, #fdf497 0 8%, #fd5949 42%, #d6249f 62%, #285aeb 100%);
}

.soc--fb {
  background: #1877f2;
}

.soc--yt {
  background: #e11d24;
}

.soc--tg {
  background: #2aabee;
}

.soc--tt {
  background: #111;
}

.soc--vb {
  background: #7360f2;
}

.soc--wa {
  background: #25d366;
}

.badge {
  position: absolute;
  top: 4px;
  right: 2px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: var(--pill);
  background: var(--olive);
  color: #fff;
  font-size: var(--fs-12);
  font-weight: 700;
  line-height: 18px;
}

/* ==========================================================================
   Chips
   ========================================================================== */

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 34px;
  padding: 0 14px;
  border: 0;
  border-radius: var(--pill);
  background: var(--paper);
  color: var(--ink);
  font-size: var(--fs-14);
  font-weight: 600;
  transition: background .2s, color .2s, box-shadow .2s;
}

.chip:hover,
.chip.is-hover {
  background: var(--wash);
}

.chip.is-on,
.chip[aria-pressed="true"] {
  background: var(--olive);
  color: #fff;
}

.chip:focus-visible,
.chip.is-focus {
  outline: 0;
  box-shadow: 0 0 0 3px var(--ring);
}

.chip--ghost {
  background: transparent;
  border: 1px solid var(--line);
  height: 36px;
}

.chip--sale {
  color: var(--sale);
}

.chip--sale.is-on {
  background: var(--sale);
  color: #fff;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

/* ==========================================================================
   Tabs
   ========================================================================== */

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 28px;
  border-bottom: 1px solid var(--line);
}

.tabs--states {
  margin-top: 16px;
}

.tab {
  display: inline-flex;
  align-items: center;
  height: 44px;
  padding: 0;
  border: 0;
  background: none;
  font-size: var(--fs-14);
  font-weight: 600;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color .2s, border-color .2s, box-shadow .2s;
}

.tab:hover,
.tab.is-hover {
  color: var(--ink);
}

.tab.is-on,
.tab[aria-selected="true"] {
  color: var(--ink);
  border-bottom-color: var(--olive);
}

.tab:focus-visible,
.tab.is-focus {
  outline: 0;
  box-shadow: 0 0 0 3px var(--ring);
  border-radius: 4px;
}

.tab-panels {
  margin: 16px 0 8px;
  min-height: 48px;
}

.tab-panel {
  color: var(--muted);
  font-size: var(--fs-14);
  max-width: 560px;
}

.tab-panel[hidden] {
  display: none;
}

.seg {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 4px;
  padding: 4px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--pill);
}

.seg--states {
  display: flex;
  margin-top: 12px;
}

.seg__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  padding: 0 16px;
  border: 0;
  border-radius: var(--pill);
  background: transparent;
  color: var(--muted);
  font-size: var(--fs-14);
  font-weight: 600;
  transition: background .2s, color .2s, box-shadow .2s;
}

.seg__btn:hover,
.seg__btn.is-hover {
  background: var(--wash);
  color: var(--ink);
}

.seg__btn.is-on,
.seg__btn[aria-selected="true"] {
  background: var(--olive);
  color: #fff;
}

.seg__btn:focus-visible,
.seg__btn.is-focus {
  outline: 0;
  box-shadow: 0 0 0 3px var(--ring);
}

/* ==========================================================================
   Sliders
   ========================================================================== */

.sbtn {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-size: var(--icon);
  transition: background .2s, border-color .2s, color .2s, transform .15s, box-shadow .2s;
}

.sbtn i {
  font-size: inherit;
  width: 1em;
  text-align: center;
}

.sbtn:hover,
.sbtn.is-hover {
  background: var(--wash);
  border-color: transparent;
}

.sbtn:active,
.sbtn.is-active {
  transform: scale(.94);
}

.sbtn:focus-visible,
.sbtn.is-focus {
  outline: 0;
  box-shadow: 0 0 0 3px var(--ring);
}

.sbtn--ghost {
  background: rgba(255, 254, 249, .88);
  border-color: transparent;
  backdrop-filter: blur(8px);
}

.sbtn--ghost:hover,
.sbtn--ghost.is-hover {
  background: var(--paper);
}

.slider {
  max-width: 280px;
}

.slider__view {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: var(--paper);
}

.slider__track {
  display: grid;
}

.slider__slide {
  grid-area: 1 / 1;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}

.slider__slide.is-on {
  opacity: 1;
  pointer-events: auto;
}

.slider__slide img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  background: var(--cream);
}

.slider__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  pointer-events: none;
}

.slider__overlay .sbtn {
  pointer-events: auto;
}

.slider__frac {
  margin-top: 10px;
  text-align: center;
  font-size: var(--fs-12);
  font-weight: 700;
  color: var(--muted);
  letter-spacing: .08em;
}

.slider-ghost-demo {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  align-items: center;
  margin-top: 12px;
  padding: 28px 20px;
  min-height: 120px;
  border-radius: 14px;
  background: #3a4630 url("../image/products/01_IMG_8572-336x470.jpg") center / cover;
}

.slider-ghost-demo .demo {
  color: #fff;
}

/* ==========================================================================
   Pagination
   ========================================================================== */

.dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--line);
  transition: width .2s, background .2s, box-shadow .2s;
}

.dot:hover,
.dot.is-hover {
  background: #cfcbbd;
}

.dot.is-on {
  width: 22px;
  border-radius: var(--pill);
  background: var(--olive);
}

.dot:focus-visible,
.dot.is-focus {
  outline: 0;
  box-shadow: 0 0 0 3px var(--ring);
}

.pager {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin: 20px 0 8px;
}

.page {
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  font-size: var(--fs-14);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s, box-shadow .2s;
  text-decoration: none;
  box-sizing: border-box;
}

a.page:hover,
.page:hover,
.page.is-hover {
  background: var(--wash);
}

.page.is-on {
  background: var(--olive);
  color: #fff;
}

.page:focus-visible,
.page.is-focus {
  outline: 0;
  box-shadow: 0 0 0 3px var(--ring);
}

.page--gap {
  min-width: 24px;
  padding: 0;
  color: var(--muted);
  pointer-events: none;
}

.hint--after {
  margin: 24px 0 12px;
}

/* ==========================================================================
   Fields
   ========================================================================== */

.field {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 44px;
  padding: 0 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--pill);
  transition: border-color .2s, box-shadow .2s, background .2s;
}

.field i {
  color: var(--muted);
  font-size: var(--icon);
  width: 1em;
  text-align: center;
}

.field input {
  flex: 1;
  border: 0;
  outline: 0;
  background: none;
  min-width: 0;
}

.field:hover,
.field.is-hover {
  border-color: #cfcbbd;
}

.field:focus-within,
.field.is-focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px var(--ring);
}

.field.is-error {
  border-color: var(--sale);
  box-shadow: 0 0 0 3px var(--sale-m);
}

.field--area {
  height: auto;
  min-height: 96px;
  padding: 12px 16px;
  align-items: flex-start;
  border-radius: var(--r);
}

.field--area textarea {
  flex: 1;
  width: 100%;
  border: 0;
  outline: 0;
  background: none;
  resize: vertical;
  min-height: 72px;
  line-height: 1.45;
  font-size: var(--fs-14);
}

.field select {
  flex: 1;
  border: 0;
  outline: 0;
  background: none;
  min-width: 0;
  appearance: none;
  cursor: pointer;
}

.field--select {
  position: relative;
}

.field--select .fa-chevron-down {
  margin-left: auto;
  pointer-events: none;
  font-size: var(--fs-12);
}

/* ==========================================================================
   Links
   ========================================================================== */

.link {
  color: var(--olive-d);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color .2s, text-decoration-color .2s;
}

.link:hover,
.link.is-hover {
  color: var(--olive);
}

.link:active,
.link.is-active {
  color: var(--ink);
}

.link:focus-visible,
.link.is-focus {
  outline: 2px solid var(--olive);
  outline-offset: 3px;
  border-radius: 4px;
}

.link.is-visited {
  color: #6a5a7a;
}

.link--quiet {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}

.link--quiet:hover,
.link--quiet.is-hover {
  color: var(--olive-d);
  border-bottom-color: var(--olive);
}

.link--sale {
  color: var(--sale);
}

.link--sale:hover {
  color: var(--sale-d);
}

.link i {
  font-size: var(--fs-12);
}

.prose {
  max-width: 640px;
  color: var(--muted);
}

.prose p {
  margin: 0 0 12px;
}

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  align-items: center;
}

/* ==========================================================================
   Choice controls
   ========================================================================== */

.choice {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--fs-14);
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  user-select: none;
}

.choice input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}

.choice__box,
.choice__dot {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border: 1.5px solid var(--line);
  background: var(--paper);
  display: grid;
  place-items: center;
  transition: background .2s, border-color .2s, box-shadow .2s;
}

.choice__box {
  border-radius: 6px;
}

.choice__dot {
  border-radius: 50%;
}

.choice__box i {
  font-size: var(--fs-12);
  color: #fff;
  opacity: 0;
  line-height: 1;
}

.choice:hover .choice__box,
.choice:hover .choice__dot,
.choice.is-hover .choice__box,
.choice.is-hover .choice__dot {
  border-color: var(--ink);
}

.choice input:focus-visible+.choice__box,
.choice input:focus-visible+.choice__dot,
.choice.is-focus .choice__box,
.choice.is-focus .choice__dot {
  box-shadow: 0 0 0 3px var(--ring);
}

.choice input:checked+.choice__box,
.choice.is-on .choice__box {
  background: var(--olive);
  border-color: var(--olive);
}

.choice input:checked+.choice__box i,
.choice.is-on .choice__box i {
  opacity: 1;
}

.choice input:checked+.choice__dot,
.choice.is-on .choice__dot {
  border-color: var(--olive);
}

.choice input:checked+.choice__dot::after,
.choice.is-on .choice__dot::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--olive);
}

.choice.is-disabled,
.choice:has(input:disabled) {
  opacity: .45;
  cursor: not-allowed;
}

.switch {
  width: 40px;
  height: 24px;
  border-radius: var(--pill);
  background: var(--line);
  border: 0;
  padding: 3px;
  position: relative;
  transition: background .2s, box-shadow .2s;
}

.switch::after {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  transition: transform .2s;
}

.switch[aria-checked="true"],
.switch.is-on {
  background: var(--olive);
}

.switch[aria-checked="true"]::after,
.switch.is-on::after {
  transform: translateX(16px);
}

.switch:focus-visible,
.switch.is-focus {
  outline: 0;
  box-shadow: 0 0 0 3px var(--ring);
}

.file {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.file input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.file__name {
  font-size: var(--fs-14);
  color: var(--muted);
}

.range {
  width: 100%;
  accent-color: var(--olive);
}

.choices {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.err {
  color: var(--sale);
  font-size: var(--fs-12);
  margin-top: 6px;
  display: block;
}

/* ==========================================================================
   Product cards
   ========================================================================== */

.pcard {
  background: var(--paper);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
}

.pcard:hover,
.pcard.is-hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(42, 44, 34, .08);
}

.pcard__media {
  position: relative;
}

.pcard__media a {
  display: block;
}

.pcard__media img {
  width: 100%;
  aspect-ratio: 2 / 3;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 0;
  background: var(--cream);
}

.pcard__badges {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.pcard__tools {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pcard__eco {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--paper);
  color: var(--olive-d);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-12);
  font-weight: 800;
  line-height: 1;
  gap: 2px;
}

.pcard__eco i {
  font-size: var(--fs-14);
  color: var(--olive);
}

.pcard__yt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 22px;
  padding: 0;
  border-radius: 6px;
  background: transparent;
  line-height: 0;
  box-shadow: 0 2px 8px rgba(42, 44, 34, .16);
}

.pcard__yt svg {
  display: block;
  width: 32px;
  height: 22px;
}

.pcard__new {
  height: 28px;
  padding: 0 12px;
  border-radius: var(--pill);
  background: var(--wash);
  color: var(--ink);
  font-size: var(--fs-12);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
}

.pcard__rec {
  height: 28px;
  padding: 0 12px;
  border-radius: var(--pill);
  background: var(--olive);
  color: #fff;
  font-size: var(--fs-12);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
}

.pcard__off {
  height: 28px;
  padding: 0 12px;
  border-radius: var(--pill);
  background: var(--sale);
  color: #fff;
  font-size: var(--fs-12);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
}

.pcard__tool {
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 254, 249, .72);
  color: #9aa094;
  display: grid;
  place-items: center;
  font-size: var(--fs-14);
  backdrop-filter: blur(6px);
  transition: color .2s, background .2s;
}

.pcard__tool:hover {
  color: var(--ink);
  background: rgba(255, 254, 249, .92);
}

.pcard__tool.is-on {
  color: var(--ink);
  background: rgba(255, 254, 249, .92);
}

.pcard__tool:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 3px var(--ring);
}

.pcard__body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.pcard__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-12);
}

.pcard__stock {
  color: var(--olive);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.pcard__stock i {
  font-size: var(--icon);
}

.pcard__stock.is-out {
  color: var(--muted);
  font-weight: 600;
}

.pcard__sku {
  color: var(--muted);
}

.pcard__name {
  margin: 0;
  font-size: var(--fs-16);
  font-weight: 700;
  letter-spacing: -.01em;
  line-height: 1.35;
  min-height: 2.7em;
}

.pcard__name a:hover {
  color: var(--olive);
}

.pcard__buy {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}

.pcard__price {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: var(--fs-20);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.02em;
  margin-right: auto;
  line-height: 1.15;
}

.pcard__price.is-sale {
  color: var(--sale);
}

.pcard__old {
  display: block;
  font-size: var(--fs-12);
  font-weight: 600;
  color: var(--muted);
  text-decoration: line-through;
}

.pcard__now {
  display: block;
  white-space: nowrap;
}

.pcard__buy .btn {
  flex-shrink: 0;
  padding: 0 14px;
}

.pcard.is-soldout .pcard__media img {
  filter: grayscale(1);
  opacity: .82;
}

.pcard.is-soldout .pcard__price {
  color: var(--muted);
}

.pcard.is-soldout .pcard__buy {
  justify-content: flex-start;
}

/* ==========================================================================
   Home products
   ========================================================================== */

.products {
  padding: var(--section-y) 0 0;
}

.products .wrap {
  width: min(var(--w), calc(100% - var(--gutter) * 2));
}

.products__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.products__head h2 {
  margin-top: 4px;
}

.products__nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  margin-bottom: 2px;
}

.products-slider {
  position: relative;
  padding: 4px 0 0;
  overflow: hidden;
}

.products-slider__viewport {
  overflow: hidden;
}

.products-slider .swiper-slide {
  height: auto;
}

.products-slider .pcard {
  height: 100%;
}

.products-slider__prev,
.products-slider__next {
  position: static;
  transform: none;
  width: 40px;
  height: 40px;
  background: var(--paper);
  border-color: var(--line);
  box-shadow: 0 2px 10px rgba(42, 44, 34, .06);
}

.products-slider__prev:hover,
.products-slider__next:hover {
  background: var(--wash);
  border-color: transparent;
  transform: none;
}

.products-slider__prev:disabled,
.products-slider__next:disabled {
  opacity: .35;
}

.products-slider__pagination {
  position: relative !important;
  left: auto;
  right: auto;
  bottom: auto !important;
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 16px;
}

.products-slider__pagination .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  margin: 0 !important;
  background: rgba(42, 44, 34, .18);
  opacity: 1;
}

.products-slider__pagination .swiper-pagination-bullet-active {
  background: rgba(42, 44, 34, .4);
}

/* ==========================================================================
   Certificates
   ========================================================================== */

.certs {
  padding: var(--section-y) 0;

}

.certs__head {
  max-width: 560px;
  margin: 0 auto 28px;
  text-align: center;
}

.certs__head h2 {
  margin: 4px 0 12px;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--ink);
  line-height: 1.15;
}

.certs__head p:not(.kicker) {
  margin: 0 auto;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
  color: var(--muted);
}

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

.certs__card {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(230, 227, 216, .95);
  transition: transform .25s ease, border-color .2s;
}

.certs__card:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 137, 44, .35);
}

.certs__card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4.15;
  object-fit: cover;
  background: #fff;
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq {
  padding: var(--section-y) 0;
}

.faq__head {
  margin: 0 0 24px;
}

.faq__head h2 {
  margin: 4px 0 0;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--ink);
  line-height: 1.15;
}

.faq__grid {
  display: grid;
  gap: 12px;
}

.faq__col {
  display: grid;
  gap: 12px;
  align-content: start;
}

.faq__item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}

.faq__item[open] {
  border-color: rgba(124, 137, 44, .35);
  box-shadow: 0 8px 22px rgba(42, 44, 34, .06);
}

.faq__q {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 56px;
  padding: 14px 16px 14px 18px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--ink);
  user-select: none;
}

.faq__q::-webkit-details-marker {
  display: none;
}

.faq__q span {
  min-width: 0;
}

.faq__q i {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--olive);
  color: #fff;
  font-size: 12px;
  transition: transform .25s ease, background .2s;
}

.faq__item[open] .faq__q i {
  transform: rotate(180deg);
  background: var(--olive-d);
}

.faq__q:hover i {
  background: var(--olive-d);
}

.faq__a {
  padding: 0 18px 16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
  color: var(--muted);
}

.faq__a p {
  margin: 0 0 10px;
}

.faq__a p:last-child {
  margin-bottom: 0;
}

.faq__a ul {
  margin: 0 0 10px;
  padding-left: 1.15em;
}

.faq__a li {
  margin: 0 0 4px;
}

/* ==========================================================================
   SEO
   ========================================================================== */

.seo {
  padding: var(--section-y) 0;
}

.seo__box {
  width: 100%;
}

.seo__clip {
  position: relative;
  max-height: 220px;
  overflow: hidden;
  transition: max-height .45s ease;
}

.seo__clip.is-open {
  max-height: none;
}

.seo__content {
  color: var(--muted);
  font-size: var(--fs-14);
  line-height: 1.65;
}

.seo__content h2 {
  color: var(--ink);
  font-size: var(--fs-20);
  font-weight: 800;
  letter-spacing: -.01em;
  margin: 0 0 14px;
  line-height: 1.3;
}

.seo__content h3 {
  color: var(--ink);
  font-size: var(--fs-20);
  font-weight: 800;
  margin: 22px 0 10px;
  line-height: 1.35;
}

.seo__content p {
  margin: 0 0 12px;
}

.seo__content ul {
  margin: 0 0 14px;
  padding: 0 0 0 1.15em;
  display: grid;
  gap: 8px;
}

.seo__content li {
  padding-left: .15em;
}

.seo__content strong {
  color: var(--ink);
  font-weight: 700;
}

.seo__fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 96px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(246, 243, 234, 0) 0%, var(--cream) 78%, var(--cream) 100%);
  transition: opacity .25s ease;
}

.seo__clip.is-open .seo__fade {
  opacity: 0;
}

.seo__more {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: var(--pill);
  background: var(--paper);
  color: var(--ink);
  font-size: var(--fs-14);
  font-weight: 700;
  transition: background .2s, border-color .2s, color .2s;
}

.seo__more i {
  font-size: 12px;
  color: var(--olive);
  transition: transform .25s ease;
}

.seo__more:hover {
  background: var(--wash);
  border-color: transparent;
}

.seo__more:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 3px var(--ring);
}

.seo__more.is-open i {
  transform: rotate(180deg);
}

/* ==========================================================================
   Category page
   ========================================================================== */

.catalog {
  padding: 24px 0 56px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  font-size: var(--fs-12);
  color: var(--muted);
}

.breadcrumbs a,
.breadcrumbs span {
  flex: 0 0 auto;
  white-space: nowrap;
}

.breadcrumbs a {
  color: var(--muted);
}

.breadcrumbs a:hover {
  color: var(--olive-d);
}

.catalog__head {
  margin-bottom: 16px;
}

.catalog__head h1 {
  margin: 0;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  letter-spacing: -.02em;
}

.cat-subs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 0;
}

.cat-subs__item {
  flex: 0 0 auto;
  height: 36px;
  padding: 0 14px;
  border-radius: var(--pill);
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  font-size: var(--fs-14);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  transition: background .2s, border-color .2s, color .2s;
}

.cat-subs__item:hover {
  border-color: transparent;
  background: var(--wash);
}

.cat-subs__item.is-on {
  background: var(--olive);
  border-color: var(--olive);
  color: #fff;
}

.cat-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  margin-top: 22px;
}

.cat-main {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cat-main--solo {
  width: 100%;
}

.catalog--search .cat-layout {
  margin-top: 0;
}

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

.search-page__form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  margin: 0 0 20px;
  max-width: 720px;
}

.search-page__field input {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: var(--pill);
  background: var(--paper);
  color: var(--ink);
  font-size: var(--fs-14);
  font-weight: 600;
}

.search-page__field input:focus {
  outline: 0;
  box-shadow: 0 0 0 3px var(--ring);
  border-color: transparent;
}

.search-page__form .btn {
  height: 48px;
  padding-inline: 22px;
}

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

.cat-toolbar {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
  min-height: 40px;
}

.cat-toolbar__cats {
  display: none;
  flex-shrink: 0;
}

.cat-toolbar__count {
  margin: 0;
  margin-right: auto;
  font-size: var(--fs-14);
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
}

.cat-toolbar__sort {
  display: block;
  min-width: 0;
  flex: 0 1 auto;
  width: 240px;
  max-width: 280px;
}

.cat-toolbar__sort select {
  display: block;
  width: 100%;
  height: 40px;
  padding: 0 36px 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--pill);
  background: var(--paper) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%237a7c70' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 14px center;
  appearance: none;
  font: inherit;
  font-size: var(--fs-14);
  font-weight: 600;
  color: var(--ink);
}

.cat-toolbar__sort select:focus {
  outline: 0;
  box-shadow: 0 0 0 3px var(--ring);
}

.cat-nav {
  position: sticky;
  top: 100px;
  align-self: start;
  padding: 14px 0 6px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.cat-nav__head {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 0 0 4px;
  padding: 0 16px 12px;
  border-bottom: 1px solid var(--line);
}

.cat-nav__title {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--ink);
}

.cat-nav__close {
  display: none;
}

.cat-nav__label {
  display: block;
  margin: 0;
  padding: 2px 16px 12px;
  border-bottom: 1px solid var(--line);
  font-size: var(--fs-12);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

.cat-nav__tree {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cat-nav__group {
  margin: 0;
  border-bottom: 1px solid var(--line);
}

.cat-nav__sum {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 11px 16px;
  cursor: pointer;
  user-select: none;
}

.cat-nav__sum::-webkit-details-marker {
  display: none;
}

.cat-nav__name {
  flex: 1;
  min-width: 0;
  font-size: var(--fs-14);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
  text-decoration: none;
}

a.cat-nav__name:hover {
  color: var(--olive);
}

.cat-nav__name.is-on {
  color: var(--olive);
}

.cat-nav__list a.is-on {
  color: var(--olive);
  font-weight: 700;
}

.cat-nav__sum i {
  flex-shrink: 0;
  font-size: 10px;
  color: var(--muted);
  transition: transform .2s ease;
}

.cat-nav__group:not([open]) .cat-nav__sum i {
  transform: rotate(-90deg);
}

.cat-nav__list {
  list-style: none;
  margin: 0;
  padding: 0 16px 12px;
  display: grid;
  gap: 0;
}

.cat-nav__list li {
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr);
  column-gap: 8px;
  align-items: start;
}

.cat-nav__list li::before {
  content: "–";
  grid-column: 1;
  padding-top: 5px;
  color: #b0aea4;
  text-align: center;
  line-height: 1.4;
  font-size: 13px;
}

.cat-nav__list a {
  display: block;
  grid-column: 2;
  padding: 5px 0;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.4;
}

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

.cat-nav__list li:hover::before {
  color: var(--ink);
}

.cat-nav__item {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 11px 16px;
  border-bottom: 1px solid var(--line);
  font-size: var(--fs-14);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
}

.cat-nav__item:hover {
  color: var(--olive);
}

.cat-nav__item--sale {
  color: var(--sale);
  border-bottom: 0;
}

.cat-nav__item--sale:hover {
  color: var(--sale-d);
}

.cat-nav-backdrop {
  display: none;
}

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

.cat-grid .pcard {
  height: 100%;
  min-width: 0;
}

.cat-grid .pcard__name {
  min-height: 2.7em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cat-grid .pcard.is-hidden {
  display: none;
}

.cat-empty {
  margin: 40px 0;
  text-align: center;
  color: var(--muted);
  font-size: var(--fs-14);
}

.cat-empty[hidden] {
  display: none;
}

.cat-pager {
  justify-content: center;
  margin: 28px 0 4px;
}

.cat-pager[hidden] {
  display: none;
}

.cat-pager .page--nav {
  color: var(--muted);
}

.cat-pager .page--nav:disabled {
  opacity: .35;
  pointer-events: none;
}

/* ==========================================================================
   Product page
   ========================================================================== */

.product {
  padding: 24px 0 56px;
}

.product__head {
  margin-bottom: 18px;
}

.product__head h1 {
  margin: 0;
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.2;
}

.product__card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 20px;
  margin-bottom: 28px;
}

.product__main {
  display: grid;
  grid-template-columns: minmax(0, 500px) minmax(280px, 1fr);
  gap: 28px 32px;
  align-items: start;
}

.product__gallery {
  position: relative;
  min-width: 0;
  max-width: 500px;
  width: 100%;
}

.product__badges {
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  pointer-events: none;
}

.product-gallery {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: transparent;
}

.product-gallery .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  overflow: hidden;
  background: transparent;
}

.product-gallery a {
  display: block;
  width: 100%;
  cursor: zoom-in;
}

.product-gallery img {
  width: 100%;
  height: auto;
  max-height: none;
  aspect-ratio: auto;
  object-fit: contain;
  display: block;
  margin: 0;
  vertical-align: top;
}

.product-gallery__prev,
.product-gallery__next {
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: rgba(255, 254, 249, .88);
  border: 0;
  box-shadow: 0 2px 10px rgba(42, 44, 34, .1);
  color: var(--muted);
}

.product-gallery__prev {
  left: 10px;
}

.product-gallery__next {
  right: 10px;
}

.product-gallery__prev:hover,
.product-gallery__next:hover {
  color: var(--ink);
  background: var(--paper);
}

.product-thumbs {
  margin-top: 10px;
}

.product-thumbs .swiper-slide {
  width: 68px;
  height: 68px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid transparent;
  opacity: .7;
  cursor: pointer;
  background: var(--cream);
}

.product-thumbs .swiper-slide-thumb-active {
  border-color: var(--olive);
  opacity: 1;
}

.product-thumbs img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.product__buy {
  min-width: 0;
  display: grid;
  gap: 12px;
}

.product__panel {
  padding: 16px;
  border-radius: 16px;
  background: var(--cream);
  border: 1px solid var(--line);
}

.product__buy-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0;
  padding: 2px 2px 4px;
}

.product__stock {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-14);
  font-weight: 700;
  color: var(--olive);
}

.product__stock--out {
  color: #8f3d36;
  background: #f4e4e1;
  border: 1px solid #e8c9c4;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .01em;
}

.product__stock--out i {
  font-size: 12px;
  opacity: .9;
}

.product__sku {
  margin: 0;
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
}

.product__price {
  margin: 0;
  flex: 0 1 auto;
  min-width: 0;
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--ink);
  line-height: 1.1;
}

.product__price.is-sale .product__now {
  color: var(--sale);
  display: block;
}

.product__old {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  text-decoration: line-through;
  margin-bottom: 1px;
}

.product__save {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--olive);
  line-height: 1.3;
}

.product__save[hidden] {
  display: none;
}

.product__variants {
  display: grid;
  gap: 16px;
}

.product__option {
  margin: 0;
}

.product__option+.product__option {
  padding-top: 16px;
  border-top: 1px solid rgba(230, 227, 216, .95);
}

.product__option-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

.product__option-head b {
  color: var(--ink);
  font-weight: 800;
  text-align: right;
}

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

.product__swatch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 5px 12px 5px 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  font: inherit;
  color: var(--ink);
  cursor: pointer;
  transition: border-color .15s, background .15s, box-shadow .15s;
}

.product__swatch:hover {
  border-color: #d0cdb8;
  background: #fff;
}

.product__swatch.is-on,
.product__swatch[aria-pressed="true"] {
  border-color: var(--olive);
  background: #fff;
  box-shadow: 0 0 0 1px var(--olive);
}

.product__swatch-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(42, 44, 34, .12);
}

.product__swatch-dot--snow {
  background: linear-gradient(145deg, #f7f9fb 35%, #c9d8e8);
}

.product__swatch-dot--green {
  background: #4f8f3e;
}

.product__swatch-dot--tip {
  background: linear-gradient(135deg, #5a9a48 52%, #f4f6f2 52%);
}

.product__swatch-name {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

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

.product__size {
  min-width: 64px;
  height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--pill);
  background: var(--paper);
  font: inherit;
  font-size: var(--fs-14);
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background .15s, border-color .15s, color .15s, opacity .15s;
}

.product__size:hover {
  background: #fff;
  border-color: #d0cdb8;
}

.product__size.is-on,
.product__size[aria-pressed="true"],
.product__size[aria-current="true"] {
  background: var(--olive);
  border-color: var(--olive);
  color: #fff;
}

.product__size.is-soldout {
  text-decoration: line-through;
  opacity: .55;
}

.product__size.is-soldout.is-on,
.product__size.is-soldout[aria-current="true"] {
  opacity: .85;
}

.product__purchase {
  display: grid;
  gap: 12px;
}

.product__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
}

.product__qty {
  display: inline-grid;
  grid-template-columns: 36px 44px 36px;
  align-items: center;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  overflow: hidden;
  flex-shrink: 0;
  margin-left: auto;
}

.product__qty button {
  height: 100%;
  border: 0;
  background: transparent;
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
}

.product__qty button:hover {
  background: var(--wash);
}

.product__qty input {
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
  text-align: center;
  font: inherit;
  font-size: var(--fs-14);
  font-weight: 700;
  color: var(--ink);
  -moz-appearance: textfield;
}

.product__qty input::-webkit-outer-spin-button,
.product__qty input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.product__cart {
  flex: 0 0 auto;
  width: auto;
  min-width: 175px;
  height: 44px;
  padding: 0 22px;
  justify-content: center;
  border-radius: 12px;
  gap: 8px;
  font-size: 14px;
}

.product__oneclick {
  margin: 0;
  background: var(--olive-m);
  border-color: #d3d9b8;
}

.product__oneclick-label {
  margin: 0 0 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 800;
  color: var(--olive-d);
}

.product__oneclick-label i {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--olive);
  font-size: 12px;
  box-shadow: 0 1px 2px rgba(94, 105, 34, .08);
}

.product__oneclick-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.product__oneclick-form .field {
  min-width: 0;
  height: 44px;
  border-radius: 12px;
  background: #fff;
  border-color: #cfd6b0;
}

.product__oneclick-form .field i {
  color: var(--olive);
}

.product__oneclick-form .field.is-error {
  border-color: #d4a19a;
  box-shadow: 0 0 0 1px #e8c9c4;
}

.product__oneclick-hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.product__oneclick-msg {
  margin: 10px 0 0;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}

.product__oneclick-msg.is-ok {
  color: var(--olive-d);
}

.product__oneclick-msg.is-err {
  color: #8f3d36;
}

.product__oneclick-form .btn:disabled {
  opacity: .65;
  cursor: wait;
}

.product__oneclick-form .btn {
  height: 44px;
  min-width: 175px;
  border-radius: 12px;
  padding: 0 18px;
  font-weight: 800;
}

.product__tools-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid rgba(230, 227, 216, .95);
}

.product__tool-btn {
  appearance: none;
  border: 0;
  background: none;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
}

.product__tool-btn:hover,
.product__tool-btn.is-on {
  color: var(--ink);
}

.product__tool-btn.is-on i.fa-heart {
  color: var(--sale);
}

.product__video-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: auto;
  max-width: 100%;
  height: 40px;
  margin: 0;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  font-size: var(--fs-14);
  font-weight: 700;
  text-decoration: none;
  justify-self: start;
  transition: background .2s, border-color .2s, box-shadow .2s;
}

.product__video-btn:hover {
  background: var(--wash);
  border-color: transparent;
  color: var(--ink);
}

.product__video-btn svg {
  flex-shrink: 0;
  display: block;
}

.product__perks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 0;
  padding: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}

.product__perk {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  min-width: 0;
  margin: 0;
  padding: 16px 14px;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  transition: background .2s;
}

.product__perk:nth-child(2n) {
  border-right: 0;
}

.product__perk:nth-child(n + 3) {
  border-bottom: 0;
}

.product__perk:hover {
  background: var(--wash);
}

.product__perk-ico {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 12px;
  background: var(--olive-m);
  color: var(--olive-d);
  display: grid;
  place-items: center;
  font-size: 15px;
  transition: transform .25s, background .2s, color .2s;
}

.product__perk:hover .product__perk-ico {
  transform: translateY(-1px);
  background: var(--olive);
  color: #fff;
}

.product__perk strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 3px;
  line-height: 1.2;
}

.product__perk p {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
}

.product__section {
  margin: 0 0 28px;
  padding: 22px 22px 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
  scroll-margin-top: 96px;
}

.product__section h2 {
  margin: 0 0 14px;
  font-size: clamp(20px, 2.4vw, 24px);
  font-weight: 800;
  letter-spacing: -.02em;
}

.product__prose {
  width: 100%;
  max-width: none;
  color: #4a4c40;
  font-size: var(--fs-16);
  line-height: 1.55;
}

.product__prose p {
  margin: 0 0 12px;
}

.product__prose p:last-child {
  margin-bottom: 0;
}

.product__prose strong {
  color: var(--ink);
}

.product__prose h3 {
  margin: 20px 0 10px;
  font-size: var(--fs-16);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.01em;
}

.product__prose ul {
  margin: 0 0 14px;
  padding: 0 0 0 1.15em;
  display: grid;
  gap: 8px;
}

.product__prose li {
  padding-left: .15em;
}

.product__video {
  margin: 22px 0 0;
}

.product__video h3 {
  margin: 0 0 12px;
}

.product__video-frame {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
  background: #111;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
}

.product__video.is-short .product__video-frame {
  max-width: 360px;
  margin: 0 auto;
  aspect-ratio: 9 / 16;
}

.product__video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.product-video-fancybox {
  --fancybox-content-padding: 0;
}

.product-video-fancybox .fancybox__slide {
  padding: 0;
}

.product-video-fancybox .fancybox__content {
  padding: 0 !important;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  width: min(1280px, 92vw) !important;
  max-width: 92vw !important;
  height: auto !important;
  max-height: 90vh !important;
  aspect-ratio: 16 / 9;
}

.product-video-fancybox.is-yt-short .fancybox__content {
  width: auto !important;
  height: min(90vh, 920px) !important;
  max-width: min(520px, 92vw) !important;
  max-height: 90vh !important;
  aspect-ratio: 9 / 16;
}

.product-video-fancybox iframe,
.product-video-fancybox .fancybox-iframe,
.product-video-fancybox .fancybox__iframe {
  width: 100% !important;
  height: 100% !important;
  border: 0;
  display: block;
}

.product-video-fancybox .fancybox__toolbar {
  z-index: 20;
}

.product__note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 0;
  padding: 14px 14px 14px 12px;
  border-radius: 14px;
  background: linear-gradient(135deg, #fbf6e8 0%, #f3ebe0 100%);
  border: 1px solid #e8d9c0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .7);
  color: var(--ink);
}

.product__note-ico {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid #e8d9c0;
  color: #a67c3a;
  font-size: 16px;
  box-shadow: 0 1px 2px rgba(80, 55, 20, .06);
}

.product__note p {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.45;
  color: #4a4338;
}

.product__note strong {
  display: inline;
  color: var(--ink);
  font-weight: 800;
}

.product__specs {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--fs-14);
}

.product__specs th,
.product__specs td {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.product__specs tr:last-child th,
.product__specs tr:last-child td {
  border-bottom: 0;
}

.product__specs th {
  width: 42%;
  font-weight: 600;
  color: var(--muted);
  padding-right: 16px;
}

.product__specs td {
  font-weight: 600;
  color: var(--ink);
}

.product__reviews-empty {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  color: var(--muted);
  font-size: var(--fs-14);
}

.product__reviews-empty p {
  margin: 0;
}

.product__reviews-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 16px;
  margin-bottom: 16px;
}

.product__reviews-head h2 {
  margin: 0;
}

.product__reviews-count {
  font-weight: 700;
  color: var(--muted);
}

.product__reviews-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product__reviews-preview {
  display: grid;
  gap: 12px;
}

.review-card {
  margin: 0;
  padding: 14px 16px;
  border-radius: 14px;
  background: var(--cream);
  border: 1px solid var(--line);
}

.review-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 4px;
}

.review-card__top strong {
  font-size: var(--fs-14);
  font-weight: 800;
  color: var(--ink);
}

.review-card__stars {
  display: inline-flex;
  gap: 2px;
  color: #c4a035;
  font-size: 12px;
}

.review-card__meta {
  margin: 0 0 8px;
  font-size: 12px;
  color: var(--muted);
}

.review-card>p:last-child {
  margin: 0;
  font-size: var(--fs-14);
  line-height: 1.5;
  color: var(--ink);
}

.reviews-popup {
  width: min(560px, 92vw);
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  border-radius: 18px;
}

.reviews-popup__inner {
  padding: 22px 22px 24px;
  max-height: min(82vh, 760px);
  overflow: auto;
}

.reviews-popup__title {
  margin: 0 0 14px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.02em;
}

.reviews-popup__list {
  display: grid;
  gap: 10px;
  margin-bottom: 0;
}

.reviews-form {
  padding-top: 0;
  border-top: 0;
}

.reviews-form--solo .reviews-popup__title {
  margin-bottom: 16px;
}

.reviews-form__title {
  margin: 0 0 14px;
  font-size: 16px;
  font-weight: 800;
}

.reviews-form__rating {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.reviews-form__label {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}

.reviews-form__stars {
  display: flex;
  gap: 4px;
}

.reviews-form__stars button {
  appearance: none;
  border: 0;
  background: none;
  padding: 2px;
  color: #c4a035;
  font-size: 20px;
  cursor: pointer;
  line-height: 1;
}

.reviews-form__stars button:hover,
.reviews-form__stars button.is-on {
  color: #c4a035;
}

.reviews-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 14px;
  margin-bottom: 14px;
}

.reviews-form__grid .wide {
  grid-column: 1 / -1;
}

.reviews-form__grid .field-block {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.reviews-form__grid .field {
  background: var(--cream);
}

.reviews-form__submit {
  width: 100%;
  justify-content: center;
}

.reviews-form__error {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 600;
  color: #b42318;
}

.reviews-form__ok {
  margin: 12px 0 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--olive);
}

.fancybox__container {
  --fancybox-bg: rgba(30, 32, 24, .72);
}

.fancybox__content.reviews-popup {
  padding: 0;
  background: var(--paper);
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(30, 32, 24, .28);
}

.product-sliders {
  margin-top: 28px;
  padding-top: 8px;
}

.product-sliders .products__head h2 {
  font-size: clamp(20px, 2.4vw, 24px);
  font-weight: 800;
  letter-spacing: -.02em;
}

#viewed.product-sliders {
  margin-top: 28px;
  padding-top: 0;
}

#viewed .products__head {
  margin-bottom: 16px;
}

#viewed .products__nav .sbtn {
  width: 34px;
  height: 34px;
}

#viewed .pcard {
  border-radius: 14px;
  box-shadow: none;
}

#viewed .pcard__tools,
#viewed .pcard__badges,
#viewed .pcard__meta,
#viewed .pcard__buy .btn {
  display: none;
}

#viewed .pcard__body {
  padding: 10px 10px 12px;
  gap: 6px;
}

#viewed .pcard__name {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  min-height: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

#viewed .pcard__buy {
  margin-top: 0;
}

#viewed .pcard__price {
  font-size: 14px;
}

#viewed .pcard__old {
  font-size: 11px;
}

#viewed .products-slider__pagination {
  margin-top: 10px;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  padding: 48px 0 28px;
  border-top: 0;
  background: #1e2018;
  color: #e8e6dc;
  scroll-margin-top: 120px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr .9fr 1.6fr;
  gap: 28px 32px;
  align-items: start;
}

.footer__brand img {
  width: 190px;
  height: auto;
  opacity: .96;
}

.footer__tagline {
  margin: 12px 0 0;
  max-width: 22ch;
  font-size: var(--fs-14);
  line-height: 1.4;
  font-weight: 600;
  color: #c8c6ba;
}

.footer__lead {
  margin: 28px auto 0;
  max-width: 110ch;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
  color: #9ea093;
}

.footer__soc {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}

.header__soc--wa {
  background: #25d366;
}

.footer__title {
  margin: 0 0 14px;
  font-size: var(--fs-12);
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #8b8d80;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: var(--fs-14);
  font-weight: 600;
}

.footer__links a {
  color: #e8e6dc;
}

.footer__links a:hover {
  color: #c5d16a;
}

.footer__contacts {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
  padding: 0;
}

.footer__contacts li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  font-size: var(--fs-14);
  line-height: 1.45;
  color: #d6d4c8;
}

.footer__contacts i {
  margin-top: 3px;
  color: #a3b24a;
  font-size: 14px;
  text-align: center;
}

.footer__contacts p {
  margin: 0;
}

.footer__contacts a {
  color: #f4f2ea;
  font-weight: 600;
}

.footer__contacts a:hover {
  color: #c5d16a;
}

.footer__label {
  display: block;
  margin-bottom: 2px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #8b8d80;
}

.footer__note {
  color: #9ea093;
  font-size: var(--fs-12);
}

.footer__bottom {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  text-align: center;
}

.footer__copy {
  margin: 0;
  font-size: var(--fs-12);
  color: #8b8d80;
}

/* ==========================================================================
   Design system
   ========================================================================== */

.ds {
  padding: 48px 0 80px;
}

.ds-sec {
  margin-top: 48px;
  scroll-margin-top: 172px;
}

.swatches {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
}

.swatch {
  height: 92px;
  border-radius: 14px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  font-size: var(--fs-12);
  font-weight: 600;
}

.swatch small {
  font-weight: 400;
  opacity: .8;
}

.swatch--olive {
  background: var(--olive);
  color: #fff;
}

.swatch--olive-d {
  background: var(--olive-d);
  color: #fff;
}

.swatch--mist {
  background: var(--olive-m);
}

.swatch--cream {
  background: var(--cream);
  border: 1px solid var(--line);
}

.swatch--paper {
  background: var(--paper);
  border: 1px solid var(--line);
}

.swatch--ink {
  background: var(--ink);
  color: #fff;
}

.swatch--sale {
  background: var(--sale);
  color: #fff;
}

.row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
}

.row--stack {
  margin-top: 28px;
  align-items: flex-start;
  gap: 32px;
}

.demo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-12);
  color: var(--muted);
}

.fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 20px;
}

.fields label,
.field-block {
  font-size: var(--fs-12);
  font-weight: 600;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fields .wide {
  grid-column: 1 / -1;
}

.hint--tight {
  margin: 0 0 4px;
}

.range-label {
  display: block;
  margin-top: 24px;
  font-size: var(--fs-12);
  font-weight: 600;
  color: var(--muted);
}

.range-label .range {
  display: block;
  margin-top: 8px;
}

.chip i,
.btn i {
  font-size: var(--icon);
}

.chip i {
  font-size: var(--fs-12);
}

.ico {
  display: block;
  flex-shrink: 0;
}

.btn .ico {
  width: 16px;
  height: 16px;
}

.icon-btn .ico {
  width: 18px;
  height: 18px;
}

.icon-tile .ico {
  width: 20px;
  height: 20px;
  color: var(--ink);
}

.type-scale {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.type-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: baseline;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.type-row small {
  font-size: var(--fs-12);
  color: var(--muted);
  letter-spacing: 0;
  font-weight: 600;
}

.type-12 {
  font-size: var(--fs-12);
}

.type-14 {
  font-size: var(--fs-14);
}

.type-16 {
  font-size: var(--fs-16);
}

.type-20 {
  font-size: var(--fs-20);
  font-weight: 700;
  letter-spacing: -.02em;
}

.type-24 {
  font-size: var(--fs-24);
  font-weight: 700;
  letter-spacing: -.02em;
}

.type-32 {
  font-size: var(--fs-32);
  font-weight: 800;
  letter-spacing: -.02em;
}

.icon-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.icon-grid+.hint {
  margin-top: 24px;
}

.icon-tile {
  width: 80px;
  min-height: 76px;
  padding: 10px 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--paper);
  border-radius: 14px;
  font-size: var(--fs-12);
  color: var(--muted);
  text-align: center;
}

.icon-tile i {
  font-size: var(--fs-20);
  color: var(--ink);
}

.icon-tile .fa-instagram {
  color: #d6249f;
}

.icon-tile .fa-facebook-f {
  color: #1877f2;
}

.icon-tile .fa-youtube {
  color: #e11d24;
}

.icon-tile .fa-telegram {
  color: #2aabee;
}

.icon-tile .fa-tiktok {
  color: #111;
}

.icon-tile .fa-viber {
  color: #7360f2;
}

.icon-tile .fa-whatsapp {
  color: #25d366;
}

/* ==========================================================================
   Checkout
   ========================================================================== */

.checkout {
  padding: 18px 0 48px;
}

.checkout__head {
  margin: 0 0 16px;
}

.checkout__head h1 {
  margin: 0;
  font-size: clamp(20px, 2.4vw, 24px);
  font-weight: 800;
  letter-spacing: -.02em;
}

.checkout__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  gap: 16px;
  align-items: start;
}

.checkout__main {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.checkout__pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: start;
}

.checkout [hidden],
.checkout__pair[hidden],
.checkout__label[hidden],
.checkout__suggest[hidden],
.checkout__opt[hidden],
.checkout__pickup-note[hidden],
.checkout__empty[hidden],
.checkout__row--save[hidden],
.checkout__form-error[hidden],
.checkout__block--totals[hidden] {
  display: none !important;
}

.checkout__aside {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 12px;
  min-width: 0;
}

.checkout__block {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
}

.checkout__heading {
  margin: 0 0 12px;
  padding: 0 0 10px;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -.01em;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
}

.checkout__heading i {
  color: var(--olive);
  font-size: 14px;
}

.checkout__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 12px;
  align-items: start;
}

.checkout__fields--ship {
  margin-top: 2px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--cream);
}

.checkout__fields--ship .checkout__control {
  background-color: #fff;
}

.checkout__fields--ship > .checkout__pair {
  grid-column: 1 / -1;
}

.checkout__label--full {
  grid-column: 1 / -1;
}

.checkout__stack {
  display: grid;
  gap: 10px;
}

.checkout__label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.01em;
  min-width: 0;
}

.checkout__label .req {
  color: var(--sale);
  font-style: normal;
  font-weight: 800;
}

.checkout__control {
  display: block;
  width: 100%;
  height: 45px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  outline: 0;
  appearance: none;
  transition: border-color .2s, box-shadow .2s;
}

.checkout__control:focus {
  border-color: var(--olive);
  box-shadow: 0 0 0 3px rgba(107, 125, 74, .12);
}

.checkout__control.is-invalid {
  border-color: #c45b52;
  box-shadow: 0 0 0 3px rgba(196, 91, 82, .14);
}

.checkout__control.is-invalid:focus {
  border-color: #c45b52;
  box-shadow: 0 0 0 3px rgba(196, 91, 82, .18);
}

.checkout__field-error {
  display: block;
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
  color: #c45b52;
}

.checkout__ship.is-invalid .checkout__opt-card,
.checkout__pay.is-invalid .checkout__opt-card {
  border-color: #e5c4bf;
}

.checkout__ship + .checkout__field-error,
.checkout__pay + .checkout__field-error {
  margin: 8px 0 0;
}

select.checkout__control {
  padding-right: 36px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%237a7c70' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px 8px;
  cursor: pointer;
}

.checkout__control--area {
  height: auto;
  min-height: 88px;
  resize: vertical;
  line-height: 1.4;
}

.checkout__ship {
  display: grid;
  gap: 16px;
  margin-bottom: 14px;
}

.checkout__ship-group {
  display: grid;
  gap: 8px;
}

.checkout__ship-group-title {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.01em;
}

.checkout__ship-group-title img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex-shrink: 0;
}

.checkout__pickup-note {
  grid-column: 1 / -1;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--ink);
}

.checkout__pay {
  display: grid;
  gap: 8px;
}

.checkout__opt {
  display: block;
  cursor: pointer;
}

.checkout__opt input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.checkout__opt-card {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  transition: border-color .15s, background .15s, box-shadow .15s;
}

.checkout__opt-radio {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  border: 1.5px solid #cfcbb8;
  border-radius: 50%;
  background: #fff;
  position: relative;
}

.checkout__opt-radio::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--olive);
  opacity: 0;
  transform: scale(.6);
  transition: opacity .15s, transform .15s;
}

.checkout__opt-body {
  display: grid;
  gap: 10px;
  min-width: 0;
  flex: 1;
}

.checkout__opt-top {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 12px;
}

.checkout__opt-text {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--ink);
}

.checkout__opt-hint {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
}

.checkout__pay-brands {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  width: fit-content;
  max-width: 100%;
  padding: 6px;
  border-radius: 10px;
  background: var(--cream);
}

.checkout__pay-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  padding: 0 8px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
}

.checkout__pay-brand img {
  display: block;
  height: 14px;
  width: auto;
}

.checkout__opt:hover .checkout__opt-card {
  border-color: #d5d0bc;
}

.checkout__opt input:checked+.checkout__opt-card {
  border-color: var(--olive);
  box-shadow: 0 0 0 1px var(--olive);
  background: #fff;
}

.checkout__opt input:checked+.checkout__opt-card .checkout__opt-radio {
  border-color: var(--olive);
}

.checkout__opt input:checked+.checkout__opt-card .checkout__opt-radio::after {
  opacity: 1;
  transform: scale(1);
}

.checkout__opt input:focus-visible+.checkout__opt-card {
  outline: 2px solid var(--olive);
  outline-offset: 2px;
}

.checkout__items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  max-height: min(420px, 55vh);
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

.checkout__item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px;
  padding: 12px;
  border-radius: 14px;
  background: var(--cream);
}

.checkout__item-img {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--wash);
}

.checkout__item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.checkout__item-main {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.checkout__item-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.checkout__item-info {
  min-width: 0;
  flex: 1;
}

.checkout__item-name {
  margin: 0;
  font-size: var(--fs-14);
  font-weight: 700;
  line-height: 1.35;
  color: var(--ink);
}

.checkout__item-meta {
  margin: 2px 0 0;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--muted);
}

.checkout__item-remove {
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--muted);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  font-size: 12px;
}

.checkout__item-remove:hover {
  color: var(--sale);
  background: rgba(214, 60, 50, .08);
}

.checkout__item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-width: 0;
}

.checkout__item-qty {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: visible;
  background: #fff;
}

.checkout__item-qty button {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  color: var(--ink);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  padding: 0;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  -webkit-tap-highlight-color: transparent;
}

.checkout__item-qty button:hover {
  background: var(--wash);
}

.checkout__item-qty span {
  display: grid;
  place-items: center;
  min-width: 28px;
  padding: 0 2px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}

.checkout__item-price {
  display: grid;
  gap: 2px;
  justify-items: end;
  text-align: right;
  min-width: 0;
  flex: 1 1 auto;
}

.checkout__item-price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: flex-end;
  gap: 6px;
}

.checkout__item-price-old {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  text-decoration: line-through;
  white-space: nowrap;
}

.checkout__item-price-now {
  font-size: var(--fs-14);
  font-weight: 800;
  color: var(--ink);
  white-space: nowrap;
}

.checkout__item-price-old+.checkout__item-price-now {
  color: var(--sale);
}

.checkout__item-price-save {
  font-size: 11px;
  font-weight: 700;
  color: var(--olive);
  white-space: nowrap;
}

.checkout__empty {
  text-align: center;
  padding: 16px 8px;
  color: var(--muted);
  font-size: 13px;
}

.checkout__empty p {
  margin: 0 0 10px;
}

.checkout__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 13px;
  color: var(--muted);
}

.checkout__row b {
  color: var(--ink);
  font-weight: 700;
  text-align: right;
  font-size: 13px;
}

.checkout__row--save {
  color: var(--olive);
}

.checkout__row--save b {
  color: var(--olive);
  font-weight: 800;
}

.checkout__row--total {
  margin: 10px 0 12px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}

.checkout__row--total b {
  font-size: 18px;
  font-weight: 800;
}

.checkout__submit {
  width: 100%;
  justify-content: center;
  height: 44px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .02em;
}

.checkout__back {
  display: inline-block;
  margin-top: 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--olive-d);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.checkout__back:hover {
  color: var(--olive);
}

.checkout__suggest {
  position: relative;
  align-self: start;
}

.checkout__suggest-list {
  position: absolute;
  z-index: 40;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  max-height: 220px;
  overflow: auto;
  margin: 0;
  padding: 6px;
  background: #fff;
  border: 1px solid #d8d4c6;
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(40, 48, 28, 0.12);
}

.checkout__suggest-item {
  display: block;
  width: 100%;
  margin: 0;
  padding: 9px 10px;
  border: 0;
  background: transparent;
  text-align: left;
  font: inherit;
  font-size: 13px;
  line-height: 1.35;
  color: var(--ink, #2a2e22);
  cursor: pointer;
}

.checkout__suggest-item:hover,
.checkout__suggest-item:focus {
  background: #f3f1e8;
  outline: none;
}

.checkout__form-error {
  margin: 0 0 12px;
  padding: 10px 12px;
  font-size: 13px;
  line-height: 1.4;
  color: #8f3d36;
  background: #f8ebe8;
  border: 1px solid #e5c4bf;
}

/* ==========================================================================
   Info pages
   ========================================================================== */

.info-page {
  padding: 24px 0 56px;
}

.info-page__head {
  margin: 0 0 18px;
}

.info-page__head h1 {
  margin: 0;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.2;
}

.info-page__card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: clamp(20px, 3vw, 32px);
}

.info-page__body {
  max-width: 760px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.7;
}

.info-page__body > *:first-child {
  margin-top: 0;
}

.info-page__body > *:last-child {
  margin-bottom: 0;
}

.info-page__body p,
.info-page__body div {
  margin: 0 0 14px;
}

.info-page__body h1,
.info-page__body h2,
.info-page__body h3,
.info-page__body h4 {
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -.01em;
  line-height: 1.3;
  margin: 28px 0 12px;
}

.info-page__body h1 {
  font-size: clamp(22px, 2.4vw, 28px);
}

.info-page__body h2 {
  font-size: clamp(18px, 2vw, 22px);
}

.info-page__body h3,
.info-page__body h4 {
  font-size: var(--fs-16);
}

.info-page__body ul,
.info-page__body ol {
  margin: 0 0 16px;
  padding: 0 0 0 1.2em;
  display: grid;
  gap: 10px;
}

.info-page__body li {
  padding-left: .1em;
}

.info-page__body li::marker {
  color: var(--olive);
}

.info-page__body strong,
.info-page__body b {
  color: var(--ink);
  font-weight: 800;
}

.info-page__body a {
  color: var(--olive-d);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.info-page__body a:hover {
  color: var(--olive);
}

.info-page__body img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 8px 0 16px;
}

.info-page__body table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 18px;
  font-size: var(--fs-14);
}

.info-page__body th,
.info-page__body td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.info-page__body th {
  color: var(--muted);
  font-weight: 700;
  width: 36%;
}

.info-page__body blockquote {
  margin: 0 0 16px;
  padding: 12px 16px;
  border-left: 3px solid var(--olive);
  background: var(--cream);
  border-radius: 0 12px 12px 0;
  color: var(--muted);
}

.info-page__body hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 24px 0;
}

.info-page__body .row {
  display: block;
  margin: 0;
}

.contact-layout {
  display: grid;
  gap: 16px;
}

.contact-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: clamp(18px, 2.5vw, 28px);
}

.contact-card h2 {
  margin: 0 0 16px;
  font-size: var(--fs-20);
  font-weight: 800;
  letter-spacing: -.01em;
}

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

.contact-card__media {
  grid-column: 1 / -1;
}

.contact-card__media img {
  width: 100%;
  max-width: 320px;
  border-radius: 12px;
}

.contact-card__block strong {
  display: block;
  margin-bottom: 6px;
  font-size: var(--fs-14);
  font-weight: 800;
}

.contact-card__block p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: var(--fs-14);
  font-weight: 600;
  line-height: 1.5;
}

.contact-card__block a:not(.btn) {
  color: var(--olive-d);
  font-weight: 700;
}

.contact-locations {
  display: grid;
  gap: 10px;
}

.contact-location {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--cream);
  padding: 0 14px;
}

.contact-location summary {
  cursor: pointer;
  list-style: none;
  padding: 14px 0;
  font-weight: 800;
}

.contact-location summary::-webkit-details-marker {
  display: none;
}

.contact-location__body {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 0 0 14px;
  color: var(--muted);
  font-size: var(--fs-14);
  font-weight: 600;
}

.contact-location__body img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 10px;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-card__grid--info {
  grid-template-columns: 1fr;
  gap: 1.1rem 1.5rem;
}

@media (min-width: 720px) {
  .contact-card__grid--info {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-card__block--wide {
  grid-column: 1 / -1;
}

.contact-map {
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  background: #f3f1eb;
}

.contact-map iframe {
  display: block;
  width: 100%;
  max-width: none;
  height: 450px;
  border: 0;
}

.contact-form .field-block--full,
.contact-form__captcha,
.contact-form__actions {
  grid-column: 1 / -1;
}

.contact-form__actions .btn {
  min-height: 44px;
  padding-inline: 22px;
}

.field-error {
  display: block;
  margin-top: 6px;
  color: var(--sale);
  font-size: var(--fs-12);
  font-weight: 700;
}

/* ==========================================================================
   Wishlist / Compare
   ========================================================================== */

.board {
  padding: 24px 0 56px;
}

.board__head {
  margin-bottom: 18px;
}

.board__head h1 {
  margin: 0;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  letter-spacing: -.02em;
}

.board__alert {
  margin: 0 0 16px;
  padding: 12px 14px;
  border-radius: 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  font-size: var(--fs-14);
  font-weight: 600;
  color: var(--ink);
}

.board__alert.is-ok {
  background: var(--olive-m);
  border-color: transparent;
  color: var(--olive-d);
}

.board__alert a {
  color: var(--olive-d);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.board__actions {
  margin-top: 20px;
}

.board__empty {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 48px 20px;
  text-align: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
}

.board__empty i {
  font-size: 28px;
  color: var(--olive);
}

.board__empty p {
  margin: 0;
  max-width: 360px;
  color: var(--muted);
  font-weight: 600;
}

.wish-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.wish-item {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 14px;
  padding: 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.wish-item__img {
  width: 96px;
  height: 96px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--wash);
  display: block;
}

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

.wish-item__ph {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--wash);
}

.wish-item__main {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

.wish-item__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.wish-item__info {
  min-width: 0;
}

.wish-item__name {
  margin: 0;
  font-size: var(--fs-16);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -.01em;
}

.wish-item__name a:hover {
  color: var(--olive-d);
}

.wish-item__meta,
.wish-item__stock {
  margin: 4px 0 0;
  font-size: var(--fs-12);
  font-weight: 600;
  color: var(--muted);
}

.wish-item__stock.is-out {
  color: var(--sale);
}

.wish-item__remove {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--muted);
  background: transparent;
}

.wish-item__remove:hover {
  color: var(--sale);
  background: rgba(214, 60, 50, .08);
}

.wish-item__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.wish-item__price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
}

.wish-item__old {
  font-size: var(--fs-14);
  font-weight: 600;
  color: var(--muted);
  text-decoration: line-through;
}

.wish-item__now {
  font-size: var(--fs-20);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.02em;
}

.wish-item__old + .wish-item__now {
  color: var(--sale);
}

.wish-item__cart {
  min-height: 40px;
}

.compare-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--paper);
}

.compare-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  table-layout: fixed;
}

.compare-table th,
.compare-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  text-align: left;
  font-size: var(--fs-14);
  font-weight: 600;
  color: var(--ink);
}

.compare-table th {
  width: 160px;
  background: var(--cream);
  color: var(--muted);
  font-size: var(--fs-12);
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  position: sticky;
  left: 0;
  z-index: 1;
}

.compare-table td {
  width: calc((100% - 160px) / 4);
}

.compare-table tr:last-child th,
.compare-table tr:last-child td {
  border-bottom: 0;
}

.compare-table__media img {
  width: 100%;
  max-width: 140px;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 12px;
  background: var(--wash);
}

.compare-table__name {
  font-weight: 800;
  line-height: 1.35;
}

.compare-table__name:hover {
  color: var(--olive-d);
}

.compare-table__old {
  display: block;
  font-size: var(--fs-12);
  color: var(--muted);
  text-decoration: line-through;
}

.compare-table__now {
  font-size: var(--fs-16);
  font-weight: 800;
  letter-spacing: -.02em;
}

.compare-table__old + .compare-table__now {
  color: var(--sale);
}

.compare-table__rating {
  display: inline-flex;
  gap: 2px;
  color: var(--olive);
  margin-bottom: 4px;
}

.compare-table__reviews {
  display: block;
  font-size: var(--fs-12);
  color: var(--muted);
  font-weight: 600;
}

.compare-table__desc {
  color: var(--muted);
  font-weight: 500;
  line-height: 1.45;
}

.compare-table__group th {
  background: var(--olive-m);
  color: var(--olive-d);
  text-transform: none;
  letter-spacing: 0;
  font-size: var(--fs-14);
  font-weight: 800;
}

.compare-table__btns {
  display: grid;
  gap: 8px;
}

.compare-table__btns .btn {
  justify-content: center;
  min-height: 40px;
  width: 100%;
}

/* ==========================================================================
   Back to top
   ========================================================================== */

.to-top {
  position: fixed;
  right: max(16px, env(safe-area-inset-right));
  bottom: max(20px, env(safe-area-inset-bottom));
  z-index: 72;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--olive);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(42, 44, 34, .18);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s, background .2s;
}

.to-top:hover {
  background: var(--olive-d);
}

.to-top.is-on {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}

.to-top:focus-visible {
  outline: 2px solid var(--olive);
  outline-offset: 3px;
}

/* ==========================================================================
   Mobile dock (shown in media.css)
   ========================================================================== */

.dock {
  display: none;
}

.dock__item {
  appearance: none;
  border: 0;
  background: none;
  font: inherit;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  min-width: 0;
  padding: 6px 4px;
  border-radius: 12px;
  -webkit-tap-highlight-color: transparent;
}

.dock__ico {
  position: relative;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  font-size: 18px;
  line-height: 1;
}

.dock__txt {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .01em;
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.dock__ico .badge {
  top: -4px;
  right: -8px;
}

/* ==========================================================================
   Account
   ========================================================================== */

.wrap--narrow {
  max-width: 640px;
}

.board__lead {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: var(--fs-14);
  line-height: 1.5;
}

.status-card {
  margin: 8px auto 0;
  max-width: 560px;
  padding: 28px 28px 24px;
  border-radius: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(42, 44, 34, .06);
  text-align: left;
}

.status-card__icon {
  width: 48px;
  height: 48px;
  margin: 0 0 16px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(214, 60, 50, .1);
  color: var(--sale);
  font-size: 22px;
}

.status-card__head {
  margin: 0 0 14px;
}

.status-card__head h1 {
  margin: 0;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--ink);
  text-align: left;
}

.status-card__body {
  font-size: var(--fs-14);
  line-height: 1.6;
  color: var(--ink);
}

.status-card__body p {
  margin: 0 0 12px;
}

.status-card__body p:last-child {
  margin-bottom: 0;
}

.status-card__label {
  margin: 16px 0 8px !important;
  font-weight: 700;
  color: var(--ink);
}

.status-card__body ul {
  margin: 0 0 16px;
  padding: 0 0 0 1.15em;
  list-style: disc;
}

.status-card__body li {
  margin: 0 0 6px;
  padding: 0;
  line-height: 1.45;
}

.status-card__body a {
  color: var(--olive-d);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.status-card__actions {
  margin-top: 22px;
}

.status-card__actions .btn {
  width: 100%;
  height: 46px;
}

.board__alert.is-err {
  background: var(--sale-m);
  border-color: transparent;
  color: var(--sale-d);
}

.board__head--row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.auth-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 20px;
  align-items: start;
}

.auth-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 24px;
}

.auth-card--side {
  background: var(--wash);
}

.auth-card--center {
  text-align: center;
}

.auth-card h2 {
  margin: 0 0 8px;
  font-size: var(--fs-20);
  font-weight: 800;
}

.auth-card__lead {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: var(--fs-14);
  line-height: 1.5;
}

.auth-card .btn {
  width: 100%;
  justify-content: center;
}

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

.account-layout:not(:has(.account-nav)) {
  grid-template-columns: 1fr;
}

.account-nav {
  display: grid;
  gap: 4px;
  padding: 10px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  position: sticky;
  top: 96px;
}

.account-nav__link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--ink);
  font-size: var(--fs-14);
  font-weight: 600;
  text-decoration: none;
  transition: background .15s ease, color .15s ease;
}

.account-nav__link i {
  width: 1.1em;
  text-align: center;
  color: var(--muted);
}

.account-nav__link:hover,
.account-nav__link.is-active {
  background: var(--olive-m);
  color: var(--olive-d);
}

.account-nav__link:hover i,
.account-nav__link.is-active i {
  color: var(--olive-d);
}

.account-nav__link.is-muted {
  margin-top: 6px;
  color: var(--muted);
}

.account-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
}

.account-tile {
  display: grid;
  gap: 10px;
  justify-items: start;
  padding: 18px 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  font-size: var(--fs-14);
  transition: border-color .15s ease, background .15s ease;
}

.account-tile i {
  font-size: 20px;
  color: var(--olive);
}

.account-tile:hover {
  background: var(--olive-m);
  border-color: transparent;
}

.account-form {
  display: grid;
  gap: 14px;
}

.account-form--card {
  padding: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
}

.account-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.account-form__grid .field-block--full {
  grid-column: 1 / -1;
}

.account-form__row {
  display: flex;
  justify-content: flex-end;
}

.account-form__link {
  font-size: var(--fs-14);
  font-weight: 600;
  color: var(--olive-d);
}

.account-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.account-form__group {
  border: 0;
  padding: 0;
  margin: 0 0 4px;
}

.account-form__group legend {
  font-weight: 700;
  margin-bottom: 8px;
}

.account-check,
.account-check-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: var(--fs-14);
  color: var(--ink);
}

.account-check input {
  accent-color: var(--olive);
}

.account-check a {
  color: var(--olive-d);
}

.address-list,
.order-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.address-card,
.order-card,
.order-box {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 16px 18px;
}

.address-card {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.address-card__text {
  white-space: pre-line;
  line-height: 1.5;
  font-size: var(--fs-14);
}

.address-card__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

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

.order-card__id {
  margin: 0;
  font-weight: 800;
}

.order-card__meta {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: var(--fs-14);
}

.order-card__status {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: var(--pill);
  background: var(--olive-m);
  color: var(--olive-d);
  font-size: var(--fs-12);
  font-weight: 700;
}

.order-card__bottom {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.order-card__total {
  font-size: var(--fs-16);
}

.order-box + .order-box {
  margin-top: 12px;
}

.order-box h2 {
  margin: 0 0 12px;
  font-size: var(--fs-16);
  font-weight: 800;
}

.order-box__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  font-size: var(--fs-14);
  line-height: 1.55;
}

.order-box__text {
  font-size: var(--fs-14);
  line-height: 1.55;
  white-space: pre-line;
}

.order-products,
.order-totals,
.order-history {
  list-style: none;
  margin: 0;
  padding: 0;
}

.order-product {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.order-product__name {
  margin: 0;
  font-weight: 700;
}

.order-product__opt {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: var(--fs-12);
}

.order-product__meta {
  display: grid;
  justify-items: end;
  gap: 4px;
  font-size: var(--fs-14);
}

.order-product__act {
  grid-column: 1 / -1;
}

.order-totals {
  margin-top: 12px;
}

.order-totals li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 0;
  font-size: var(--fs-14);
}

.order-history li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: var(--fs-14);
}

.order-history p {
  margin: 6px 0 0;
  color: var(--muted);
}

.account-pager {
  margin-top: 16px;
}

.account-pager .pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.account-pager .pagination > li > a,
.account-pager .pagination > li > span {
  display: inline-flex;
  min-width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  font-size: var(--fs-14);
  font-weight: 600;
  text-decoration: none;
}

.account-pager .pagination > .active > span,
.account-pager .pagination > li > a:hover {
  background: var(--olive);
  border-color: var(--olive);
  color: #fff;
}
