/* Добрая керамика — editorial storefront.
   Real product photography carries the brand; glaze teal and terracotta are accents. */

:root {
  --brand-bg: #f6f2ea;
  --brand-paper: #fbf9f4;
  --brand-surface: #ebe6dc;
  --brand-surface-2: #dedbd1;
  --brand-ink: #192321;
  --brand-ink-soft: #4d5a56;
  --brand-primary: #77aaa6;
  --brand-primary-strong: #2b7672;
  --brand-primary-deep: #205955;
  --brand-accent: #c56847;
  --brand-accent-strong: #9c4c32;
  --brand-muted: #747d78;
  --brand-line: #d6d0c5;
  --glaze-stone: #dce1da;
  --maxw: 1320px;
  --radius: 22px;
  --radius-sm: 12px;
  --shadow: 0 2px 4px rgb(25 35 33 / .04), 0 24px 64px rgb(25 35 33 / .11);
  --font-display: "Fraunces", Georgia, serif;
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--brand-ink);
  background:
    radial-gradient(circle at 8% 12%, rgb(197 104 71 / .055), transparent 25rem),
    var(--brand-bg);
  font: 16px/1.65 var(--font-sans);
  -webkit-font-smoothing: antialiased;
}
body.cart-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3 { margin: 0; font-family: var(--font-display); font-weight: 500; line-height: .98; letter-spacing: -.035em; }
h1 em, h2 em, blockquote { color: var(--brand-primary-strong); font-weight: 400; font-style: italic; }
p, figure, blockquote { margin: 0; }
button, a { touch-action: manipulation; }
:focus-visible { outline: 2px solid var(--brand-primary-deep); outline-offset: 4px; }
.skip-link { position: fixed; left: 16px; top: 12px; z-index: 120; padding: 10px 14px; color: #fff; background: var(--brand-ink); transform: translateY(-160%); transition: transform .18s ease; }
.skip-link:focus { transform: translateY(0); }

.wrap { width: min(100%, var(--maxw)); margin-inline: auto; padding-inline: clamp(20px, 4.4vw, 64px); }
.eyebrow, .section-number {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--brand-primary-deep); font-size: 11px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
}
.section-number::before { content: ""; width: 28px; height: 1px; background: currentColor; }
.mark {
  background: currentColor;
  -webkit-mask: url("img/symbol.svg") center / contain no-repeat;
  mask: url("img/symbol.svg") center / contain no-repeat;
}

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgb(246 242 234 / .88); backdrop-filter: blur(18px) saturate(1.15);
  border-bottom: 1px solid rgb(25 35 33 / .11);
}
.site-header .wrap { display: flex; align-items: center; gap: 28px; min-height: 74px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--brand-ink); text-decoration: none; }
.brand .mark { width: 48px; height: 31px; flex: none; }
.brand b { font: 600 19px/1 var(--font-display); letter-spacing: -.02em; white-space: nowrap; }
.brand b span { color: var(--brand-primary-strong); }
.nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav a {
  min-height: 44px; display: inline-flex; align-items: center; padding: 0 14px;
  color: var(--brand-ink-soft); border-radius: 999px; text-decoration: none;
  font-size: 14px; font-weight: 600; transition: color .2s ease, background .2s ease;
}
.nav a:hover { color: var(--brand-ink); background: rgb(255 255 255 / .55); }
.cart-btn {
  position: relative; width: 46px; height: 46px; margin-left: 8px; display: grid; place-items: center;
  color: var(--brand-ink); background: transparent; border: 1px solid var(--brand-ink);
  border-radius: 50%; cursor: pointer; transition: color .2s ease, background .2s ease, transform .15s ease;
}
.cart-btn:hover { color: var(--brand-bg); background: var(--brand-ink); }
.cart-btn:active { transform: scale(.95); }
.cart-btn__ico { width: 20px; height: 20px; }
.cart-btn__count {
  position: absolute; top: -5px; right: -5px; min-width: 20px; height: 20px; padding: 0 5px;
  display: grid; place-items: center; color: #fff; background: var(--brand-accent);
  border-radius: 99px; box-shadow: 0 0 0 3px var(--brand-bg); font-size: 10px; font-weight: 800;
}
.cart-btn__count[hidden] { display: none; }
.cart-btn__count.bump { animation: badge-bump .35s cubic-bezier(.34,1.56,.64,1); }
@keyframes badge-bump { 50% { transform: scale(1.35); } }

/* Hero */
.hero { overflow: clip; padding: clamp(58px, 7vw, 106px) 0 clamp(60px, 8vw, 118px); }
.hero .wrap { display: grid; grid-template-columns: minmax(0,.92fr) minmax(420px,1.08fr); gap: clamp(44px, 7vw, 110px); align-items: center; }
.hero-copy { position: relative; z-index: 1; }
.hero-wordmark { max-width: 8.8ch; margin-top: 24px; font-size: clamp(58px, 7.1vw, 105px); }
.hero-wordmark em { white-space: nowrap; }
.hero .lead { max-width: 48ch; margin-top: 30px; color: var(--brand-ink-soft); font-size: clamp(17px, 1.5vw, 20px); line-height: 1.65; }
.hero-cta { display: flex; align-items: center; flex-wrap: wrap; gap: 24px; margin-top: 36px; }
.btn {
  --_bg: var(--brand-ink); --_fg: var(--brand-bg);
  min-height: 50px; padding: 12px 24px; display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  color: var(--_fg); background: var(--_bg); border: 1px solid transparent; border-radius: 999px;
  font: 650 15px/1.2 var(--font-sans); text-decoration: none; cursor: pointer;
  transition: transform .18s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgb(25 35 33 / .14); }
.btn:active { transform: translateY(0); }
.btn--primary { --_bg: var(--brand-primary-deep); --_fg: #fff; }
.btn--primary:hover { --_bg: var(--brand-ink); }
.btn--accent { --_bg: var(--brand-accent); --_fg: #fff; }
.btn--accent:hover { --_bg: var(--brand-accent-strong); }
.btn--ghost { --_bg: transparent; --_fg: var(--brand-ink); border-color: var(--brand-line); }
.btn--ghost:hover { --_bg: var(--brand-paper); }
.btn--block { width: 100%; }
.text-link {
  min-height: 44px; display: inline-flex; align-items: center; gap: 10px;
  color: var(--brand-ink); text-underline-offset: 5px; font-size: 14px; font-weight: 650;
  transition: gap .2s ease, color .2s ease;
}
.text-link:hover { gap: 15px; color: var(--brand-primary-deep); }
.hero-visual { position: relative; width: min(100%, 630px); justify-self: end; isolation: isolate; }
.hero-visual::before {
  content: ""; position: absolute; inset: 9% -8% -7% 17%; z-index: -1;
  background: var(--brand-accent); border-radius: 52% 48% 42% 58% / 44% 55% 45% 56%; opacity: .88;
  transform: rotate(3deg);
}
.hero-photo { width: 86%; margin-left: auto; aspect-ratio: 4/5; object-fit: cover; border-radius: 48% 48% 9% 9% / 24% 24% 7% 7%; box-shadow: var(--shadow); }
.hero-seal {
  position: absolute; left: 0; top: 12%; width: clamp(112px, 13vw, 168px); aspect-ratio: 1;
  display: grid; place-items: center; color: var(--brand-ink); background: var(--brand-paper);
  border: 1px solid var(--brand-line); border-radius: 50%; transform: rotate(-8deg); box-shadow: var(--shadow);
}
.hero-seal .mark { width: 68%; height: 45%; }
.hero-visual figcaption {
  position: absolute; right: -2%; bottom: 8%; width: min(250px, 52%); padding: 18px 20px;
  color: #fff; background: var(--brand-primary-deep); box-shadow: var(--shadow);
}
.hero-visual figcaption span { display: block; margin-bottom: 6px; opacity: .72; font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.hero-visual figcaption b { font: 500 17px/1.25 var(--font-display); }

.craft-line { border-block: 1px solid var(--brand-line); }
.craft-line .wrap { min-height: 82px; display: grid; grid-template-columns: repeat(4,1fr); align-items: center; }
.craft-line span { padding: 8px 18px; color: var(--brand-ink-soft); font-size: 12px; font-weight: 650; letter-spacing: .08em; text-transform: uppercase; text-align: center; }
.craft-line span + span { border-left: 1px solid var(--brand-line); }
.craft-line b { margin-right: 8px; color: var(--brand-accent); font-size: 10px; }

/* Sections */
section { scroll-margin-top: 88px; }
.section-head { max-width: 62ch; }
.section-head h2 { margin-top: 20px; font-size: clamp(42px, 5.3vw, 74px); }
.section-head p { margin-top: 24px; color: var(--brand-ink-soft); font-size: 17px; }
.about { padding: clamp(84px, 11vw, 154px) 0; }
.about .wrap { display: grid; grid-template-columns: minmax(0,1.08fr) minmax(340px,.92fr); gap: clamp(52px, 9vw, 128px); align-items: center; }
.about-copy { margin: 0; }
.about-copy .text-link { margin-top: 28px; }
.about-panel {
  position: relative; overflow: hidden; padding: clamp(34px, 5vw, 58px);
  color: var(--brand-paper); background: var(--brand-primary-deep); border-radius: 48% 48% 6px 6px / 20% 20% 6px 6px;
}
.about-mark { position: absolute; right: -7%; top: -4%; width: 54%; height: 36%; color: rgb(255 255 255 / .08); transform: rotate(12deg); }
.about-facts { position: relative; list-style: none; margin: 0; padding: 0; display: grid; }
.about-facts li { display: grid; grid-template-columns: 88px 1fr; gap: 22px; align-items: start; padding: 24px 0; border-bottom: 1px solid rgb(255 255 255 / .18); }
.about-facts li:last-child { border-bottom: 0; }
.about-facts b { color: #fff; font: 500 32px/1 var(--font-display); }
.about-facts span { color: rgb(255 255 255 / .72); font-size: 13px; }
.about-facts strong { display: block; margin-bottom: 4px; color: #fff; font-size: 14px; }

/* Catalog */
.catalog { padding: clamp(78px, 10vw, 138px) 0; background: var(--brand-paper); border-block: 1px solid var(--brand-line); }
.catalog-intro { display: grid; grid-template-columns: 1fr minmax(280px,.55fr); gap: clamp(40px, 8vw, 110px); align-items: end; margin-bottom: 46px; }
.catalog-note { padding-bottom: 10px; color: var(--brand-ink-soft); }
.catalog-count { display: block; margin-bottom: 18px; color: var(--brand-ink); font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.catalog-count b { margin-right: 8px; color: var(--brand-accent); font: 500 28px/1 var(--font-display); }
.catalog-note p { font-size: 15px; }
.filters { display: flex; gap: 9px; overflow-x: auto; margin-bottom: 34px; padding-bottom: 3px; scrollbar-width: none; }
.filters::-webkit-scrollbar { display: none; }
.chip {
  min-height: 44px; flex: 0 0 auto; padding: 9px 17px; color: var(--brand-ink-soft); background: transparent;
  border: 1px solid var(--brand-line); border-radius: 999px; font: 600 13px/1 var(--font-sans); cursor: pointer;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}
.chip:hover { color: var(--brand-primary-deep); border-color: var(--brand-primary-strong); }
.chip[aria-pressed="true"] { color: #fff; background: var(--brand-ink); border-color: var(--brand-ink); }
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px,1fr)); gap: clamp(28px, 3.5vw, 48px) clamp(18px, 2.5vw, 30px); }
.card { min-width: 0; }
.card a { color: inherit; text-decoration: none; }
.card-media { position: relative; aspect-ratio: 4/5; display: block; overflow: hidden; background: var(--brand-surface); }
.ph { display: block; width: 100%; height: 100%; object-fit: cover; }
.card-media > img.ph { transition: transform .55s cubic-bezier(.2,.75,.2,1), filter .35s ease; }
.card:hover .card-media > img.ph { transform: scale(1.035); filter: saturate(1.05); }
.ph--empty { display: grid; place-items: center; background: var(--glaze-stone); }
.ph--empty .mark { width: 45%; height: 33%; color: var(--brand-muted); opacity: .65; }
.cat-tag, .card-index {
  position: absolute; z-index: 2; top: 14px; padding: 6px 10px;
  color: var(--brand-ink); background: rgb(251 249 244 / .9); backdrop-filter: blur(8px);
  font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
}
.cat-tag { left: 14px; }
.card-index { right: 14px; }
.card-body { padding: 16px 0 0; }
.card-meta { margin-bottom: 5px; color: var(--brand-muted); font-size: 10px; font-weight: 650; letter-spacing: .1em; text-transform: uppercase; }
.card-title { display: inline-block; font: 500 23px/1.15 var(--font-display); letter-spacing: -.025em; }
.card-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--brand-line); }
.price { color: var(--brand-ink); font-size: 16px; font-weight: 750; }
.add {
  width: 46px; height: 46px; flex: none; display: grid; place-items: center;
  color: var(--brand-ink); background: transparent; border: 1px solid var(--brand-ink); border-radius: 50%;
  font: 300 25px/1 var(--font-sans); cursor: pointer; transition: color .2s ease, background .2s ease, transform .18s ease;
}
.add:hover { color: #fff; background: var(--brand-primary-deep); border-color: var(--brand-primary-deep); transform: rotate(8deg); }
.add:disabled { color: var(--brand-muted); background: var(--brand-surface); border-color: var(--brand-line); cursor: not-allowed; transform: none; }

/* Contact */
.contact { padding: clamp(74px, 9vw, 128px) 0; }
.contact .wrap { display: grid; grid-template-columns: minmax(0,1.15fr) minmax(300px,.85fr); gap: 0; }
.contact-card { padding: clamp(38px, 6vw, 76px); color: #fff; background: var(--brand-ink); }
.contact-card .section-number { color: var(--brand-primary); }
.contact-card h2 { margin-top: 24px; color: #fff; font-size: clamp(48px, 6.2vw, 82px); }
.contact-card h2 em { color: var(--brand-primary); }
.contact-card > p { max-width: 48ch; margin-top: 24px; color: rgb(255 255 255 / .67); }
.channels { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; margin-top: 34px; }
.channel {
  min-height: 70px; padding: 14px 16px; display: flex; align-items: center; gap: 13px;
  color: #fff; background: rgb(255 255 255 / .055); border: 1px solid rgb(255 255 255 / .15);
  text-decoration: none; transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.channel:hover { background: rgb(255 255 255 / .11); border-color: rgb(255 255 255 / .4); transform: translateY(-2px); }
.channel .ico { width: 24px; height: 24px; flex: none; }
.channel > span, .channel span span { display: block; }
.channel b { font-size: 14px; }
.channel span span { color: rgb(255 255 255 / .58); font-size: 11px; }
.contact-aside { position: relative; overflow: hidden; padding: clamp(38px, 6vw, 72px); display: flex; flex-direction: column; justify-content: flex-end; background: var(--brand-primary); }
.contact-aside__mark { position: absolute; top: 9%; left: 12%; width: 76%; height: 40%; color: rgb(25 35 33 / .14); transform: rotate(-7deg); }
.contact-aside blockquote { position: relative; max-width: 13ch; color: var(--brand-ink); font: italic 500 clamp(30px, 3vw, 46px)/1.08 var(--font-display); letter-spacing: -.03em; }
.contact-note { position: relative; margin-top: 28px; color: var(--brand-ink-soft); font-size: 13px; }
.contact-note strong { color: var(--brand-ink); }

/* Footer */
.site-footer { padding: 42px 0; border-top: 1px solid var(--brand-line); }
.site-footer .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.site-footer small { color: var(--brand-muted); font-size: 12px; }

/* Cart drawer */
.cart-backdrop { position: fixed; inset: 0; z-index: 90; visibility: hidden; opacity: 0; background: rgb(25 35 33 / .52); backdrop-filter: blur(4px); transition: opacity .22s ease, visibility .22s ease; }
.cart-backdrop.open { visibility: visible; opacity: 1; }
.cart {
  position: fixed; inset: 0 0 0 auto; z-index: 100; width: min(450px,100%); height: 100dvh;
  display: flex; flex-direction: column; color: var(--brand-ink); background: var(--brand-paper);
  box-shadow: -30px 0 90px rgb(25 35 33 / .2); transform: translateX(100%); transition: transform .28s cubic-bezier(.2,.75,.2,1);
}
.cart[aria-hidden="true"] { visibility: hidden; transition: transform .2s ease, visibility 0s .2s; }
.cart.open { transform: none; }
.cart-head { min-height: 78px; padding: 18px 24px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--brand-line); }
.cart-head h3 { font-size: 27px; }
.cart-close { width: 44px; height: 44px; display: grid; place-items: center; color: var(--brand-ink); background: transparent; border: 1px solid var(--brand-line); border-radius: 50%; font-size: 22px; cursor: pointer; }
.cart-close:hover { background: var(--brand-surface); }
.demo-banner { margin: 18px 24px 0; padding: 14px 16px; color: var(--brand-accent-strong); background: rgb(197 104 71 / .1); border-left: 3px solid var(--brand-accent); font-size: 12px; line-height: 1.55; }
.cart-items { flex: 1; overflow-y: auto; padding: 20px 24px; display: flex; flex-direction: column; gap: 18px; }
.cart-empty { margin-top: 40px; color: var(--brand-muted); text-align: center; }
.cart-item { display: grid; grid-template-columns: 64px 1fr auto; gap: 14px; align-items: center; padding-bottom: 18px; border-bottom: 1px solid var(--brand-line); }
.cart-item .thumb { width: 64px; height: 74px; overflow: hidden; background: var(--brand-surface); }
.cart-item .thumb .ph { object-fit: cover; }
.cart-item .t b { font: 500 17px/1.2 var(--font-display); }
.cart-item .t span { display: block; margin-top: 5px; color: var(--brand-muted); font-size: 12px; }
.qty { display: inline-flex; align-items: center; gap: 8px; }
.qty button { width: 32px; height: 32px; border: 1px solid var(--brand-line); border-radius: 50%; background: transparent; cursor: pointer; }
.qty button:disabled { opacity: .35; cursor: not-allowed; }
.qty span { min-width: 1.5ch; text-align: center; font-weight: 700; }
.cart-foot { padding: 20px 24px 24px; display: grid; gap: 12px; background: var(--brand-bg); border-top: 1px solid var(--brand-line); }
.cart-total { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 4px; }
.cart-total b { font: 500 26px/1 var(--font-display); }

/* Prototype strip */
.proto-strip { padding: 7px 16px; color: #fff; background: var(--brand-accent); text-align: center; font-size: 11px; font-weight: 650; letter-spacing: .02em; }
.proto-strip a { text-underline-offset: 3px; }

/* Product page */
.product { padding: clamp(44px, 7vw, 94px) 0; }
.product .wrap { display: grid; grid-template-columns: minmax(0,1.08fr) minmax(340px,.92fr); gap: clamp(42px, 8vw, 108px); align-items: start; }
.product-media { position: sticky; top: 105px; overflow: hidden; aspect-ratio: 4/5; background: var(--brand-surface); border-radius: 48% 48% 4px 4px / 20% 20% 4px 4px; }
.product-media .ph { object-fit: cover; }
.product-info { padding-top: 3vw; }
.breadcrumb { margin-bottom: 22px; color: var(--brand-muted); font-size: 11px; font-weight: 650; letter-spacing: .08em; text-transform: uppercase; }
.breadcrumb a { color: var(--brand-ink-soft); text-decoration: none; }
.product-info h1 { font-size: clamp(46px, 6vw, 82px); }
.product-info .price { display: block; margin: 22px 0; font-size: 23px; }
.product-info .desc { max-width: 48ch; color: var(--brand-ink-soft); font-size: 17px; }
.product-cta { display: flex; flex-wrap: wrap; gap: 12px; margin: 30px 0; }
.spec { margin-top: 26px; padding-top: 20px; display: grid; gap: 0; border-top: 1px solid var(--brand-line); }
.spec div { padding: 12px 0; display: flex; justify-content: space-between; gap: 18px; border-bottom: 1px solid var(--brand-line); font-size: 13px; }
.spec dt { color: var(--brand-muted); }
.related { margin-top: clamp(68px, 9vw, 120px); }

.toast { position: fixed; left: 50%; bottom: 28px; z-index: 120; padding: 13px 20px; color: #fff; background: var(--brand-ink); border-radius: 999px; box-shadow: var(--shadow); opacity: 0; pointer-events: none; transform: translate(-50%,18px); transition: opacity .2s ease, transform .2s ease; font-size: 13px; font-weight: 650; }
.toast.show { opacity: 1; transform: translate(-50%,0); }

@media (max-width: 980px) {
  .hero .wrap { grid-template-columns: 1fr 1fr; gap: 44px; }
  .hero-wordmark { font-size: clamp(52px, 7vw, 72px); }
  .about .wrap, .contact .wrap, .product .wrap { grid-template-columns: 1fr 1fr; gap: 42px; }
  .channels { grid-template-columns: 1fr; }
  .craft-line .wrap { grid-template-columns: repeat(2,1fr); padding-block: 14px; }
  .craft-line span:nth-child(3) { border-left: 0; }
}

@media (max-width: 760px) {
  .site-header .wrap { min-height: 66px; }
  .nav a { display: none; }
  .brand b { font-size: 18px; }
  .hero { padding-top: 52px; }
  .hero .wrap, .about .wrap, .contact .wrap, .product .wrap, .catalog-intro { grid-template-columns: 1fr; }
  .hero .wrap { gap: 54px; }
  .hero-wordmark { font-size: clamp(50px, 15vw, 72px); }
  .hero-wordmark em { white-space: normal; }
  .hero-visual { width: min(94%,560px); justify-self: center; }
  .hero-photo { width: 88%; }
  .hero-seal { left: -2%; }
  .craft-line span { min-height: 54px; display: flex; align-items: center; justify-content: center; }
  .about-panel { border-radius: 42% 42% 4px 4px / 12% 12% 4px 4px; }
  .catalog-intro { gap: 28px; }
  .catalog-note { max-width: 52ch; }
  .contact .wrap { padding-inline: 20px; }
  .contact-aside { min-height: 410px; }
  .product-media { position: static; }
  .site-footer .wrap { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 520px) {
  .wrap { padding-inline: 20px; }
  .proto-strip { padding-inline: 12px; font-size: 10px; line-height: 1.4; }
  .hero-wordmark { font-size: clamp(46px, 14.5vw, 64px); }
  .hero .lead { font-size: 16px; }
  .hero-cta { align-items: flex-start; flex-direction: column; gap: 12px; }
  .hero-visual figcaption { right: -2%; width: 60%; padding: 14px; }
  .hero-seal { width: 104px; }
  .craft-line .wrap { padding-inline: 10px; }
  .craft-line span { padding: 8px; font-size: 9px; }
  .grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 28px 12px; }
  .card-title { font-size: 18px; }
  .card-meta { font-size: 8px; letter-spacing: .05em; }
  .card-foot { margin-top: 10px; }
  .price { font-size: 14px; }
  .add { width: 44px; height: 44px; }
  .cat-tag { max-width: calc(100% - 56px); overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
  .card-index { display: none; }
  .contact .wrap { padding-inline: 0; }
  .channels { grid-template-columns: 1fr; }
  .contact-card, .contact-aside { padding-inline: 24px; }
  .contact-aside { min-height: 350px; }
  .product-cta { align-items: stretch; flex-direction: column; }
  .product-cta .btn { width: 100%; }
  .cart-item { grid-template-columns: 54px 1fr; }
  .cart-item .thumb { width: 54px; height: 64px; }
  .cart-item .qty { grid-column: 2; }
}

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