:root {
  --bgBase: #f6f1eb;
  --bgCard: #fffcf7;
  --mainText: #908488;
  --head1Text: #837471;
  --head2Text: #a27c73;
  --whiteText: #fff;
  --grayText: #8c8c8c;
  --whiteBtn: #fff;
  --baseBtn: #3d2d32;
  --orangeBtn: #ea5c14;
  --filterBtn: #84767b;
  --blackBtn: #3d2d32;
  --color2Menu: #b5b2b2;
  --grayIcon: #777;
  --font-roboto: "Roboto Artauro", Roboto, Arial, sans-serif;
  --font-georgia: "Georgia Artauro", Georgia, "Times New Roman", serif;
}

@font-face {
  font-family: "Roboto Artauro";
  src: url("../fonts/roboto-cyr.woff2") format("woff2");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Roboto Artauro";
  src: url("../fonts/roboto-latin.woff2") format("woff2");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122;
}
@font-face {
  font-family: "Georgia Artauro";
  src: url("../fonts/georgia.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Georgia Artauro";
  src: url("../fonts/georgia-italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html {
  min-height: 100%;
  padding: 0;
  margin: 0;
  background: var(--baseBtn);
  scroll-behavior: smooth;
}
body {
  padding: 0;
  margin: 0;
  background: var(--bgBase);
  scroll-behavior: smooth;
  font-family: var(--font-roboto);
  color: var(--mainText);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
body.home { background: var(--bgCard); }
.site-shell {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; border: 0; display: block; }
button, input, select, textarea { font-family: inherit; }

.wrap { max-width: 1270px; width: 100%; padding: 0 35px; margin: 0 auto; }
.page { padding-top: 105px; min-height: 60vh; }
.elegant { font-family: var(--font-georgia), serif; }
.upper { text-transform: uppercase; }
.italic { font-style: italic; }
.center { text-align: center; }

.h1 { font-size: 36px; font-weight: 400; color: var(--head1Text); }
.h2 { font-size: 26px; font-weight: 400; color: var(--head1Text); }
.sub { font-size: 14.4px; font-weight: 400; color: var(--head2Text); }
.text { font-size: 16px; font-weight: 400; line-height: 24px; color: var(--mainText); }

.btn {
  font-weight: 400;
  font-family: var(--font-roboto);
  outline: 0;
  border: 0;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  line-height: 1;
  padding: 12px 25px;
  border-radius: 2px;
  position: relative;
  transition: outline .4s, transform .1s;
  text-align: center;
}
.btn:hover { outline: 1px solid var(--orangeBtn); transform: scale(1.02); }
.btn-1 { background: var(--baseBtn); color: var(--whiteBtn); }
.btn-2 { background: var(--whiteBtn); outline: 1px solid var(--baseBtn); color: var(--baseBtn); }
.btn-3 { background: transparent; outline: 1px solid var(--baseBtn); color: var(--baseBtn); }
.btn-4 { background: transparent; color: #fff; outline: 1px solid #fff; }

/* Header */
.header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 20;
  background: var(--bgBase);
}
body.home .header { background: var(--bgCard); }
.nav {
  position: relative;
  display: flex;
  align-items: flex-end;
  height: 105px;
  transition: height .2s ease;
}
.logo {
  position: absolute;
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  transition: opacity .2s ease, transform .4s cubic-bezier(.6, -.05, .01, .99);
}
.logo img, .logo svg { width: 183px; height: 32px; display: block; }
.logo-short {
  display: flex;
  align-items: center;
  width: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transform: translateX(-50px);
  transition: width .5s cubic-bezier(.6, -.05, .01, .99),
              opacity .5s cubic-bezier(.6, -.05, .01, .99),
              transform .5s cubic-bezier(.6, -.05, .01, .99);
  flex-shrink: 0;
}
.logo-short svg { width: 38px; height: 26px; display: block; flex-shrink: 0; }
.nav-left {
  position: absolute;
  left: 0;
  bottom: 6px;
  display: flex;
  align-items: center;
  height: 31px;
  gap: 0;
  z-index: 7;
}
.search-btn, .icon-btn {
  cursor: pointer;
  display: flex;
  align-items: center;
  background: none;
  border: 0;
  color: inherit;
  padding: 0 12px 0 0;
}
.search-btn path { fill: #8c8c8c; }
.nav-right {
  position: absolute;
  right: 0;
  top: 5px;
  display: flex;
  align-items: flex-start;
  z-index: 7;
  transition: top .2s ease;
}
.phone-num {
  margin-right: 28px;
  margin-top: 13px;
  font-weight: 500;
  color: var(--baseBtn);
  font-size: 16px;
  line-height: 1.2;
  transition: opacity .2s ease;
}
.phone-num span {
  margin-top: 2px;
  display: block;
  text-align: center;
  font-size: 12px;
  opacity: .6;
}
.header-icons {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  margin-top: 14px;
  transition: margin-top .2s ease;
}
.icon-wrap { position: relative; display: flex; }
.icon-wrap svg { stroke: var(--baseBtn); }
.icon-cart svg { overflow: visible; }
.badge {
  position: absolute;
  background: var(--orangeBtn);
  border-radius: 100%;
  height: 20px;
  width: 20px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 10px;
  bottom: -8px;
  right: -2px;
}
.nav-links { margin: 0 auto 6px; width: 100%; }
.nav-row {
  display: flex;
  gap: 30px;
  margin: 0 130px;
  justify-content: center;
  overflow: auto;
}

/* Scrolled / sticky compact header (matches artauro.ru) */
.header.is-scrolled .nav { height: 46px; }
.header.is-scrolled .logo {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-50px);
}
.header.is-scrolled .logo-short {
  width: 68px;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
  transition-delay: .1s;
}
.header.is-scrolled .phone-num {
  opacity: 0;
  pointer-events: none;
  width: 0;
  margin: 0;
  overflow: hidden;
}
.header.is-scrolled .header-icons { margin-top: 4px; }
.header.is-scrolled .nav-right { top: 8px; }
.nav-item {
  cursor: pointer;
  position: relative;
  white-space: nowrap;
  padding-bottom: 4px;
}
.nav-item > a,
.nav-item > .nav-trigger {
  font-size: 12.6px;
  color: #3D2D32;
  text-transform: uppercase;
  letter-spacing: .02em;
  background: none;
  border: 0;
  padding: 0;
  font-family: inherit;
  cursor: pointer;
  line-height: inherit;
}
.nav-item:after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  width: 0;
  background: var(--orangeBtn);
  transition: .4s;
}
.nav-item:hover:after,
.nav-item.active:after,
.nav-item.is-open:after,
.header.is-menu-open .nav-item.is-open:after { width: 100%; }
.nav-item:hover > a,
.nav-item:hover > .nav-trigger,
.nav-item.active > a,
.nav-item.active > .nav-trigger,
.nav-item.is-open > .nav-trigger {
  text-shadow: 0 0 .65px #3d2d32, 0 0 .65px #3d2d32;
}

/* Full-width mega-menu (donor: #fff panel, fixed under header) */
.submenu {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  top: calc(105px - 6px);
  width: 100%;
  max-height: none;
  background: #fff;
  padding: 30px 0 45px;
  z-index: 25;
  box-sizing: border-box;
}
.header.is-scrolled .submenu { top: calc(46px - 6px); }
.submenu.is-open { display: block; }
.submenu[hidden] { display: none !important; }
.submenu.is-open[hidden] { display: block !important; }
.submenu-panel {
  display: flex;
  justify-content: center;
  gap: 0;
  overflow: auto;
  max-width: 1270px;
  margin: 0 auto;
  padding: 0 35px;
  box-sizing: border-box;
}
.submenu-kinds { height: 430px; max-height: min(430px, calc(100vh - 140px)); }
.submenu-kinds > .submenu-col:not(:last-child) { margin-right: 78px; }
.submenu-wedding {
  height: 360px;
  max-height: min(360px, calc(100vh - 140px));
  gap: 65px;
}
.submenu-col { min-width: 180px; }
.submenu-col h4 {
  font-size: 14px;
  text-transform: uppercase;
  color: var(--head2Text);
  margin: 0 0 22px;
  font-weight: 400;
  letter-spacing: .02em;
}
.submenu-col a {
  display: block;
  width: fit-content;
  max-width: 220px;
  margin-bottom: 5px;
  font-size: 14px;
  color: var(--baseBtn);
  text-transform: uppercase;
  letter-spacing: .02em;
  position: relative;
  line-height: 1.35;
  white-space: normal;
}
.submenu-col a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--orangeBtn);
  transition: .3s;
}
.submenu-col a:hover:before,
.submenu-col a:focus-visible:before,
.submenu-col a.is-active:before { width: 100%; }
.submenu-col a.is-active {
  text-shadow: 0 0 .65px #3d2d32, 0 0 .65px #3d2d32;
}
.burger { display: none; background: none; border: 0; cursor: pointer; padding: 6px; }
.burger span { display: block; width: 20px; height: 1.5px; background: #3d2d32; margin: 5px 0; }

.search-panel {
  display: none;
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: #fff;
  padding: 20px 35px 24px;
  box-shadow: 0 8px 20px rgba(0,0,0,.06);
}
.search-panel.open { display: block; }
.search-panel form { display: flex; max-width: 720px; margin: 0 auto; gap: 12px; }
.search-panel input {
  flex: 1;
  border: 1px solid var(--head1Text);
  padding: 12px 20px;
  outline: none;
  background: #fff;
}
.search-suggest[hidden] { display: none !important; }
.search-suggest {
  max-width: 720px;
  margin: 8px auto 0;
  background: #fff;
  border: 1px solid #e6ddd3;
  box-shadow: 0 8px 20px rgba(0,0,0,.06);
}
.search-suggest__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.search-suggest__item + .search-suggest__item {
  border-top: 1px solid #f1ebe5;
}
.search-suggest__link {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 14px;
}
.search-suggest__link:hover,
.search-suggest__link:focus-visible {
  background: #faf6f1;
}
.search-suggest__title {
  color: #3d2d32;
  font-size: 14px;
  line-height: 1.3;
}
.search-suggest__meta {
  color: #8f8285;
  font-size: 12px;
  line-height: 1.3;
}
.search-suggest__empty {
  margin: 0;
  padding: 12px 14px;
  color: #8f8285;
  font-size: 13px;
}

/* Home */
.promo {
  position: relative;
  width: 100%;
  min-height: 353px;
  aspect-ratio: 128 / 59;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.promo img, .hero-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.promo-info {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  margin: 16px 55px 0 auto;
}
.promo-text {
  font-family: var(--font-georgia);
  text-transform: uppercase;
  color: #854E16;
  font-size: 26px;
  letter-spacing: .02em;
  line-height: 1.2;
}
.promo-info .btn { max-width: 245px; font-size: 14px; }

.hero-split {
  position: relative;
  width: 100%;
  aspect-ratio: 1200 / 533;
  display: flex;
  align-items: center;
}
.hero-split .content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  width: fit-content;
  margin: 63px auto 0 80px;
}
.hero-title {
  font-family: var(--font-georgia);
  text-transform: uppercase;
  font-size: 50px;
  line-height: 1.2;
  color: var(--head1Text);
  text-align: center;
}
.hero-sub {
  font-style: italic;
  font-size: 29px;
  line-height: 1.2;
  color: var(--mainText);
  text-align: center;
}
.hero-split .btn { max-width: 350px; }

.hero-best {
  position: relative;
  width: 100%;
  min-height: 454px;
  aspect-ratio: 2560 / 1087;
  display: flex;
  align-items: center;
}
.hero-best .content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(972px, 56vw);
  margin: 70px 40px 0 auto;
}
.hero-best .title {
  font-family: var(--font-georgia);
  text-transform: uppercase;
  font-size: 47px;
  margin-bottom: 23px;
  color: #fff;
  letter-spacing: .3px;
  line-height: 1.2;
  text-align: center;
}
.hero-best .subtitle {
  font-weight: 200;
  font-size: 26px;
  line-height: 1.2;
  margin-bottom: 40px;
  color: #fff;
  text-align: center;
}
.hero-best .btn { max-width: 330px; }

.block-news { background: #fff; padding: 86px 0 74px; }
.block-news .h2 { margin-bottom: 40px; font-size: 36px; text-align: center; text-transform: uppercase; }
.news-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.news-card .image {
  padding-bottom: 100%;
  position: relative;
  background: var(--bgCard);
  outline: 1px solid #000;
}
.news-card .image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; }
.news-card .info { display: flex; flex-direction: column; align-items: center; }
.news-card h3 {
  font-family: var(--font-georgia);
  text-transform: uppercase;
  margin: 33px 0 6px;
  font-size: 26px;
  font-weight: 400;
  color: var(--head1Text);
  text-align: center;
}
.news-card p { text-align: center; font-style: italic; line-height: 24px; font-size: 16px; color: var(--head2Text); }
.news-more { max-width: 290px; margin: 50px auto 0; }

.block-cert { padding: 64px 0 50px; }
.cert-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.cert-image { padding-bottom: 100%; position: relative; background: #fff; }
.cert-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; }
.cert-info { display: flex; flex-direction: column; justify-content: center; align-items: center; max-width: 500px; justify-self: end; }
.cert-info .title {
  font-family: var(--font-georgia);
  text-transform: uppercase;
  font-size: 36px;
  text-align: center;
  color: var(--head2Text);
}
.cert-info ul { color: #908488; margin-top: 26px; padding-left: 20px; }
.cert-info li { line-height: 1.5; margin-bottom: 2px; }
.cert-info .btn { max-width: 290px; margin-top: 50px; }

.block-lists { padding: 50px 0; background: #fff; overflow: visible; }
.block-lists .wrap { padding-left: 60px; padding-right: 60px; }
.block-lists .h2 {
  margin-bottom: 23px;
  text-align: center;
  text-transform: uppercase;
  font-family: var(--font-georgia);
}
.lists-carousel {
  width: 100%;
  position: relative;
}
.lists-viewport {
  overflow: hidden;
  width: 100%;
  touch-action: pan-y;
  cursor: grab;
}
.lists-track {
  display: flex;
  will-change: transform;
  user-select: none;
}
.lists-carousel.is-dragging,
.lists-carousel.is-dragging .lists-viewport { cursor: grabbing; }
.lists-carousel.is-dragging .list-card { pointer-events: none; }
.list-card {
  flex: 0 0 auto;
  text-align: center;
  color: var(--mainText);
}
.list-card .image {
  padding-bottom: 100%;
  position: relative;
  margin-bottom: 20px;
  background: var(--bgCard);
}
.list-card .image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-width: 100%;
  transform: scale(.8);
  pointer-events: none;
}
.list-card h3 {
  max-width: 200px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
  font-family: var(--font-roboto);
  color: var(--mainText);
}
.lists-btn {
  position: absolute;
  top: 40%;
  z-index: 5;
  padding: 30px 40px;
  background: none;
  border: 0;
  color: inherit;
  cursor: pointer;
  line-height: 0;
}
.lists-btn-prev { transform: rotate(90deg); left: -70px; padding-bottom: 0; }
.lists-btn-next { transform: rotate(-90deg); right: -70px; padding-bottom: 0; }
.lists-btn.is-disabled { opacity: .2; pointer-events: none; }

/* Subscribe + footer */
.subscribe { border-top: 1px solid var(--orangeBtn); }
.subscribe-inner { margin: 20px 0 36px; display: flex; flex-direction: column; align-items: center; }
.subscribe-inner .sub { text-transform: uppercase; text-align: center; }
.subscribe-inner .text { margin-top: 10px; text-align: center; }
.sub-form { margin-top: 15px; display: flex; }
.sub-form input {
  border: 1px solid var(--head1Text);
  padding: 12px 20px;
  width: 295px;
  outline: none;
  margin-right: 23px;
  background: #fff;
}
.sub-form input::placeholder { color: #b7b6b6; font-style: italic; }
.sub-form .btn { width: 155px; }

.footer { background: var(--baseBtn); padding-top: 20px; }
.footer .join { margin-bottom: 15px; color: #fff; text-transform: uppercase; text-align: center; }
.social { display: flex; justify-content: center; align-items: center; gap: 45px; }
.social a { color: #fff; display: flex; }
.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 35px;
  padding: 20px 20px 30px;
  gap: 57px;
  border-top: 1px solid var(--color2Menu);
  border-bottom: 1px solid var(--color2Menu);
}
.footer-links a { text-transform: uppercase; font-weight: 500; color: #fff; font-size: 16px; }
.copy { padding: 20px 0 40px; display: flex; justify-content: center; color: #b5b2b2; }

.flash {
  background: #3d2d32;
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-size: 14px;
}

/* Catalog */
.catalog-banner {
  position: relative;
  width: 100%;
  padding-bottom: 25%;
  background: var(--bgCard);
  overflow: hidden;
}
.catalog-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.catalog-page.has-banner .catalog-head { padding-top: 30px; }
.catalog-head { padding: 36px 0 10px; text-align: center; }
.catalog-head h1 {
  font-family: var(--font-georgia);
  text-transform: uppercase;
  font-size: 26px;
  font-weight: 400;
  color: var(--head1Text);
}
.catalog-head p { width: 65%; margin: 8px auto 0; color: var(--mainText); line-height: 24px; }
.catalog-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 16px 0;
  font-size: 16px;
  color: #fff;
}
.catalog-sort {
  grid-column: 2 / 5;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #beb7ba;
  color: #fff;
  padding: 10px 20px;
  min-height: 40px;
  border-radius: 2px;
}
.catalog-bar select {
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 16px;
  outline: none;
  cursor: pointer;
  font-weight: 500;
}
.catalog-bar select option { color: var(--head1Text); }
.catalog-filter-btn {
  appearance: none;
  border: 0;
  background: #beb7ba;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 10px;
  width: 100%;
  min-height: 40px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.catalog-filter-btn:hover { background: #b0a8ab; color: #fff; }
.catalog-filter-btn--spacer { visibility: hidden; pointer-events: none; }
.catalog-filters-inline { display: none !important; }
.filter-inline-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.filter-inline-label {
  font-size: 13px;
  color: var(--mainText);
  margin-right: 4px;
}
.catalog-chip,
.catalog-chip-reset {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border: 1px solid #d7ccc1;
  border-radius: 24px;
  color: var(--head1Text);
  font-size: 13px;
  text-decoration: none;
  background: #fff;
  cursor: pointer;
}
.catalog-chip small { color: var(--mainText); font-size: 12px; }
.catalog-chip.is-active,
.catalog-chip:hover {
  border-color: var(--baseBtn);
  color: var(--baseBtn);
  background: #f8f4ee;
}
.catalog-chip-reset { border: 0; color: var(--filterBtn); background: transparent; padding-left: 4px; }
.catalog-active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 0 0 18px;
}
.catalog-seo-text {
  max-width: 820px;
  margin: 48px auto 20px;
  padding-top: 28px;
  border-top: 1px solid #ebe3da;
  color: var(--mainText);
  line-height: 1.7;
  font-size: 15px;
  text-align: left;
}
.catalog-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0 0; }
.catalog-item {
  min-width: 0;
  display: flex;
}
.catalog-item.is-price-hidden { display: none; }

.filter-drawer[hidden] { display: none !important; }
.filter-drawer {
  position: fixed;
  inset: 0;
  z-index: 80;
}
.filter-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(40, 30, 34, .35);
}
.filter-drawer__panel {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(360px, 92vw);
  background: #fff;
  display: flex;
  flex-direction: column;
  box-shadow: 8px 0 28px rgba(0,0,0,.12);
  animation: filterIn .22s ease;
}
@keyframes filterIn {
  from { transform: translateX(-12px); opacity: .6; }
  to { transform: none; opacity: 1; }
}
.filter-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 22px 12px;
  border-bottom: 1px solid #eee7e0;
}
.filter-drawer__head h2 {
  font-family: var(--font-georgia);
  font-size: 22px;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--head1Text);
}
.filter-drawer__close {
  border: 0;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: var(--head1Text);
}
.filter-drawer__body {
  flex: 1;
  overflow: auto;
  padding: 8px 22px 24px;
}
.filter-drawer__foot {
  padding: 16px 22px 22px;
  border-top: 1px solid #eee7e0;
  display: grid;
  gap: 12px;
}
.filter-reset {
  text-align: center;
  color: var(--filterBtn);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.filter-group { padding: 16px 0; border-bottom: 1px solid #f0ebe5; }
.filter-group__title {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--head1Text);
  margin-bottom: 12px;
}
.filter-options { list-style: none; margin: 0; padding: 0; }
.filter-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  border: 1px solid transparent;
  border-radius: 2px;
  padding: 9px 8px;
  color: var(--head1Text);
  text-decoration: none;
  font-size: 14px;
  background: transparent;
  text-align: left;
  cursor: pointer;
}
.filter-option__check {
  width: 16px;
  height: 16px;
  border: 1px solid #cbbfb6;
  flex: 0 0 16px;
  position: relative;
}
.filter-option.is-active .filter-option__check,
.filter-option:hover .filter-option__check {
  border-color: var(--baseBtn);
}
.filter-option.is-active .filter-option__check::after {
  content: "";
  position: absolute;
  inset: 3px;
  background: var(--baseBtn);
}
.filter-option__label { flex: 1; }
.filter-option__count { color: var(--mainText); font-size: 13px; }
.filter-option.is-active {
  background: #f8f3ed;
  border-color: #eadfd3;
}
.filter-option.is-disabled {
  opacity: .35;
  pointer-events: none;
}
.filter-price {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.filter-price label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  color: var(--mainText);
}
.filter-price input {
  width: 100%;
  border: 1px solid #ddd2c8;
  padding: 8px 10px;
  font-size: 14px;
  background: #fff;
}
.filter-price-hint {
  margin-top: 10px;
  font-size: 12px;
  color: var(--mainText);
  line-height: 1.4;
}

.p-card {
  padding: 0 8px 36px;
  text-align: center;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.p-card .pic {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  background: var(--bgCard);
}
.p-card .pic img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(.8);
}
.p-card h3 {
  margin-top: 12px;
  font-size: 15px;
  font-weight: 400;
  color: var(--head1Text);
  min-height: 40px;
  line-height: 1.3;
}
.p-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.p-card__title-link {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.p-card__meta {
  min-height: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.p-card .price {
  font-size: 15px;
  color: #706C6C;
  margin-top: 6px;
  min-height: 19px;
}
.p-card .price.is-empty { visibility: hidden; }
.stock { display: inline-flex; align-items: center; gap: 6px; margin-top: 6px; font-style: italic; font-size: 13px; color: var(--blackBtn); min-height: 15px; }
.stock--placeholder { visibility: hidden; }
.dot { width: 15px; height: 15px; border-radius: 50%; border: 2px solid #fff; background: #20882b; }

/* Product cards: donor-like hover controls */
.p-card .pic {
  overflow: hidden;
}
.p-card__media-link {
  position: absolute;
  inset: 0;
  display: block;
}
.p-card .pic img {
  transition: opacity .18s ease;
}
.p-card__title-link:hover { color: var(--head2Text); }
.p-card__cart-form {
  margin-top: auto;
  padding-top: 10px;
}
.p-card__cart-btn {
  min-height: 38px;
  font-size: 14px;
  transition: opacity .18s ease, transform .18s ease;
}
.p-card__cart-btn[disabled] {
  opacity: .7;
  cursor: default;
  transform: none;
}
.p-card__arrow,
.p-card__fav-btn {
  position: absolute;
  z-index: 7;
  border: 0;
  background: rgba(255, 255, 255, .93);
  color: var(--baseBtn);
  cursor: pointer;
  transition: opacity .16s ease, transform .16s ease;
}
.p-card__arrow {
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 42px;
  line-height: 1;
  font-size: 26px;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.p-card__arrow--prev { left: 8px; }
.p-card__arrow--next { right: 8px; }
.p-card__fav-form {
  position: absolute;
  left: 8px;
  top: 8px;
  z-index: 8;
}
.p-card__fav-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.p-card__fav-btn svg {
  width: 20px;
  height: 18px;
}
.p-card__fav-btn path {
  stroke: #3D2D32;
  stroke-width: 1.4;
  fill: transparent;
  transition: fill .16s ease, stroke .16s ease;
}
.p-card__fav-btn.is-active path {
  fill: #3D2D32;
}
@media (hover: hover) and (pointer: fine) {
  .p-card {
    position: relative;
  }
  .p-card__body {
    position: absolute;
    left: 8px;
    right: 8px;
    bottom: 36px;
    z-index: 5;
    padding: 10px 10px 0;
    background: rgba(255, 252, 247, .86);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity .18s ease, transform .18s ease, visibility 0s linear .18s;
  }
  .p-card:hover .p-card__body,
  .p-card:focus-within .p-card__body {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0s;
  }
  .p-card .pic img {
    transition: opacity .18s ease, transform .18s ease;
  }
  .p-card:hover .pic img,
  .p-card:focus-within .pic img {
    transform: scale(.78);
  }
  .p-card__cart-btn {
    opacity: 0;
    pointer-events: none;
    transform: translateY(6px);
  }
  .p-card:hover .p-card__cart-btn,
  .p-card:focus-within .p-card__cart-btn {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .p-card__arrow,
  .p-card__fav-btn {
    opacity: 0;
    pointer-events: none;
  }
  .p-card:hover .p-card__arrow,
  .p-card:focus-within .p-card__arrow,
  .p-card:hover .p-card__fav-btn,
  .p-card:focus-within .p-card__fav-btn {
    opacity: 1;
    pointer-events: auto;
  }
}
@media (hover: none), (pointer: coarse) {
  .p-card__body {
    position: static;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    background: transparent;
    padding: 0;
  }
  .p-card__cart-btn {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
  .p-card__arrow,
  .p-card__fav-btn {
    opacity: 1;
    pointer-events: auto;
  }
}

/* Product */
.product { padding-bottom: 48px; }
.product-crumbs {
  margin: 6px 0 14px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--grayText);
  text-align: right;
}
.product-crumbs a:hover { color: var(--head2Text); }
.product-wrap { display: flex; align-items: flex-start; padding-top: 24px; }
.thumbs { width: 72px; display: flex; flex-direction: column; gap: 10px; }
.thumbs button {
  width: 72px; height: 72px; border: 1px solid transparent; background: var(--bgCard); padding: 0; cursor: pointer;
}
.thumbs button.active { outline: 1px solid #3d2d32; }
.thumbs img { width: 100%; height: 100%; object-fit: cover; }
.main-slide { position: relative; margin: 0 36px 0 20px; width: 558px; height: 558px; flex-shrink: 0; }
.main-slide img { width: 100%; height: 100%; object-fit: contain; }
.product-info { flex: 1; padding-top: 10px; max-width: 460px; }
.product-info h1 {
  font-family: var(--font-georgia);
  text-transform: uppercase;
  margin: 0 0 10px;
  font-size: 23.3px;
  font-weight: 400;
  color: var(--head1Text);
}
.sku { font-size: 11px; color: #837471; font-style: italic; }
.product-status { margin: 50px 0 30px; display: flex; align-items: center; gap: 30px; }
.product-status .price { font-size: 16px; color: #706C6C; }
.product-actions { display: flex; flex-direction: column; gap: 10px; }
.cart-state { background: var(--baseBtn); color: #fff; }
.product-contact-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  justify-content: flex-end;
  background: rgba(246, 241, 235, .72);
}
.product-contact-modal[hidden] { display: none; }
.product-contact-modal__backdrop { flex: 1; }
.product-contact-modal__panel {
  width: min(440px, 100%);
  min-height: 100%;
  background: #f7f2ed;
  padding: 28px 28px 24px;
  border-left: 1px solid #ddd2ca;
  position: relative;
  overflow: auto;
}
.product-contact-modal__close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: 0;
  background: transparent;
  color: #8f8480;
  font-size: 38px;
  line-height: 1;
  cursor: pointer;
}
.product-contact-modal h2 {
  margin: 0 0 14px;
  font-size: 22px;
  font-weight: 400;
  color: var(--head1Text);
  font-family: var(--font-georgia);
  text-transform: uppercase;
}
.product-contact-modal__form {
  display: flex;
  flex-direction: column;
}
.product-contact-modal__field { margin-bottom: 8px; }
.product-contact-modal__field label {
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
  line-height: 1.18;
  color: #7f7470;
  font-family: var(--font-georgia);
  font-style: italic;
}
.product-contact-modal__field input,
.product-contact-modal__field textarea {
  width: 100%;
  border: 1px solid #aaa19b;
  background: #f7f2ed;
  color: var(--head2Text);
  padding: 9px 13px;
  font-size: 14px;
  line-height: 1.2;
  font-family: var(--font-georgia);
}
.product-contact-modal__field textarea {
  min-height: 82px;
  resize: vertical;
}
.product-contact-modal__field input::placeholder,
.product-contact-modal__field textarea::placeholder {
  color: #8d8581;
  font-size: 14px;
}
.product-contact-modal__consent {
  margin-top: 6px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-family: var(--font-georgia);
  font-style: italic;
  color: #7f7470;
  font-size: 14px;
  line-height: 1.2;
}
.product-contact-modal__consent input {
  margin-top: 5px;
  width: 16px;
  height: 16px;
}
.product-contact-modal__consent a {
  color: inherit;
  text-decoration: underline;
}
.product-contact-modal__submit {
  margin-top: 12px;
  width: 100%;
  min-height: 44px;
}
.product-contact-modal__hint {
  margin-top: 10px;
  text-align: center;
  font-family: var(--font-georgia);
  font-style: italic;
  color: #6e6361;
  font-size: 13px;
  line-height: 1.25;
}
.product-contact-modal__hint--small { margin-top: 8px; }
.product-contact-modal__error {
  min-height: 16px;
  margin: 4px 0 0;
  color: #ba2f2f;
  font-size: 13px;
}
.product-contact-modal__form-message {
  margin: 8px 0 0;
  min-height: 18px;
  font-size: 14px;
}
.product-contact-modal__form-message.is-error { color: #ba2f2f; }
.product-contact-modal__form-message.is-success { color: #2f7a33; }
.product-desc { margin-top: 28px; }
.product-desc p { margin-bottom: 12px; line-height: 24px; }
.product-desc ul { padding-left: 18px; color: var(--mainText); }
.product-desc li { margin-bottom: 6px; line-height: 1.5; }
.acc { border-top: 1px solid #e4ddd6; margin-top: 18px; }
.acc details { border-bottom: 1px solid #e4ddd6; }
.acc summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 0;
  text-transform: uppercase;
  color: var(--head2Text);
  font-size: 14.4px;
}
.acc summary::-webkit-details-marker { display: none; }
.acc details p { padding-bottom: 14px; }

/* PDP info tabs (match artauro.ru item tabs) */
.product-tabs {
  margin-top: 87px;
  padding-bottom: 40px;
}
.product-tabs__nav {
  display: flex;
  width: 100%;
  max-width: 600px;
  margin: 0 auto 30px;
  justify-content: space-between;
  list-style: none;
  gap: 12px;
}
.product-tabs__nav li {
  position: relative;
  padding: 2px 0;
  width: fit-content;
}
.product-tabs__nav button {
  appearance: none;
  border: 0;
  background: transparent;
  text-transform: uppercase;
  font-size: 14.4px;
  color: var(--head2Text);
  opacity: .5;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
}
.product-tabs__nav li.is-active button { opacity: 1; }
.product-tabs__nav li.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 2px;
  background: var(--orangeBtn);
}
.product-tabs__body {
  display: flex;
  color: #8b8a8a;
  gap: 24px;
  align-items: flex-start;
}
.product-tabs__text {
  flex: 1;
  margin-right: 16px;
  line-height: 1.5;
  min-width: 0;
}
.product-tab-panel p + p { margin-top: 26px; }
.product-tabs__logos {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 16px;
}
.product-tabs__logos img { display: block; height: auto; max-height: 36px; width: auto; }
.product-tabs__visual {
  position: relative;
  flex-shrink: 0;
  width: 375px;
  height: 280px;
  overflow: hidden;
  background: var(--bgCard);
}
.product-tabs__visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reco { padding: 40px 0 60px; }
.reco h2 {
  text-align: center;
  text-transform: uppercase;
  font-family: var(--font-georgia);
  margin-bottom: 28px;
}
.reco-carousel {
  width: 100%;
  position: relative;
}
.reco-carousel__viewport {
  overflow: hidden;
  width: 100%;
  touch-action: pan-y;
  cursor: grab;
}
.reco-carousel__track {
  display: flex;
  will-change: transform;
  user-select: none;
}
.reco-carousel.is-dragging,
.reco-carousel.is-dragging .reco-carousel__viewport { cursor: grabbing; }
.reco-carousel.is-dragging .p-card { pointer-events: none; }
.reco-carousel__slide {
  flex: 0 0 auto;
  min-width: 0;
  display: flex;
}
.reco-carousel__btn {
  position: absolute;
  top: 35%;
  z-index: 5;
  padding: 30px 40px;
  background: none;
  border: 0;
  color: inherit;
  cursor: pointer;
  line-height: 0;
}
.reco-carousel__btn--prev { transform: rotate(90deg); left: -50px; padding-bottom: 0; }
.reco-carousel__btn--next { transform: rotate(-90deg); right: -50px; padding-bottom: 0; }
.reco-carousel__btn.is-disabled { opacity: .2; pointer-events: none; }

/* Cart / checkout */
.cart-title {
  margin: 30px 0;
  text-align: center;
  text-transform: uppercase;
  font-family: var(--font-georgia);
}
.steps { display: flex; gap: 22px; list-style: none; margin-bottom: 24px; flex-wrap: wrap; }
.steps li { color: var(--color2Menu); font-size: 14px; text-transform: lowercase; position: relative; padding-left: 18px; }
.steps li.active { color: var(--baseBtn); }
.steps li.active:before {
  content: "";
  position: absolute; left: 0; top: 5px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--orangeBtn);
}
.cart-layout {
  display: grid;
  grid-template-columns: minmax(450px, 1fr) 410px;
  gap: 0 55px;
  padding-bottom: 48px;
}
.cart-empty { text-align: center; padding: 30px 0; }
.cart-row {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #e8e0d8;
  align-items: center;
}
.cart-row img { width: 110px; height: 110px; object-fit: contain; background: var(--bgCard); }
.cart-row h3 { font-size: 16px; font-weight: 400; color: var(--head1Text); text-transform: uppercase; font-family: var(--font-georgia); }
.qty { display: flex; align-items: center; gap: 8px; margin-top: 10px; }
.qty button { width: 28px; height: 28px; border: 1px solid #cfc6c0; background: #fff; cursor: pointer; }
.qty input { width: 40px; text-align: center; border: 0; background: transparent; }
.bill { margin-top: 26px; padding: 35px 20px 10px; background: var(--bgCard); margin-bottom: 13px; }
.bill h2 { font-size: 16px; font-weight: 500; text-align: center; text-transform: uppercase; margin-bottom: 16px; }
.bill-line { display: flex; justify-content: space-between; padding: 8px 0; font-size: 15px; color: var(--head1Text); }
.help { margin: 18px 0; text-align: center; }
.help .label { font-family: var(--font-georgia); font-style: italic; margin-bottom: 8px; }

.form { display: flex; flex-direction: column; gap: 12px; max-width: 520px; }
.form label { font-size: 13px; color: var(--head2Text); text-transform: uppercase; }
.form input:not([type="checkbox"]):not([type="radio"]), .form textarea, .form select {
  border: 1px solid var(--head1Text);
  padding: 12px 16px;
  background: #fff;
  outline: none;
  width: 100%;
}
.form input[type="checkbox"],
.form input[type="radio"] {
  width: auto;
  flex: 0 0 auto;
  accent-color: var(--baseBtn);
}
.radio { display: flex; flex-direction: column; gap: 8px; color: var(--head1Text); }

/* About / stores / contacts / legal */
.about-hero, .about-block, .about-panel {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.about-hero { height: 520px; min-height: 520px; }
.about-panel--tall { min-height: 577px; height: 577px; align-items: flex-start; }
.about-panel__inner { position: relative; width: 100%; }
.about-panel__inner--end { display: flex; justify-content: flex-end; }
.about-info {
  max-width: 420px;
  margin-left: 100px;
  background: transparent;
  color: #fff;
}
.about-info--narrow { max-width: 363px; margin-left: 0; margin-right: 110px; }
.about-info--hj { max-width: 413px; margin-left: 0; margin-right: 80px; margin-top: 94px; }
.about-info h1, .about-info h2 {
  width: fit-content;
  border-bottom: 1px solid var(--orangeBtn);
  padding-bottom: 5px;
  margin: 0 0 27px;
  font-size: 28px;
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
  font-family: var(--font-georgia);
}
.about-info p {
  white-space: pre-line;
  line-height: 1.55;
  color: #fff;
  font-size: 16px;
}
.about-split { display: grid; grid-template-columns: 1fr 1fr; padding: 40px 0 55px; gap: 30px; align-items: center; }
.about-split .info { max-width: 380px; margin: 0 auto; }
.about-split .media { aspect-ratio: 1; background: var(--bgCard); }
.about-split .media img { width: 100%; height: 100%; object-fit: cover; }

/* Stores / contacts listing — match artauro.ru/stores */
.stores-promo {
  background: var(--baseBtn);
  padding: 10px 0;
  margin-bottom: 36px;
  color: #fff;
  text-align: center;
  line-height: 1.5;
  font-size: 16px;
}
.stores-layout {
  display: flex;
  padding-bottom: 50px;
  align-items: flex-start;
}
.stores-info {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 50px;
  max-width: 420px;
}
.stores-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.stores-section + .stores-section { margin-top: 25px; }
.stores-section--city { margin-top: 38px; }
.stores-info > .stores-section:first-child { margin-top: 0; }
.stores-city {
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
  color: var(--head2Text);
  margin: 0;
}
.stores-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.stores-item--spaced { margin-top: 25px; }
.stores-name {
  display: block;
  margin-top: 15px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--mainText);
  text-align: center;
  text-decoration: none;
}
.stores-name:hover { color: var(--head2Text); }
.stores-phone,
.stores-info > .stores-section > a,
.stores-info a.stores-phone {
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  color: #908488;
  margin-top: 10px;
}
.stores-mail {
  font-size: 16px;
  font-weight: 700;
  color: #908488;
  margin-top: 10px;
  text-decoration: underline;
}
.stores-text {
  margin-top: 15px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--mainText);
  text-align: center;
}
.stores-text--invite { margin-top: 24px; }
.stores-write {
  font-weight: 700;
  color: var(--head2Text) !important;
  text-decoration: underline;
  cursor: pointer;
}
.stores-image {
  position: relative;
  flex: 1 1 auto;
  width: 100%;
  min-width: 0;
  height: 575px;
  overflow: hidden;
}
.stores-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Store detail */
.store-detail { padding-bottom: 50px; }
.store-crumbs {
  font-size: 13px;
  color: var(--grayText);
  margin-bottom: 24px;
  text-align: center;
}
.store-crumbs a:hover { color: var(--head2Text); }
.store-detail-layout {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
.store-detail-info {
  flex: 0 0 380px;
  max-width: 420px;
  text-align: center;
  margin: 0 auto;
}
.store-detail-title {
  font-family: var(--font-georgia);
  font-size: 28px;
  font-weight: 400;
  color: var(--head1Text);
  margin: 10px 0 8px;
  text-transform: uppercase;
}
.store-detail-phone {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  color: #908488;
  margin-top: 10px;
}
.store-detail-body {
  margin-top: 28px;
  text-align: left;
  font-size: 16px;
  line-height: 24px;
  color: var(--mainText);
}
.store-detail-body p { margin-bottom: 12px; }
.store-detail-body a { text-decoration: underline; color: var(--head2Text); }
.store-detail-back { margin-top: 28px; font-size: 14px; }
.store-detail-back a:hover { color: var(--head2Text); }
.store-detail-media { flex: 1; min-width: 0; }
.store-detail-map {
  width: 100%;
  min-height: 420px;
  background: #e8e2dc;
}
.stores-image--detail { height: 420px; }

.legal { padding: 40px 0 70px; max-width: 860px; }
.legal h1 { font-size: 28px; color: var(--head1Text); font-weight: 400; margin-bottom: 20px; }
.legal h2 { font-size: 20px; color: var(--head1Text); font-weight: 400; margin: 26px 0 10px; }
.legal p, .legal li { line-height: 1.6; margin-bottom: 8px; }
.legal ul { padding-left: 20px; }

/* Admin */
.admin-body { background: #f3eee8; font-family: var(--font-roboto); }
.admin-layout { display: grid; grid-template-columns: 240px 1fr; min-height: 100vh; }
.admin-side { background: #3d2d32; color: #fff; padding: 28px 20px; }
.admin-side a { display: block; color: #f6f1eb; padding: 10px 8px; border-bottom: 1px solid rgba(255,255,255,.08); }
.admin-side a:hover, .admin-side a.active { color: #ea5c14; }
.admin-main { padding: 28px 32px; }
.admin-table { width: 100%; border-collapse: collapse; background: #fff; }
.admin-table th, .admin-table td { padding: 10px 12px; border-bottom: 1px solid #eee; text-align: left; font-size: 14px; }
.admin-table th { background: #faf6f1; color: #3d2d32; font-weight: 500; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 24px; }
.stat { background: #fff; padding: 20px; border: 1px solid #ece4dc; }
.stat b { display: block; font-size: 28px; color: #3d2d32; }
.login-box { max-width: 380px; margin: 12vh auto; background: #fff; padding: 36px; }
.login-box h1 { font-family: var(--font-georgia); text-align: center; margin-bottom: 20px; color: #3d2d32; }

@media (min-width: 960px) {
  .promo-info { margin: 10px 95px 0 auto; }
  .promo-text { font-size: 30px; }
}
@media (min-width: 1248px) {
  .promo-info { gap: 20px; margin: -6px 124px 0 auto; }
  .promo-text { font-size: 38px; line-height: 1.2; }
  .promo-info .btn { font-size: 16px; max-width: 303px; min-height: 45px; }
}
@media (min-width: 1632px) {
  .promo-info { margin: 25px 208px 0 auto; }
  .promo-text { font-size: 43px; }
  .promo-info .btn { font-size: 18px; max-width: 343px; min-height: 51px; }
}
@media (min-width: 1920px) {
  .promo-info { gap: 30px; margin: 17px 240px 0 auto; }
  .promo-text { font-size: 50px; }
  .promo-info .btn { font-size: 22px; max-width: 387px; min-height: 57px; }
}

@media (max-width: 1280px) {
  .phone-num { margin-right: 12px; }
  .nav-row { margin: 0 20px; gap: 18px; }
  .main-slide { width: 420px; height: 420px; }
}
@media (max-width: 1100px) {
  .catalog-grid { grid-template-columns: repeat(3, 1fr); }
  .cart-layout { grid-template-columns: 1fr; }
  .product-crumbs { text-align: center; margin-bottom: 10px; }
  .product-wrap { flex-wrap: wrap; }
  .main-slide { width: 100%; height: auto; aspect-ratio: 1; margin: 16px 0; }
}
@media (max-width: 990px) {
  .hero-split .content { gap: 20px; margin: 0 auto; }
  .hero-title { font-size: 34px; }
  .hero-sub { font-size: 20px; }
  .hero-best .title { font-size: 32px; }
  .hero-best .subtitle { font-size: 18px; }
  .news-grid, .cert-grid, .about-split { grid-template-columns: 1fr; }
  .stores-layout, .store-detail-layout { flex-direction: column; }
  .stores-info, .store-detail-info { max-width: 100%; padding: 0 16px; }
  .stores-image { height: 320px; }
  .store-detail-media { width: 100%; }
  .cert-info { justify-self: center; }
  .about-card, .about-card.right { margin: 24px auto; }
  .block-lists .wrap { padding-left: 48px; padding-right: 48px; }
  .lists-btn { padding: 20px 16px; }
  .lists-btn-prev { left: -40px; }
  .lists-btn-next { right: -40px; }
}
@media (max-width: 820px) {
  .page { padding-top: 72px; }
  .nav { height: 72px; }
  .logo { top: 18px; }
  .logo svg, .logo img { width: 140px; height: 24px; }
  .header.is-scrolled .nav { height: 56px; }
  .header.is-scrolled .logo-short { width: 52px; }
  .header.is-scrolled .logo-short svg { width: 30px; height: 21px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: block;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--bgBase);
    padding: 16px 20px 8px;
    box-shadow: 0 10px 24px rgba(0,0,0,.08);
    z-index: 30;
    max-height: min(78vh, 640px);
    overflow: auto;
    padding: 16px 20px 24px;
  }
  .nav-row { flex-direction: column; margin: 0; gap: 14px; align-items: flex-start; }
  .submenu {
    position: static;
    display: none;
    padding: 10px 0 4px;
    box-shadow: none;
    top: auto;
    left: auto;
    right: auto;
    width: auto;
    background: transparent;
    max-height: none;
  }
  .header.is-scrolled .submenu { top: auto; }
  .nav-item.is-open .submenu.is-open,
  .submenu.is-open { display: block; }
  .submenu-panel {
    flex-direction: column;
    gap: 18px;
    max-height: none;
    height: auto;
    align-items: flex-start;
    padding: 0;
  }
  .submenu-kinds,
  .submenu-wedding {
    height: auto;
    max-height: none;
    gap: 18px;
  }
  .submenu-kinds > .submenu-col:not(:last-child) { margin-right: 0; }
  .submenu-col { min-width: 0; }
  .submenu-col h4 { margin-bottom: 10px; }
  .submenu-col a { max-width: none; }
  .burger { display: block; position: relative; z-index: 8; }
  .phone-num { display: none; }
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
  .catalog-head p { width: 100%; }
  .catalog-head h1 { font-size: 22px; }
  .sub-form { flex-direction: column; align-items: center; }
  .sub-form input { margin: 0 0 12px; }
  .footer-links { flex-direction: column; gap: 16px; }
  .promo { min-height: 240px; aspect-ratio: auto; height: 52vw; }
  .promo-text { font-size: 20px; }
  .hero-split, .hero-best { aspect-ratio: auto; min-height: 320px; }
  .admin-layout { grid-template-columns: 1fr; }
  .wrap { padding: 0 16px; }
  .block-lists .wrap { padding-left: 36px; padding-right: 36px; }
  .lists-btn { padding: 16px 10px; }
  .lists-btn-prev { left: -28px; }
  .lists-btn-next { right: -28px; }
  .list-card h3 { max-width: none; font-size: 14px; }
  .reco-carousel__btn {
    padding: 16px 10px;
  }
  .reco-carousel__btn--prev { left: -24px; }
  .reco-carousel__btn--next { right: -24px; }
  .product-contact-modal__panel {
    width: 100%;
    border-left: 0;
    padding: 20px 16px;
  }
  .product-contact-modal h2 { font-size: 24px; }
  .product-contact-modal__field label,
  .product-contact-modal__consent,
  .product-contact-modal__hint {
    font-size: 14px;
  }
  .product-contact-modal__field input,
  .product-contact-modal__field textarea,
  .product-contact-modal__field input::placeholder,
  .product-contact-modal__field textarea::placeholder {
    font-size: 14px;
  }
}
@media (max-width: 520px) {
  .catalog-grid { grid-template-columns: 1fr 1fr; }
  .cart-row { grid-template-columns: 80px 1fr; }
}
