/* ================================================================
   EXPOSHOP — production block
   Online furniture & doors store. Service-driven, no showroom.
   All styles scoped under .exo to avoid collisions in WordPress.
   ================================================================ */

/* --- Tokens ----------------------------------------------------- */
.exo {
  --bg:        #fafaf8;
  --paper:     #ffffff;
  --warm:      #f5efe6;
  --warm-2:    #ebe1d2;
  --ink:       #0d0f15;
  --ink-2:     #3a3e4c;
  --ink-3:     #5a5d68;
  --muted:     #7a7d8c;
  --line:      #e6e3dd;
  --line-2:    #efece6;
  --line-dark: #25283a;
  --dark:      #0d0f15;
  --dark-2:    #161821;
  --dark-3:    #1a1d28;
  --accent:    #e5147b;
  --accent-2:  #ff3d96;
  --accent-soft:#fbe6f0;
  --sage:      #6f7a6a;
  --good:      #5eb87a;

  --serif:'Newsreader',Georgia,serif;
  --sans:'Inter',-apple-system,BlinkMacSystemFont,system-ui,sans-serif;
  --mono:'JetBrains Mono',ui-monospace,'SF Mono',monospace;

  --pad-x:        clamp(20px, 4vw, 56px);
  --section-y:    clamp(56px, 8vw, 88px);
  --radius:       4px;

  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
.exo *, .exo *::before, .exo *::after { box-sizing: border-box; }
.exo h1, .exo h2, .exo h3, .exo h4, .exo h5 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
  text-wrap: pretty;
}
.exo p { margin: 0; }
.exo a { color: inherit; text-decoration: none; }
.exo button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; padding: 0; }
.exo input, .exo select, .exo textarea { font: inherit; color: inherit; }
.exo img, .exo svg { display: block; max-width: 100%; }

/* Georgian script — slightly larger because letters are visually shorter */
.exo[lang="ka"] { font-size: 15.5px; }
.exo[lang="ka"] h1, .exo[lang="ka"] h2, .exo[lang="ka"] h3, .exo[lang="ka"] h4 {
  letter-spacing: -0.005em;
}

/* --- Utility classes ------------------------------------------- */
.exo .mono { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.exo .eyebrow { font-family: var(--mono); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.exo .section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; margin-bottom: 32px; flex-wrap: wrap;
}
.exo .section-head h2 {
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1;
  max-width: 16ch;
}
.exo .section-head .h-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14px; border-bottom: 1px solid var(--ink); padding-bottom: 4px;
}
.exo em { font-style: italic; }
.exo .accent { color: var(--accent); }

.exo .tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px;
  background: #f0eee8; color: var(--ink-3); border: 1px solid var(--line);
  white-space: nowrap;
}
.exo .tag--accent { background: var(--accent-soft); color: var(--accent); border-color: #f5cee0; }
.exo .tag--dark { background: var(--dark); color: #fff; border-color: var(--dark); }
.exo .tag--sale { background: #fff; color: var(--accent); border-color: var(--accent); }
.exo .tag--ghost-light { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.2); }

.exo .btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 12px 22px; font-size: 14px; font-weight: 500;
  border: 1px solid var(--ink); background: var(--ink); color: #fff;
  border-radius: var(--radius);
  transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
  cursor: pointer;
  text-align: center;
}
.exo .btn:hover { transform: translateY(-1px); }
.exo .btn--primary { background: var(--accent); border-color: var(--accent); color: #fff; }
.exo .btn--primary:hover { background: #c40e69; border-color: #c40e69; }
.exo .btn--ghost { background: transparent; color: var(--ink); }
.exo .btn--ghost:hover { background: var(--ink); color: #fff; }
.exo .btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.3); }
.exo .btn--ghost-light:hover { background: #fff; color: var(--ink); }
.exo .btn--light { background: #fff; color: var(--ink); border-color: var(--line); }
.exo .btn--light:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.exo .btn--sm { padding: 8px 14px; font-size: 13px; }
.exo .btn--lg { padding: 16px 28px; font-size: 15px; }
.exo .btn .ico { width: 16px; height: 16px; flex-shrink: 0; }

.exo .icon-btn {
  width: 36px; height: 36px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  background: #fff; border: 1px solid var(--line);
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.exo .icon-btn:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.exo .icon-btn .ico { width: 14px; height: 14px; }
.exo .icon-btn--dark { background: var(--ink); color: #fff; border-color: var(--ink); }
.exo .icon-btn--dark:hover { background: var(--accent); border-color: var(--accent); }

/* --- Photo placeholders (diagonal stripes) --------------------- */
.exo .photo {
  position: relative;
  overflow: hidden;
  background-color: var(--ph-bg, #ede4d4);
  background-image: repeating-linear-gradient(
    55deg,
    var(--ph-stripe, #e2d6c0) 0,
    var(--ph-stripe, #e2d6c0) 11px,
    var(--ph-bg, #ede4d4) 11px,
    var(--ph-bg, #ede4d4) 22px
  );
}
.exo .photo--warm  { --ph-bg:#ede4d4; --ph-stripe:#e2d6c0; }
.exo .photo--sand  { --ph-bg:#e8dfd0; --ph-stripe:#dccfba; }
.exo .photo--cool  { --ph-bg:#dfe2e6; --ph-stripe:#cfd4d9; }
.exo .photo--dark  { --ph-bg:#2b2e36; --ph-stripe:#363a44; }
.exo .photo--sage  { --ph-bg:#d9ddd2; --ph-stripe:#c9cfbe; }
.exo .photo--blush { --ph-bg:#f1dfe6; --ph-stripe:#e7d0d9; }
.exo .photo--mag   { --ph-bg:#fbe6f0; --ph-stripe:#f5d3e3; }
.exo .photo--paper { --ph-bg:#f4f1ec; --ph-stripe:#ebe7df; }

/* ================================================================
   1) Quick category chips
   ================================================================ */
.exo .quickchips {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 14px var(--pad-x);
  font-size: 13px;
  display: flex; align-items: center; gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
}
.exo .quickchips::-webkit-scrollbar { display: none; }
.exo .quickchips__label {
  color: var(--ink); font-weight: 600; margin-right: 4px; white-space: nowrap;
}
.exo .quickchips__chip {
  padding: 7px 14px; background: #f3f0ea; border-radius: 999px;
  color: var(--ink-2); white-space: nowrap; transition: background .15s ease, color .15s ease;
  border: 1px solid transparent;
}
.exo .quickchips__chip:hover { background: var(--ink); color: #fff; }
.exo .quickchips__chip--accent { background: var(--accent-soft); color: var(--accent); }
.exo .quickchips__chip--accent:hover { background: var(--accent); color: #fff; }

/* ================================================================
   2) Hero
   ================================================================ */
.exo .hero {
  padding: clamp(40px, 6vw, 64px) var(--pad-x) clamp(48px, 7vw, 72px);
  background: var(--paper);
}
.exo .hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);  gap: clamp(28px, 4vw, 48px);
  align-items: stretch;
}
.exo .hero__copy { display: flex; flex-direction: column; justify-content: center; padding: 16px 0; }
.exo .hero__tags { display: flex; gap: 10px; margin-bottom: 24px; flex-wrap: wrap; }
.exo .hero__h1 {
  font-size: clamp(44px, 6.5vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin-bottom: 22px;
}
.exo .hero__h1 .italic { font-style: italic; color: var(--accent); }
.exo .hero__sub {
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.45;
  color: var(--ink-2);
  max-width: 48ch;
  margin-bottom: 32px;
}
.exo .hero__cta { display: flex; gap: 12px; margin-bottom: 36px; flex-wrap: wrap; }
.exo .hero__stats { display: flex; align-items: baseline; gap: clamp(20px, 3vw, 36px); flex-wrap: wrap; }
.exo .hero__stats > * { min-width: 100px; }
.exo .hero__stats .v { font-family: var(--serif); font-size: clamp(26px, 3.2vw, 34px); line-height: 1.05; font-weight: 500; }
.exo .hero__stats .l { font-size: 12px; color: var(--muted); margin-top: 4px; }
.exo .hero__stats .divider { width: 1px; align-self: stretch; background: var(--line); }
.exo .hero__photo {
  position: relative;
  min-height: 480px;
  border-radius: var(--radius);
}
.exo .hero__photo-callout {
  position: absolute; left: 20px; bottom: 20px;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(8px);
  padding: 12px 16px;
  border-radius: var(--radius);
  display: flex; align-items: center; gap: 14px;
  box-shadow: 0 8px 30px -10px rgba(0,0,0,.25);
  max-width: calc(100% - 40px);
}
.exo .hero__photo-callout .swatch {
  width: 50px; height: 50px;
  display: flex; align-items: center; justify-content: center;
  background: #ede4d4;
  border-radius: var(--radius);
  flex-shrink: 0;
}
.exo .hero__photo-callout .info { min-width: 0; }
.exo .hero__photo-callout .info .mono { margin-bottom: 2px; }
.exo .hero__photo-callout .info .name { font-family: var(--serif); font-size: 18px; line-height: 1.1; }
.exo .hero__photo-callout .info .meta { font-size: 12px; color: var(--ink-2); margin-top: 2px; }

/* ================================================================
   3) Trust strip (dark band)
   ================================================================ */
.exo .truststrip {
  background: var(--ink);
  color: #e8e6df;
  padding: 18px var(--pad-x);
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; flex-wrap: wrap;
}
.exo .truststrip__item { display: flex; align-items: center; gap: 14px; flex: 1 0 200px; min-width: 0; }
.exo .truststrip__item .ico { color: var(--accent-2); width: 22px; height: 22px; flex-shrink: 0; }
.exo .truststrip__item .t  { color: #fff; font-size: 14px; font-weight: 600; }
.exo .truststrip__item .m  { color: #a8a89e; font-size: 12px; margin-top: 2px; }
.exo .truststrip__divider { width: 1px; height: 34px; background: #2c2e36; }

/* ================================================================
   4) Categories bento
   ================================================================ */
.exo .categories {
  padding: var(--section-y) var(--pad-x);
  background: var(--bg);
}
.exo .bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 200px 200px;
  gap: 12px;
}
.exo .bento .b {
  position: relative; overflow: hidden;
  border-radius: var(--radius);
  background: #fff; color: var(--ink);
  transition: transform .25s ease;
}
.exo .bento .b:hover { transform: translateY(-3px); }
.exo .bento .b__photo { position: absolute; inset: 0; }
.exo .bento .b__layout {
  position: absolute; inset: 0; padding: 18px 22px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.exo .bento .b__top { display: flex; justify-content: space-between; align-items: flex-start; }
.exo .bento .b__glyph {
  background: rgba(255,255,255,.86);
  padding: 8px;
  border-radius: var(--radius);
  display: inline-flex;
  backdrop-filter: blur(4px);
}
.exo .bento .b__arrow {
  width: 30px; height: 30px; border-radius: 999px;
  background: rgba(255,255,255,.92);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
}
.exo .bento .b:hover .b__arrow { background: var(--accent); color: #fff; }
.exo .bento .b__meta {
  background: rgba(255,255,255,.92); backdrop-filter: blur(6px);
  padding: 10px 12px; border-radius: var(--radius);
}
.exo .bento .b__name {
  font-family: var(--serif); font-weight: 500; font-size: 20px; line-height: 1.1;
}
.exo .bento .b--big .b__name { font-size: 28px; }
.exo .bento .b__row { display: flex; justify-content: space-between; font-size: 12px; color: var(--muted); margin-top: 4px; }
.exo .bento .b__row strong { color: var(--ink); font-weight: 600; }
.exo .bento .b--dark { background: var(--dark-3); color: #fff; }
.exo .bento .b--dark .b__meta { background: rgba(20,22,28,.7); }
.exo .bento .b--dark .b__name, .exo .bento .b--dark .b__row strong { color: #fff; }
.exo .bento .b--dark .b__row { color: #bdbdb4; }

.exo .bento .b--c1 { grid-column: span 3; }
.exo .bento .b--c2 { grid-column: span 2; }
.exo .bento .b--r2 { grid-row: span 2; }

/* ================================================================
   5) Sale
   ================================================================ */
.exo .sale { padding: var(--section-y) var(--pad-x); background: var(--warm); }
.exo .sale__head { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 18px; margin-bottom: 32px; }
.exo .sale__timer { display: flex; align-items: center; gap: 14px; }
.exo .sale__timer .blocks { display: flex; gap: 6px; }
.exo .sale__timer .blocks span {
  background: var(--ink); color: #fff; padding: 10px 14px;
  font-family: var(--mono); font-size: 18px; font-weight: 500;
  letter-spacing: .04em; min-width: 50px; text-align: center;
}
.exo .sale__timer .labels { font-size: 12px; color: var(--muted); }
.exo .sale__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.exo .card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}
.exo .card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -20px rgba(0,0,0,.18); }
.exo .card__badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: var(--accent); color: #fff; font-family: var(--mono); font-size: 11px;
  letter-spacing: .04em; padding: 4px 10px; font-weight: 600;
}
.exo .card__add {
  position: absolute; top: 12px; right: 12px; z-index: 2;
}
.exo .card__photo { position: relative; aspect-ratio: 320/250; }
.exo .card__glyph {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
}
.exo .card__body { padding: 16px 18px 20px; }
.exo .card__cat { font-family: var(--mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.exo .card__name { font-family: var(--serif); font-size: 20px; line-height: 1.15; margin-bottom: 10px; }
.exo .card__prices { display: flex; align-items: baseline; gap: 10px; justify-content: space-between; }
.exo .card__prices .group { display: flex; align-items: baseline; gap: 8px; }
.exo .card__price-now { font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--accent); }
.exo .card__price-old { font-size: 13px; color: var(--muted); text-decoration: line-through; }
.exo .card__price { font-family: var(--serif); font-size: 20px; font-weight: 600; color: var(--ink); }

/* ================================================================
   6) How we work — process strip
   ================================================================ */
.exo .process { padding: var(--section-y) var(--pad-x); background: var(--bg); }
.exo .process__lead {
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.55; color: var(--ink-2);
  max-width: 56ch;
}
.exo .process__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  margin-top: 14px;
}
.exo .process__step {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px;
  display: flex; flex-direction: column;
  transition: transform .25s ease, border-color .25s ease;
}
.exo .process__step:hover { transform: translateY(-3px); border-color: var(--ink); }
.exo .process__top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 22px;
}
.exo .process__num {
  font-family: var(--serif); font-size: 38px; font-weight: 600; line-height: 1;
  color: var(--accent);
}
.exo .process__iconwrap {
  width: 44px; height: 44px; background: var(--accent-soft);
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
}
.exo .process__step h4 {
  font-family: var(--serif); font-weight: 500; font-size: 22px;
  line-height: 1.15; margin: 0 0 8px;
}
.exo .process__step p {
  font-size: 14px; line-height: 1.5; color: var(--ink-2);
}

/* ================================================================
   7) Reviews
   ================================================================ */
.exo .reviews { padding: var(--section-y) var(--pad-x); background: var(--warm); }
.exo .reviews__rating { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.exo .reviews__rating .v { font-family: var(--serif); font-size: 34px; font-weight: 600; line-height: 1; }
.exo .reviews__rating .stars { color: var(--accent); font-size: 18px; letter-spacing: .04em; }
.exo .reviews__rating .src { font-size: 13px; color: var(--muted); }
.exo .reviews__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  margin-top: 36px;
}
.exo .review {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 26px 22px;
  display: flex; flex-direction: column;
}
.exo .review__stars { color: var(--accent); font-size: 14px; letter-spacing: .04em; margin-bottom: 14px; }
.exo .review__text {
  font-family: var(--serif); font-size: 19px; line-height: 1.4;
  flex: 1;
  margin-bottom: 22px;
}
.exo .review__author {
  display: flex; align-items: center; gap: 12px;
}
.exo .review__avatar {
  width: 42px; height: 42px; border-radius: 999px;
  background: var(--warm-2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 17px; font-weight: 600;
  color: var(--ink);
  flex-shrink: 0;
}
.exo .review__meta .n { font-size: 14px; font-weight: 600; }
.exo .review__meta .m { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* ================================================================
   8) Contact — help block
   ================================================================ */
.exo .contact { background: var(--dark); color: #fff; padding: var(--section-y) var(--pad-x); }
.exo .contact__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 48px; align-items: start; }
.exo .contact__copy h2 { color: #fff; font-size: clamp(34px, 4.5vw, 56px); line-height: 1; margin-bottom: 18px; }
.exo .contact__copy .lead { font-size: 16px; line-height: 1.55; color: #bdbdb4; max-width: 46ch; }
.exo .contact__channels { display: flex; flex-direction: column; gap: 10px; margin-top: 30px; }
.exo .contact__ch {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 18px; border-radius: var(--radius);
  border: 1px solid var(--line-dark);
  transition: background .15s ease, border-color .15s ease;
}
.exo .contact__ch:hover { background: var(--dark-2); border-color: #3a3e4c; }
.exo .contact__ch .ico { width: 22px; height: 22px; color: var(--accent); flex-shrink: 0; }
.exo .contact__ch .l { flex: 1; }
.exo .contact__ch .name { font-size: 13px; color: #bdbdb4; }
.exo .contact__ch .val { font-family: var(--serif); font-size: 22px; font-weight: 500; color: #fff; line-height: 1.1; margin-top: 2px; }
.exo .contact__ch .go { color: #7a7d8c; }

.exo .contact__form {
  background: var(--dark-2); border: 1px solid var(--line-dark);
  border-radius: var(--radius); padding: 28px;
}
.exo .contact__form .formlabel {
  font-family: var(--mono); font-size: 10px; letter-spacing: .18em;
  text-transform: uppercase; color: #7a7d8c;
  display: block; margin-bottom: 8px;
}
.exo .contact__form .field {
  background: var(--dark); border: 1px solid var(--line-dark);
  border-radius: var(--radius); padding: 14px 16px;
  margin-bottom: 14px;
  display: flex; align-items: baseline; gap: 8px;
}
.exo .contact__form .field input,
.exo .contact__form .field textarea,
.exo .contact__form .field select {
  background: transparent; border: 0; outline: 0;
  color: #fff; font-size: 15px; width: 100%; resize: vertical;
  font-family: inherit;
}
.exo .contact__form .field textarea { min-height: 90px; }
.exo .contact__form .field input::placeholder,
.exo .contact__form .field textarea::placeholder { color: #5a5d68; }
.exo .contact__form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.exo .contact__form .row2 .field { margin-bottom: 0; }
.exo .contact__form .row2 + .field { margin-top: 14px; }
.exo .contact__form .btn { width: 100%; margin-top: 8px; }
.exo .contact__form .legal { font-size: 12px; color: #7a7d8c; margin-top: 12px; text-align: center; line-height: 1.5; }

/* ================================================================
   CART SIDEBAR
   ================================================================ */
.exo .cart-fab {
  position: fixed; right: 20px; bottom: 20px; z-index: 60;
  display: flex; align-items: center; gap: 8px;
  background: var(--ink); color: #fff; padding: 12px 18px;
  border-radius: 999px; border: 1px solid var(--ink);
  box-shadow: 0 12px 30px -10px rgba(0,0,0,.35);
  cursor: pointer; font-weight: 500;
  transition: transform .15s ease, background .15s ease;
}
.exo .cart-fab:hover { transform: translateY(-2px); background: var(--accent); border-color: var(--accent); }
.exo .cart-fab .ico { width: 18px; height: 18px; }
.exo .cart-fab .count {
  background: var(--accent); color: #fff; min-width: 22px; height: 22px;
  border-radius: 999px; padding: 0 7px;
  font-size: 12px; font-weight: 600; display: inline-flex;
  align-items: center; justify-content: center;
}
.exo .cart-fab[hidden] { display: none !important; }

.exo .cart-overlay {
  position: fixed; inset: 0; background: rgba(13,15,21,.5);
  opacity: 0; pointer-events: none; transition: opacity .25s ease;
  z-index: 70;
}
.exo .cart-overlay.is-open { opacity: 1; pointer-events: auto; }

.exo .cart {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(440px, 100vw);
  background: #fff; z-index: 80;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4,.0,.2,1);
  display: flex; flex-direction: column;
  box-shadow: -16px 0 40px -10px rgba(0,0,0,.25);
}
.exo .cart.is-open { transform: translateX(0); }
.exo .cart__head { padding: 22px 24px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--line); }
.exo .cart__head h3 { font-size: 22px; font-family: var(--serif); margin: 0; }
.exo .cart__items { flex: 1; overflow-y: auto; padding: 8px 24px; }
.exo .cart__item { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.exo .cart__item:last-child { border-bottom: 0; }
.exo .cart__item .ph { width: 70px; height: 70px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: var(--warm); }
.exo .cart__item .info { flex: 1; min-width: 0; }
.exo .cart__item .n { font-family: var(--serif); font-size: 16px; line-height: 1.2; margin-bottom: 4px; }
.exo .cart__item .d { font-size: 12px; color: var(--muted); margin-bottom: 8px; }
.exo .cart__item .row { display: flex; justify-content: space-between; align-items: center; }
.exo .cart__qty { display: flex; align-items: center; gap: 4px; border: 1px solid var(--line); border-radius: var(--radius); }
.exo .cart__qty button { width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; }
.exo .cart__qty button:hover { background: var(--warm); }
.exo .cart__qty .q { min-width: 24px; text-align: center; font-size: 13px; font-weight: 500; }
.exo .cart__item .price { font-size: 14px; font-weight: 600; }
.exo .cart__item .remove { font-size: 12px; color: var(--muted); margin-top: 6px; text-decoration: underline; cursor: pointer; }
.exo .cart__empty { padding: 60px 24px; text-align: center; color: var(--muted); }
.exo .cart__empty .ico { width: 56px; height: 56px; margin: 0 auto 16px; color: var(--line); }
.exo .cart__foot { padding: 20px 24px; border-top: 1px solid var(--line); }
.exo .cart__total { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 14px; }
.exo .cart__total .l { font-size: 13px; color: var(--muted); }
.exo .cart__total .v { font-family: var(--serif); font-size: 26px; font-weight: 600; }
.exo .cart__foot .btn { width: 100%; }

/* ================================================================
   Demo-only floating language switcher
   In production this is handled by Polylang language switcher widget.
   ================================================================ */
.exo .langswitch-demo {
  position: fixed; left: 20px; bottom: 20px; z-index: 60;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 6px; display: flex; gap: 4px;
  box-shadow: 0 8px 30px -10px rgba(0,0,0,.18);
}
.exo .langswitch-demo button {
  padding: 6px 12px; font-size: 12px; font-weight: 600;
  border-radius: 999px; text-transform: uppercase; letter-spacing: .06em;
  color: var(--muted);
}
.exo .langswitch-demo button.is-active { background: var(--ink); color: #fff; }
.exo .langswitch-demo button:hover:not(.is-active) { background: var(--warm); color: var(--ink); }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .exo .hero__grid { grid-template-columns: 1fr; }
  .exo .hero__photo { min-height: 340px; }
  .exo .bento { grid-template-columns: repeat(4, 1fr); grid-template-rows: 200px 200px 200px; }
  .exo .bento .b--c1 { grid-column: span 4; }
  .exo .bento .b--c2 { grid-column: span 2; }
  .exo .sale__grid { grid-template-columns: repeat(2, 1fr); }
  .exo .process__grid { grid-template-columns: repeat(2, 1fr); }
  .exo .reviews__grid { grid-template-columns: 1fr; }
  .exo .contact__grid { grid-template-columns: 1fr; gap: 32px; }
  .exo .truststrip__divider { display: none; }
}

@media (max-width: 640px) {
  .exo {
    --pad-x: 16px;
    --section-y: 48px;
    font-size: 14px;
  }
  .exo .hero { padding: 28px 16px 36px; }
  .exo .hero__tags { gap: 6px; }
  .exo .hero__h1 { font-size: 40px; }
  .exo .hero__sub { font-size: 15px; }
  .exo .hero__cta .btn { flex: 1 1 auto; }
  .exo .hero__photo { min-height: 280px; }
  .exo .hero__stats { gap: 16px; }
  .exo .hero__stats .divider { display: none; }
  .exo .truststrip { padding: 14px 16px; flex-direction: column; align-items: flex-start; }
  .exo .truststrip__item { flex: 0 0 auto; width: 100%; }
  .exo .bento { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(7, 160px); gap: 10px; }
  .exo .bento .b--c1, .exo .bento .b--c2 { grid-column: span 2; }
  .exo .bento .b--r2 { grid-row: span 1; }
  .exo .bento .b--big .b__name { font-size: 22px; }
  .exo .section-head h2 { font-size: 32px; }
  .exo .sale__grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .exo .sale__timer .blocks span { padding: 8px 10px; font-size: 14px; min-width: 38px; }
  .exo .process__grid { grid-template-columns: 1fr; gap: 10px; }
  .exo .reviews__grid { grid-template-columns: 1fr; gap: 10px; }
  .exo .contact__form .row2 { grid-template-columns: 1fr; }
  .exo .card__name { font-size: 16px; }
  .exo .card__body { padding: 12px 14px 16px; }
  .exo .cart { width: 100vw; }
  .exo .quickchips { padding: 10px 16px; }
  .exo .langswitch-demo { left: 12px; bottom: 12px; }
}

/* ================================================================
   DESIGN REFINEMENT v1.3
   Calmer accent usage — magenta was on every section eyebrow,
   every italic word, stars AND buttons at once. Pull it back to:
   logo · primary buttons · sale prices/badges · hero headline.
   Everything else goes neutral (ink / warm gold).
   ================================================================ */
.exo { --gold: #bd8742; }

/* Section eyebrows ("01 · Каталог") — neutral instead of magenta */
.exo .eyebrow { color: var(--ink-3) !important; }
.exo .eyebrow .tag { color: var(--accent); }            /* keep small BETA-style tags */

/* Lower-section italic accent words → ink (hero keeps its magenta) */
.exo .process h2 .accent,
.exo .process h2 .italic,
.exo .sale h2 .italic { color: var(--ink) !important; -webkit-text-fill-color: var(--ink); }

/* Contact block is dark → its italic accent becomes white, not pink */
.exo .contact h2 .italic { color: #fff !important; -webkit-text-fill-color: #fff; }

/* Ratings: warm gold reads as "stars", calmer than magenta */
.exo .reviews__rating .stars,
.exo .review__stars { color: var(--gold); }

/* Review quote marks adapt to language; admin stores clean text */
.exo .review__text::before { content: '\00AB'; }
.exo .review__text::after  { content: '\00BB'; }
.exo[lang="en"] .review__text::before { content: '\201C'; }
.exo[lang="en"] .review__text::after  { content: '\201D'; }

/* Hero stat dividers were catching min-width:100px and rendered as
   wide grey boxes — keep them as thin rules */
.exo .hero__stats > .divider { min-width: 0; width: 1px; }

/* ----------------------------------------------------------------
   GRID BLOWOUT FIX (v1.3.1)
   Long unbreakable Georgian words (e.g. "მზრუნველობით.") in the
   hero headline forced the text column past its fr-share and
   collapsed the photo column to a thin strip — the callout text
   then wrapped one glyph per line.
   Grid/flex children default to min-width:auto and refuse to
   shrink below their content; force them to 0 and let the
   headline wrap.
   ---------------------------------------------------------------- */
.exo .hero__grid > * { min-width: 0; }
.exo .hero__copy { min-width: 0; }
.exo .hero__h1,
.exo .hero__sub { overflow-wrap: break-word; word-break: normal; hyphens: none; }

/* ----------------------------------------------------------------
   HERO WIDTH LOCK + FLUID H1  (v1.5 → hardened v1.5.1)
   The photo column is a PERCENTAGE track (clamp), so it is resolved
   against the container width and can NEVER be squeezed by the
   headline's content. min-width:0 on the text track lets the H1
   wrap instead of expanding its track. !important defends against
   theme/page-builder overrides.
   ---------------------------------------------------------------- */
.exo .hero__grid {
  grid-template-columns: minmax(0, 1fr) clamp(300px, 40%, 560px) !important;
}
.exo .hero__grid > * { min-width: 0 !important; }
.exo .hero__copy { min-width: 0; }
.exo .hero__h1,
.exo .hero__sub { overflow-wrap: break-word !important; word-break: normal; hyphens: none; }
.exo .hero__photo {
  min-width: 0;
  width: 100%;        /* fill its locked grid track, never overflow */
}

/* Georgian: shorter cap + steeper shrink so long words fit the track */
.exo[lang="ka"] .hero__h1 {
  font-size: clamp(30px, 4.2vw, 62px) !important;
  line-height: 1.04;
  letter-spacing: -0.01em;
}
.exo[lang="ka"] .hero__sub {
  font-size: clamp(14px, 1.4vw, 17px);
}

/* English/Russian keep a slightly tighter cap than before to stay safe */
.exo[lang="en"] .hero__h1,
.exo[lang="ru"] .hero__h1 {
  font-size: clamp(40px, 5.6vw, 78px) !important;
}

/* Callout text must never collapse to vertical stacking */
.exo .hero__photo-callout .info { min-width: 0; }
.exo .hero__photo-callout .name,
.exo .hero__photo-callout .meta { overflow-wrap: anywhere; }

/* Bento meta: long Georgian names + price collided. Give them room. */
.exo .bento .b__name { font-size: 18px; text-wrap: balance; }
.exo .bento .b--big .b__name { font-size: 28px; }
.exo .bento .b__meta { padding: 10px 14px; }
.exo .bento .b__row {
  flex-wrap: wrap;
  gap: 2px 10px;
  align-items: baseline;
}
.exo .bento .b__row > span { white-space: nowrap; }

@media (max-width: 640px) {
  .exo .bento .b__name { font-size: 16px; }
  .exo .bento .b--big .b__name { font-size: 22px; }
  .exo .bento .b__row { font-size: 11px; }
}
