/* =============================================================
   Catálogo Online · Zemshop
   Vitrine pública mobile-first para solicitação de orçamento.
   ============================================================= */

:root {
  /* Paleta — Variação A · Bem-vindo */
  --bg:           #faf7f1;
  --surface:      #ffffff;
  --surface-alt:  #f3eee3;
  --surface-mute: #ede5d2;

  --ink:          #2a2620;
  --ink-soft:     #6b6357;
  --ink-mute:     #9a9082;

  --line:         #ebe3d4;
  --line-soft:    #f0ead9;

  --brand:        #0f8b76;
  --brand-deep:   #0a6e5d;
  --brand-soft:   #e2f1ed;

  --coral:        #e85d3c;
  --coral-soft:   #fce6dd;

  --wa:           #25d366;
  --wa-deep:      #128c7e;

  --danger:       #c4502e;

  /* Type */
  --sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --serif: 'Fraunces', 'DM Serif Display', Georgia, serif;

  /* Spacing scale */
  --s1: 4px;  --s2: 8px;  --s3: 12px;  --s4: 16px;
  --s5: 20px; --s6: 24px; --s7: 32px;  --s8: 40px;

  /* Radius */
  --r-card: 18px;
  --r-md: 12px;
  --r-sm: 10px;
  --r-xs: 6px;
  --r-pill: 999px;

  /* Container */
  --max: 1280px;

  /* Shadow */
  --sh-card:  0 1px 0 rgba(40,30,20,0.02);
  --sh-hover: 0 12px 32px -16px rgba(40,30,20,0.22);
  --sh-sheet: 0 -12px 32px -8px rgba(40,30,20,0.18);
  --sh-pop:   0 12px 32px -10px rgba(40,30,20,0.18), 0 0 0 1px rgba(40,30,20,0.04);

  /* Motion */
  --ease: cubic-bezier(.2,.7,.3,1);
}

body[data-theme="boutique"] {
  --bg:           #fbf4ef;
  --surface:      #fffaf7;
  --surface-alt:  #f6e8dd;
  --surface-mute: #ead9ca;
  --ink:          #2f241f;
  --ink-soft:     #745f54;
  --ink-mute:     #a39186;
  --line:         #ead8ca;
  --line-soft:    #f1e2d7;
  --brand:        #126f5a;
  --brand-deep:   #0b563f;
  --brand-soft:   #e5f2eb;
  --coral:        #d9634a;
  --coral-soft:   #f8ddd5;
  --r-card: 18px;
}

body[data-theme="vitrine"] {
  --bg:           #f6f6f4;
  --surface:      #ffffff;
  --surface-alt:  #eeeeea;
  --surface-mute: #e3e3dd;
  --ink:          #181714;
  --ink-soft:     #59564e;
  --ink-mute:     #858178;
  --line:         #dedbd2;
  --line-soft:    #e9e6de;
  --brand:        #111111;
  --brand-deep:   #000000;
  --brand-soft:   #ededed;
  --coral:        #f05a28;
  --coral-soft:   #ffe2d4;
  --r-card: 10px;
  --r-md: 8px;
  --r-sm: 6px;
}

body[data-theme="clean"] {
  --bg:           #f4f8fb;
  --surface:      #ffffff;
  --surface-alt:  #eaf1f6;
  --surface-mute: #dde8f0;
  --ink:          #17212b;
  --ink-soft:     #526171;
  --ink-mute:     #8895a3;
  --line:         #dbe5ee;
  --line-soft:    #e8eef4;
  --brand:        #177e89;
  --brand-deep:   #0d6470;
  --brand-soft:   #dff2f4;
  --coral:        #e86f52;
  --coral-soft:   #fde4dc;
  --r-card: 14px;
}

* { box-sizing: border-box; }
*:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; border-radius: var(--r-xs); }
[hidden] { display: none !important; }

html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}

img { max-width: 100%; display: block; }
button { font: inherit; color: inherit; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }

.container { max-width: var(--max); margin: 0 auto; padding-left: var(--s6); padding-right: var(--s6); }
@media (max-width: 720px) { .container { padding-left: var(--s4); padding-right: var(--s4); } }

.eyebrow {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-soft);
}
.eyebrow--brand { color: var(--brand); }

/* ====================== HEADER ====================== */
.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 30;
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s4);
  padding-top: var(--s5); padding-bottom: var(--s5);
}
.store { display: flex; align-items: center; gap: var(--s4); min-width: 0; }
.store__avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--brand); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-weight: 500; font-size: 24px;
  letter-spacing: -0.02em; flex-shrink: 0;
}
.store__info { min-width: 0; }
.store__info .eyebrow { color: var(--brand); margin-bottom: 2px; }
.store__name {
  font-family: var(--serif); font-weight: 500; font-size: 24px;
  letter-spacing: -0.02em; line-height: 1; margin: 0; color: var(--ink);
  text-overflow: ellipsis; overflow: hidden; white-space: nowrap;
}

.wa-btn {
  display: inline-flex; align-items: center; gap: var(--s2);
  background: var(--surface); border: 1.5px solid var(--brand);
  color: var(--brand); text-decoration: none;
  border-radius: var(--r-pill);
  padding: 10px 16px;
  font-size: 13px; font-weight: 600;
  transition: background .15s, color .15s;
  flex-shrink: 0;
}
.wa-btn:hover { background: var(--brand-soft); }
.wa-btn__icon { width: 16px; height: 16px; fill: currentColor; }

@media (max-width: 720px) {
  .site-header__inner { padding-top: var(--s3); padding-bottom: var(--s3); gap: var(--s3); }
  .store__avatar { width: 44px; height: 44px; font-size: 20px; }
  .store__name { font-size: 20px; }
  .wa-btn { padding: 10px; }
  .wa-btn__label { display: none; }
}

/* ====================== TOOLBAR ====================== */
.main { padding-top: var(--s6); padding-bottom: var(--s8); }
@media (max-width: 720px) { .main { padding-top: var(--s4); padding-bottom: 120px; } }

.toolbar { display: flex; flex-direction: column; gap: var(--s4); margin-bottom: var(--s5); }

.search {
  position: relative;
  display: flex; align-items: center;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 14px; height: 54px;
  padding: 0 var(--s5);
  transition: border-color .15s, box-shadow .15s;
}
.search:focus-within { border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-soft); }
.search__icon { width: 18px; height: 18px; color: var(--ink-mute); margin-right: var(--s3); flex-shrink: 0; }
.search__input {
  flex: 1; border: 0; background: transparent; outline: none;
  font-size: 15px; color: var(--ink);
}
.search__input::placeholder { color: var(--ink-mute); }
.search__clear {
  border: 0; background: var(--surface-alt); color: var(--ink-soft);
  width: 26px; height: 26px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0; transition: background .12s;
}
.search__clear:hover { background: var(--line); }
.search__clear svg { width: 12px; height: 12px; }
@media (max-width: 720px) { .search { height: 48px; padding: 0 var(--s4); } .search__input { font-size: 14px; } }

.chips {
  display: flex; gap: var(--s2);
  overflow-x: auto; overflow-y: hidden;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  margin: 0; padding: 0;
}
.chips::-webkit-scrollbar { display: none; }
.chip {
  background: var(--surface); color: var(--ink-soft);
  border: 1px solid var(--line); border-radius: var(--r-pill);
  padding: 8px 14px; font-size: 13px; font-weight: 500;
  white-space: nowrap; flex-shrink: 0;
  transition: background .12s, color .12s, border-color .12s;
}
.chip:hover { background: var(--surface-alt); }
.chip[aria-pressed="true"] { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ====================== LAYOUT ====================== */
.layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: var(--s6);
  align-items: flex-start;
}
@media (max-width: 980px) { .layout { grid-template-columns: 1fr; } }

.products { min-width: 0; }
.products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s4);
}
@media (max-width: 1180px) { .products__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 860px)  { .products__grid { grid-template-columns: repeat(2, 1fr); gap: var(--s3); } }

/* ====================== PRODUCT CARD ====================== */
.card {
  background: var(--surface);
  border-radius: var(--r-card);
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  overflow: hidden; position: relative;
  transition: box-shadow .18s var(--ease), transform .18s var(--ease);
}
.card:hover { box-shadow: var(--sh-hover); transform: translateY(-1px); }
.card--out { opacity: 0.94; }

.card__media {
  position: relative; aspect-ratio: 1 / 1;
  background: var(--surface-alt);
}
.card__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.card__img:not([src]), .card__img[src=""] { display: none; }
.card__placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-mute);
}
.card__placeholder svg { width: 44%; height: 44%; opacity: 0.55; }
/* hide placeholder once image is loaded */
.card__img.loaded + .card__placeholder { display: none; }

.card__badge {
  display: inline-flex; align-items: center;
  padding: 4px 8px; border-radius: var(--r-pill);
  font-size: 11px; font-weight: 700; letter-spacing: 0.02em;
}
.card__badge--discount {
  position: absolute; top: 10px; left: 10px;
  background: var(--coral); color: #fff;
}
.card__cover {
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.7);
  display: flex; align-items: center; justify-content: center;
}
.card__badge--out {
  background: var(--surface); color: var(--ink-soft);
  border: 1px solid var(--line);
}

.card__body {
  padding: var(--s4) var(--s4) var(--s4);
  display: flex; flex-direction: column; gap: var(--s3);
  flex: 1;
}
.card__name {
  margin: 0;
  font-size: 14px; font-weight: 500; color: var(--ink);
  line-height: 1.35;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden; min-height: 38px;
}
.card__prices { display: flex; align-items: baseline; gap: var(--s2); }
.card__price {
  font-family: var(--serif); font-size: 20px; font-weight: 500;
  color: var(--ink); letter-spacing: -0.01em;
}
.card__price-original {
  font-size: 12px; color: var(--ink-mute);
  text-decoration: line-through;
}
.card__btn { margin-top: auto; }
.card__stepper { margin-top: auto; }

/* ====================== BUTTONS ====================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--s2);
  border: 0; background: transparent; color: var(--ink);
  padding: 11px var(--s4);
  border-radius: var(--r-md);
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.01em;
  transition: background .15s, color .15s, border-color .15s, transform .08s;
  text-decoration: none;
}
.btn:active { transform: scale(0.98); }
.btn:disabled { cursor: not-allowed; transform: none; }

.btn--primary { background: var(--brand); color: #fff; }
.btn--primary:hover { background: var(--brand-deep); }
.btn--primary:disabled { background: var(--surface-alt); color: var(--ink-mute); }

.btn--ghost {
  background: var(--surface); color: var(--ink);
  border: 1px solid var(--line);
}
.btn--ghost:hover { background: var(--surface-alt); }

.btn--wa { background: var(--wa); color: #fff; }
.btn--wa:hover { background: var(--wa-deep); }

.btn--big { padding: 15px var(--s5); font-size: 14px; }
.btn--text {
  background: transparent; color: var(--ink-soft);
  padding: var(--s3);
}
.btn--text:hover { color: var(--ink); }
.link-btn {
  background: transparent; border: 0; color: var(--brand);
  font-weight: 600; padding: var(--s2) 0; text-decoration: underline;
  text-underline-offset: 3px;
}

/* ====================== STEPPER ====================== */
.stepper {
  display: flex; align-items: stretch;
  border: 1.5px solid var(--brand);
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--surface);
}
.stepper button {
  flex: 0 0 40px; background: transparent; border: 0;
  color: var(--brand); font-size: 18px; font-weight: 600;
  padding: 0;
}
.stepper button:last-child { background: var(--brand); color: #fff; }
.stepper button:hover { background: var(--brand-soft); }
.stepper button:last-child:hover { background: var(--brand-deep); }
.stepper__label, .stepper > span {
  flex: 1; display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 600; color: var(--brand);
}

.stepper--sm { border-radius: var(--r-xs); border-width: 1px; }
.stepper--sm button { flex: 0 0 24px; font-size: 14px; }
.stepper--sm > span { min-width: 18px; font-size: 12px; }

/* ====================== QUOTE PANEL ====================== */
.quote-panel {
  width: 340px;
  background: var(--surface);
  border-radius: var(--r-card);
  border: 1px solid var(--line);
  align-self: flex-start;
  position: sticky; top: calc(76px + var(--s5));
  max-height: calc(100vh - 96px);
  display: flex; flex-direction: column;
}
.quote-panel__inner {
  padding: var(--s6) var(--s5);
  overflow-y: auto;
  display: flex; flex-direction: column; gap: var(--s4);
}

.quote-head .eyebrow { margin-bottom: var(--s2); }
.quote-head__title {
  font-family: var(--serif); font-weight: 500; font-size: 22px;
  color: var(--ink); letter-spacing: -0.02em; line-height: 1.1;
  margin: 0 0 var(--s2);
}
.quote-head__sub { margin: 0; font-size: 13px; color: var(--ink-soft); }
.checkout-back {
  margin-top: var(--s3);
}

body:not([data-view="checkout"]) .form,
body:not([data-view="checkout"]) .field__hint,
body:not([data-view="checkout"]) .checkout-back {
  display: none;
}

body[data-view="checkout"] .catalog-intro,
body[data-view="checkout"] .toolbar,
body[data-view="checkout"] .products,
body[data-view="checkout"] .bottom-bar {
  display: none !important;
}

body[data-view="checkout"] .main {
  padding-top: 32px;
}

body[data-view="checkout"] .layout {
  display: block;
  max-width: 760px;
  margin: 0 auto;
}

body[data-view="checkout"] .quote-panel {
  width: 100%;
  position: static;
  max-height: none;
  border-radius: var(--r-card);
}

body[data-view="checkout"] .quote-panel__inner {
  padding: clamp(20px, 4vw, 36px);
}

.cart-items { display: flex; flex-direction: column; }
.cart-items:empty { display: none; }

.cart-item {
  display: flex; gap: var(--s3); padding: var(--s3) 0;
  border-bottom: 1px solid var(--line-soft);
}
.cart-item:first-child { border-top: 1px solid var(--line-soft); }
.cart-item__img {
  width: 48px; height: 48px; border-radius: var(--r-sm);
  overflow: hidden; background: var(--surface-alt);
  flex-shrink: 0; position: relative;
}
.cart-item__img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item__img img:not([src]), .cart-item__img img[src=""] { display: none; }
.cart-item__placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-mute);
}
.cart-item__placeholder svg { width: 50%; height: 50%; opacity: 0.55; }
.cart-item__img img.loaded ~ .cart-item__placeholder { display: none; }
.cart-item__body { flex: 1; min-width: 0; }
.cart-item__name {
  font-size: 12.5px; line-height: 1.3;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden; margin-bottom: var(--s1);
}
.cart-item__row {
  display: flex; align-items: center; justify-content: space-between; gap: var(--s2);
}
.cart-item__price { font-size: 13px; font-weight: 600; }

/* ====================== FORM ====================== */
.field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.field__label { font-size: 12px; font-weight: 600; color: var(--ink); }
.req { color: var(--coral); }
.field__hint { font-size: 12px; color: var(--ink-mute); margin-top: -6px; }
.field__error { font-size: 12px; color: var(--danger); display: none; }
.field--error .field__error { display: block; }

.input {
  width: 100%;
  padding: 10px 12px;
  border-radius: var(--r-sm);
  border: 1px solid var(--line);
  background: var(--surface); color: var(--ink);
  font-size: 13.5px; outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.input:focus { border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-soft); }
.input::placeholder { color: var(--ink-mute); }
.input--textarea { resize: vertical; min-height: 64px; line-height: 1.4; }
.field--error .input { border-color: var(--danger); }
.field--error .input:focus { box-shadow: 0 0 0 3px var(--coral-soft); }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s2); }

.form { display: flex; flex-direction: column; gap: var(--s3); }

/* ====================== COUPON ====================== */
.coupon { display: flex; gap: 6px; }
.coupon .input { flex: 1; }
.coupon-applied {
  display: flex; align-items: center; gap: var(--s2);
  background: var(--coral-soft); color: var(--coral);
  padding: 10px 12px; border-radius: var(--r-sm);
  font-weight: 600; font-size: 13px;
}
.coupon-applied svg { width: 14px; height: 14px; flex-shrink: 0; }
.coupon-applied__code { flex: 1; }
.coupon-applied__rm {
  background: transparent; border: 0; color: var(--coral); padding: 2px;
  display: inline-flex; opacity: 0.7;
}
.coupon-applied__rm:hover { opacity: 1; }
.coupon-applied__rm svg { width: 12px; height: 12px; }
.coupon-error {
  background: #fff1ec; color: var(--danger);
  padding: 8px 12px; border-radius: var(--r-xs);
  font-size: 12px; font-weight: 500;
  border: 1px solid var(--coral-soft);
}

/* ====================== TOTALS ====================== */
.totals {
  background: var(--surface-alt);
  border-radius: var(--r-md);
  padding: var(--s3) var(--s4);
  display: flex; flex-direction: column; gap: var(--s1);
}
.totals__row { display: flex; align-items: baseline; justify-content: space-between; gap: var(--s2); font-size: 12px; }
.totals__row--sub { color: var(--ink-soft); }
.totals__row--discount { color: var(--coral); font-weight: 600; }
.totals__row--final { margin-top: var(--s1); }
.totals__row--final > :first-child { font-size: 13px; color: var(--ink-soft); }
.totals__amount {
  font-family: var(--serif); font-size: 24px; font-weight: 500;
  color: var(--ink); letter-spacing: -0.02em;
}

.disclaimer { margin: 0; font-size: 11px; color: var(--ink-mute); text-align: center; line-height: 1.5; }

/* ====================== MOBILE — sheet ====================== */
@media (max-width: 980px) {
  body:not([data-view="checkout"]) .quote-panel {
    display: none;
  }
  body:not([data-view="checkout"]) .layout {
    display: block;
    grid-template-columns: 1fr !important;
    gap: 0;
  }
  body:not([data-view="checkout"]) .products {
    width: 100%;
  }
  body:not([data-view="checkout"]) .products__grid {
    grid-template-columns: repeat(auto-fit, minmax(158px, 1fr));
    gap: 16px;
  }
  .quote-panel {
    position: fixed; left: 0; right: 0; bottom: 0; top: auto;
    width: 100%; max-height: 88vh;
    border-radius: 22px 22px 0 0;
    border: 0; box-shadow: var(--sh-sheet);
    transform: translateY(100%);
    transition: transform .28s var(--ease);
    z-index: 50;
    display: flex; flex-direction: column;
  }
  .quote-panel[data-open="true"] { transform: translateY(0); }
  .quote-panel__inner {
    padding: var(--s5) var(--s5) var(--s7);
    overflow-y: auto;
  }
  .quote-panel__inner::before {
    content: ''; display: block;
    width: 40px; height: 4px; border-radius: 2px;
    background: var(--line); margin: 0 auto var(--s4);
  }
  .quote-panel .quote-head { padding-right: 40px; position: relative; }
  .quote-panel .quote-head::after {
    content: '×'; position: absolute; top: -4px; right: 0;
    width: 32px; height: 32px;
    background: var(--surface-alt); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; color: var(--ink); line-height: 1;
    cursor: pointer;
  }
}

.sheet-backdrop {
  position: fixed; inset: 0;
  background: rgba(20,16,10,0.45);
  opacity: 0; pointer-events: none;
  transition: opacity .25s var(--ease);
  z-index: 40;
}
.sheet-backdrop[data-open="true"] { opacity: 1; pointer-events: auto; }

/* ====================== BOTTOM BAR (mobile) ====================== */
.bottom-bar {
  display: none;
  position: fixed; left: var(--s3); right: var(--s3); bottom: var(--s3);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--sh-sheet);
  padding: var(--s3) var(--s4);
  align-items: center; gap: var(--s3);
  z-index: 45;
  text-align: left;
  animation: slideUp .3s var(--ease);
}
@keyframes slideUp { from { transform: translateY(120%); } to { transform: translateY(0); } }
@media (max-width: 980px) {
  .bottom-bar:not([hidden]) { display: flex; }
}
.bottom-bar__pill {
  position: relative;
  width: 44px; height: 44px; border-radius: var(--r-md);
  background: var(--brand-soft); color: var(--brand);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.bottom-bar__pill::before {
  content: ''; position: absolute; inset: 10px; border-radius: 4px;
  border: 2px solid currentColor;
  -webkit-mask: linear-gradient(#000 0 0); /* allow inner */
}
.bottom-bar__pill::after {
  content: ''; position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  width: 14px; height: 8px; border: 2px solid currentColor; border-bottom: 0;
  border-radius: 7px 7px 0 0; background: transparent;
}
.bottom-bar__count {
  position: absolute; top: -6px; right: -6px;
  min-width: 22px; height: 22px; padding: 0 6px;
  border-radius: 11px;
  background: var(--coral); color: #fff;
  font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--surface);
  z-index: 1;
}
.bottom-bar__info { flex: 1; min-width: 0; }
.bottom-bar__label { font-size: 11px; color: var(--ink-soft); font-weight: 500; display: block; }
.bottom-bar__total {
  font-family: var(--serif); font-size: 20px; font-weight: 500;
  color: var(--ink); letter-spacing: -0.02em; line-height: 1.1;
  display: block;
}
.bottom-bar__cta {
  display: flex; align-items: center; gap: 6px;
  background: var(--brand); color: #fff;
  padding: 10px var(--s4); border-radius: var(--r-md);
  font-size: 13px; font-weight: 600;
  flex-shrink: 0;
}
.bottom-bar__cta svg { width: 14px; height: 14px; }

/* ====================== EMPTY STATE ====================== */
.empty {
  text-align: center; padding: var(--s8) var(--s4);
  display: flex; flex-direction: column; align-items: center; gap: var(--s3);
}
.empty__icon {
  width: 84px; height: 84px; border-radius: 50%;
  background: var(--brand-soft); color: var(--brand);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--s2);
}
.empty__icon svg { width: 60%; height: 60%; }
.empty__title {
  font-family: var(--serif); font-weight: 500; font-size: 22px;
  letter-spacing: -0.02em; margin: 0; color: var(--ink);
}
.empty__text { margin: 0; color: var(--ink-soft); }
.empty__suggest { display: flex; gap: var(--s2); flex-wrap: wrap; justify-content: center; margin-top: var(--s2); }
.empty__suggest .chip { cursor: pointer; }

/* ====================== SKELETON ====================== */
.sk-shimmer {
  background: linear-gradient(90deg, var(--surface-alt) 0%, #f7f0e1 50%, var(--surface-alt) 100%);
  background-size: 200% 100%;
  animation: shimmer 1.6s linear infinite;
}
@keyframes shimmer {
  from { background-position: 200% 0; }
  to   { background-position: -200% 0; }
}
.sk-line { height: 12px; border-radius: 6px; }
.card--sk .card__media { background: transparent; }
.card--sk .card__body { gap: 10px; }

/* ====================== SUCCESS SCREEN ====================== */
.success {
  position: fixed; inset: 0;
  background: rgba(20,16,10,0.5);
  display: flex; align-items: center; justify-content: center;
  padding: var(--s4); z-index: 100;
  opacity: 0; animation: fadeIn .25s var(--ease) forwards;
}
@keyframes fadeIn { to { opacity: 1; } }
.success__card {
  background: var(--surface); border-radius: var(--r-card);
  padding: var(--s7) var(--s6) var(--s6);
  max-width: 380px; width: 100%;
  display: flex; flex-direction: column; align-items: center; gap: var(--s3);
  text-align: center;
  box-shadow: var(--sh-pop);
  transform: translateY(10px); animation: rise .3s var(--ease) forwards;
}
@keyframes rise { to { transform: translateY(0); } }
.success__check {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--brand-soft); color: var(--brand);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--s2);
}
.success__check svg { width: 40px; height: 40px; }
.success__title {
  margin: 0;
  font-family: var(--serif); font-weight: 500; font-size: 24px;
  letter-spacing: -0.02em; color: var(--ink);
}
.success__text { margin: 0; color: var(--ink-soft); line-height: 1.5; }
.success__order {
  width: 100%;
  background: var(--surface-alt); border-radius: var(--r-md);
  padding: var(--s4); margin-top: var(--s2);
}
.success__order-row { display: flex; justify-content: space-between; gap: var(--s3); }
.success__order-label { font-size: 11px; color: var(--ink-mute); font-weight: 500; }
.success__order-value {
  font-family: var(--serif); font-size: 18px; font-weight: 500; color: var(--ink);
  margin-top: 2px;
}
.success .btn { width: 100%; }

/* ====================== TOASTS ====================== */
.toasts {
  position: fixed; bottom: var(--s4); left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column-reverse; gap: var(--s2);
  z-index: 200; pointer-events: none;
}
.toast {
  background: var(--ink); color: #fff;
  padding: 10px 16px; border-radius: var(--r-pill);
  font-size: 13px; font-weight: 500;
  box-shadow: var(--sh-pop);
  display: inline-flex; align-items: center; gap: var(--s2);
  pointer-events: auto;
  animation: toastIn .25s var(--ease);
}
@keyframes toastIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.toast--error { background: var(--danger); }
.toast--success { background: var(--brand); }

/* ====================== LOADING / READY GATES ====================== */
body[data-state="loading"] .empty { display: none !important; }
body[data-state="error"]   .empty { display: flex !important; }
body[data-state="error"]   .products__grid { display: none; }

/* ====================== EMERALD / IVORY REFRESH ====================== */
:root {
  --bg: #f9f9f6;
  --surface: #ffffff;
  --surface-alt: #f4f4f1;
  --surface-mute: #e8e8e5;
  --ink: #1a1c1b;
  --ink-soft: #3e4946;
  --ink-mute: #6e7a76;
  --line: #dce5e1;
  --line-soft: #edf1ef;
  --brand: #00796b;
  --brand-deep: #005e53;
  --brand-soft: #dff4ee;
  --coral: #a2563f;
  --coral-soft: #ffebe4;
  --danger: #ba1a1a;
  --sans: 'Hanken Grotesk', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --serif: 'Libre Caslon Text', Georgia, serif;
  --r-card: 8px;
  --r-md: 8px;
  --r-sm: 6px;
  --sh-card: none;
  --sh-hover: 0 10px 28px rgba(0, 0, 0, 0.06);
  --sh-sheet: 0 -16px 40px rgba(0, 0, 0, 0.14);
  --sh-pop: 0 18px 46px rgba(0, 0, 0, 0.12);
}

body[data-theme="boutique"],
body[data-theme="vitrine"],
body[data-theme="clean"] {
  --r-card: 8px;
  --r-md: 8px;
  --r-sm: 6px;
}

html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  font-size: 15px;
  letter-spacing: 0;
}

.container {
  max-width: 1280px;
  padding-left: clamp(16px, 4vw, 40px);
  padding-right: clamp(16px, 4vw, 40px);
}

.eyebrow,
.catalog-intro__kicker {
  letter-spacing: 0.05em;
}

.site-header {
  background: rgba(249, 249, 246, 0.96);
  backdrop-filter: blur(12px);
  border-bottom-color: rgba(110, 122, 118, 0.28);
}
.site-header__inner {
  min-height: 74px;
  padding-top: 0;
  padding-bottom: 0;
}
.store__avatar {
  width: 42px;
  height: 42px;
  border-radius: var(--r-card);
  background: var(--brand-deep);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
}
.store__info .eyebrow {
  display: none;
}
.store__name {
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 700;
  color: var(--brand-deep);
  letter-spacing: 0;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
  margin-right: auto;
}
.site-nav a {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
}
.site-nav a[aria-current="page"],
.site-nav a:hover {
  color: var(--brand-deep);
}
.site-nav a[aria-current="page"] {
  box-shadow: inset 0 -2px 0 var(--brand);
  padding-bottom: 5px;
}
.wa-btn {
  border-color: transparent;
  background: var(--brand);
  color: #ffffff;
  border-radius: var(--r-md);
  padding: 12px 16px;
  box-shadow: none;
}
.wa-btn:hover {
  background: var(--brand-deep);
}

.main {
  padding-top: 64px;
  padding-bottom: 72px;
}
.catalog-intro {
  max-width: 680px;
  margin: 0 auto 54px;
  text-align: center;
}
.catalog-intro__kicker {
  margin: 0 0 12px;
  color: var(--brand-deep);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}
.catalog-intro__title {
  margin: 0;
  color: var(--brand-deep);
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.05;
}
.catalog-intro__text {
  max-width: 620px;
  margin: 18px auto 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.55;
}

.toolbar {
  max-width: 760px;
  margin: 0 auto 40px;
  gap: 24px;
}
.search {
  height: 50px;
  border-color: rgba(110, 122, 118, 0.34);
  border-radius: var(--r-md);
  box-shadow: none;
}
.search:focus-within {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(0, 121, 107, 0.12);
}
.chips {
  justify-content: center;
  gap: 14px;
}
.chip {
  border: 0;
  background: var(--surface-mute);
  color: var(--ink-soft);
  border-radius: 999px;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.chip[aria-pressed="true"] {
  background: var(--brand);
  border-color: var(--brand);
  color: #ffffff;
}

.layout {
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 40px;
}
.products__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.card {
  border-color: rgba(110, 122, 118, 0.28);
  border-radius: var(--r-card);
  box-shadow: var(--sh-card);
}
.card:hover {
  box-shadow: var(--sh-hover);
  transform: translateY(-2px);
}
.card__media {
  aspect-ratio: 4 / 5;
  background: var(--surface-alt);
}
.card__img {
  object-fit: cover;
}
.card__body {
  padding: 24px;
  gap: 10px;
}
.card__name {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 700;
  line-height: 1.18;
  min-height: 60px;
  letter-spacing: 0;
}
.card__meta {
  order: -1;
  color: var(--brand-deep);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
}
.card__prices {
  border-top: 1px solid rgba(110, 122, 118, 0.34);
  margin-top: 14px;
  padding-top: 18px;
}
.card__price {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 700;
}
.card__btn,
.btn--primary {
  background: var(--brand);
  border-radius: var(--r-md);
}
.card__btn {
  margin-top: 8px;
  min-height: 44px;
}
.btn--primary:hover {
  background: var(--brand-deep);
}
.stepper {
  border-color: var(--brand);
  border-radius: var(--r-md);
}

.quote-panel {
  width: 380px;
  border-color: rgba(110, 122, 118, 0.34);
  border-radius: 12px;
  top: 96px;
  max-height: calc(100vh - 120px);
}
.quote-panel__inner {
  padding: 32px 32px 28px;
  gap: 18px;
}
.quote-head__title,
.success__title,
.empty__title {
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: 0;
}
.quote-head__title {
  font-size: 28px;
  line-height: 1.2;
}
.quote-head__sub {
  color: var(--ink-soft);
  font-size: 14px;
}
.cart-item {
  border-color: rgba(110, 122, 118, 0.24);
}
.cart-item__img {
  border-radius: var(--r-md);
}
.field__label {
  color: var(--ink-soft);
  font-weight: 800;
  letter-spacing: 0.05em;
}
.input {
  min-height: 48px;
  border-color: rgba(110, 122, 118, 0.42);
  border-radius: var(--r-md);
  background: #ffffff;
  font-size: 15px;
}
.input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(0, 121, 107, 0.12);
}
.input--textarea {
  min-height: 92px;
}
.totals,
.success__order {
  background: var(--surface-alt);
  border-radius: var(--r-md);
}
.totals__amount {
  font-family: var(--serif);
  font-weight: 700;
}
.btn--big {
  min-height: 56px;
}
.disclaimer {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 600;
}

.bottom-bar {
  border-color: rgba(110, 122, 118, 0.34);
  border-radius: var(--r-md);
}
.bottom-bar__cta {
  background: var(--brand);
  border-radius: var(--r-md);
}
.success__card {
  border-radius: 12px;
}
.success__check {
  background: var(--brand);
  color: #ffffff;
}

@media (max-width: 1180px) {
  .products__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .site-header__inner {
    min-height: 64px;
  }
  .site-nav {
    display: none;
  }
  .main {
    padding-top: 24px;
    padding-bottom: 120px;
  }
  .catalog-intro {
    margin: 0 0 36px;
    text-align: left;
  }
  .catalog-intro__kicker {
    display: none;
  }
  .catalog-intro__title {
    color: var(--ink);
    font-size: 31px;
  }
  .catalog-intro__text {
    margin-top: 10px;
    font-size: 16px;
  }
  .toolbar {
    margin-bottom: 24px;
  }
  .search {
    display: flex;
    height: 46px;
    order: 2;
  }
  .chips {
    justify-content: flex-start;
    margin-left: -16px;
    margin-right: -16px;
    padding: 0 16px;
    order: 1;
  }
  .chip {
    padding: 10px 24px;
  }
  .layout {
    gap: 0;
  }
  .quote-panel {
    width: 100%;
    border-radius: 16px 16px 0 0;
  }
  .quote-panel__inner {
    padding: 22px 20px 32px;
  }
}

@media (max-width: 720px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .store {
    gap: 10px;
  }
  .store__avatar {
    display: none;
  }
  .store__name {
    font-size: 27px;
  }
  .wa-btn {
    width: 42px;
    height: 42px;
    padding: 0;
    border-radius: 50%;
  }
  .products__grid {
    grid-template-columns: repeat(2, minmax(150px, 1fr));
    gap: 16px;
  }
  .products__grid > .card {
    display: flex;
    min-width: 0;
    min-height: 260px;
    background: var(--surface);
    border: 1px solid var(--line);
  }
  .card__media {
    aspect-ratio: 1 / 1;
    min-height: 150px;
    display: block;
    flex: 0 0 auto;
    background: var(--surface-alt);
  }
  .card__placeholder {
    display: flex;
  }
  .card__body {
    padding: 14px 16px 16px;
    gap: 8px;
    display: flex;
    min-height: 110px;
    background: var(--surface);
  }
  .card__name {
    display: -webkit-box;
    color: var(--ink);
    font-size: 19px;
    min-height: 46px;
  }
  .card__meta {
    display: none;
  }
  .card__prices {
    border-top: 0;
    margin-top: 0;
    padding-top: 0;
  }
  .card__price {
    font-family: var(--sans);
    color: var(--brand-deep);
    font-size: 16px;
    font-weight: 700;
  }
  .card__prices,
  .card__btn,
  .card__stepper {
    display: flex;
  }
  .card__btn[hidden],
  .card__stepper[hidden] {
    display: none;
  }
  .card__btn {
    min-height: 36px;
    padding: 8px 10px;
    font-size: 14px;
  }
  .stepper button {
    flex-basis: 34px;
  }
  .stepper__label {
    font-size: 12px;
  }
  .field-row {
    grid-template-columns: 1fr;
  }
  .bottom-bar {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }
  .bottom-bar__cta {
    padding: 10px 12px;
    white-space: nowrap;
  }
}

@media (max-width: 360px) {
  body:not([data-view="checkout"]) .products__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 380px) {
  .products__grid {
    gap: 12px;
  }
  .card__body {
    padding: 12px;
  }
  .card__name {
    font-size: 18px;
  }
  .card__btn {
    font-size: 13px;
  }
}

body[data-theme="emerald_ivory_dark"] {
  --bg: #101815;
  --surface: #18221f;
  --surface-alt: #202c28;
  --surface-mute: #25332f;
  --ink: #f4f1e8;
  --ink-soft: #d8d7cd;
  --ink-mute: #aab5af;
  --line: #32443e;
  --line-soft: #26342f;
  --brand: #4fc3b4;
  --brand-deep: #8be0d5;
  --brand-soft: #173c36;
  --coral: #ff9b7e;
  --coral-soft: #402821;
  --danger: #ffb4ab;
}

body[data-theme="coral_ink_light"] {
  --bg: #fffbf7;
  --surface: #ffffff;
  --surface-alt: #f5eee8;
  --surface-mute: #eaded5;
  --ink: #1c2328;
  --ink-soft: #40484d;
  --ink-mute: #70787d;
  --line: #e0d5cd;
  --line-soft: #f1e8e1;
  --brand: #16836f;
  --brand-deep: #0b6657;
  --brand-soft: #d9f2ec;
  --coral: #d9644a;
  --coral-soft: #ffe6df;
  --danger: #ba1a1a;
}

body[data-theme="coral_ink_dark"] {
  --bg: #171412;
  --surface: #221d1a;
  --surface-alt: #2b2420;
  --surface-mute: #342b26;
  --ink: #f6eee8;
  --ink-soft: #dfd1c8;
  --ink-mute: #bdaea5;
  --line: #473a34;
  --line-soft: #342b26;
  --brand: #2fa38a;
  --brand-deep: #7bd7c4;
  --brand-soft: #183d35;
  --coral: #ff8a6c;
  --coral-soft: #4b261d;
  --danger: #ffb4ab;
}

.store__logo {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: var(--r-card);
  object-fit: cover;
  background: var(--surface-alt);
  border: 1px solid var(--line);
}

.card__badge--order {
  right: 10px;
  left: auto;
  background: var(--coral);
  color: #ffffff;
}

.order-note {
  margin: -4px 0 0;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

body[data-theme="emerald_ivory_dark"] .site-header,
body[data-theme="coral_ink_dark"] .site-header {
  background: rgba(16, 24, 21, 0.94);
}

body[data-theme="emerald_ivory_dark"] .input,
body[data-theme="coral_ink_dark"] .input {
  background: var(--surface);
  color: var(--ink);
}

@media (max-width: 720px) {
  .store__avatar:not([hidden]) {
    display: flex;
    width: 38px;
    height: 38px;
    flex-basis: 38px;
    font-size: 18px;
  }
  .store__logo {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }
}

@media (max-width: 980px) {
  body[data-view="checkout"] {
    overflow: auto !important;
  }
  body[data-view="checkout"] .quote-panel {
    position: static;
    inset: auto;
    width: 100%;
    max-height: none;
    transform: none;
    border-radius: var(--r-card);
  }
  body[data-view="checkout"] .quote-panel__inner::before,
  body[data-view="checkout"] .quote-panel .quote-head::after {
    display: none;
  }
}

/* ====================== STOREFRONT POLISH ====================== */
body {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.38), rgba(255,255,255,0) 280px),
    var(--bg);
}

.site-header {
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
}

.site-header__inner {
  min-height: 68px;
}

.store__name {
  font-size: 25px;
}

.main {
  padding-top: 34px;
  padding-bottom: 86px;
}

.catalog-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  max-width: none;
  margin: 0 0 22px;
  padding-bottom: 22px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.catalog-intro__kicker {
  margin-bottom: 8px;
  color: var(--brand-deep);
  font-size: 12px;
  font-weight: 800;
}

.catalog-intro__title {
  max-width: 760px;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.03;
}

.catalog-intro__text {
  max-width: 620px;
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 17px;
}

.toolbar {
  display: grid;
  grid-template-columns: minmax(280px, 520px) minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  max-width: none;
  margin: 0 0 28px;
}

.search {
  max-width: none;
  min-height: 48px;
  margin: 0;
  background: var(--surface);
  border-color: var(--line);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
}

.chips {
  justify-content: flex-end;
  gap: 10px;
}

.chip {
  min-height: 40px;
  padding: 9px 18px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink-soft);
}

.chip.is-active {
  border-color: var(--brand);
  background: var(--brand);
  color: #ffffff;
}

.layout {
  grid-template-columns: minmax(0, 1fr) 332px;
  gap: 28px;
}

.products__grid {
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 18px;
}

.card {
  min-height: 100%;
  border-radius: 8px;
  background: var(--surface);
  border-color: var(--line);
  box-shadow: none;
}

.card:hover {
  box-shadow: 0 16px 36px rgba(20, 24, 22, 0.08);
  transform: translateY(-2px);
}

.card__media {
  aspect-ratio: 1 / 1;
  border-bottom: 1px solid var(--line-soft);
}

.card__body {
  padding: 16px;
  gap: 9px;
}

.card__meta {
  order: -1;
  color: var(--brand-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: none;
}

.card__name {
  font-family: var(--sans);
  min-height: 48px;
  color: var(--ink);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.22;
}

.card__prices {
  margin-top: 4px;
  padding-top: 14px;
  border-top: 1px solid var(--line-soft);
}

.card__price {
  font-family: var(--sans);
  color: var(--ink);
  font-size: 22px;
  font-weight: 800;
}

.card__btn {
  min-height: 42px;
  margin-top: 4px;
}

.quote-panel {
  width: 332px;
  border-radius: 8px;
  background: var(--surface);
  border-color: var(--line);
  top: 90px;
  max-height: calc(100vh - 112px);
}

.quote-panel__inner {
  padding: 24px;
  gap: 16px;
}

.quote-head__title {
  font-size: 26px;
  line-height: 1.08;
}

.quote-head__sub,
.disclaimer {
  color: var(--ink-soft);
}

.totals {
  background: var(--surface-alt);
  border: 1px solid var(--line-soft);
  border-radius: 8px;
}

.totals__amount {
  font-family: var(--sans);
  font-size: 24px;
  font-weight: 800;
}

.input,
.coupon .input {
  background: var(--surface);
}

body[data-theme="emerald_ivory_dark"],
body[data-theme="coral_ink_dark"] {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0) 280px),
    var(--bg);
}

body[data-theme="emerald_ivory_dark"] .chip,
body[data-theme="coral_ink_dark"] .chip {
  background: var(--surface);
  color: var(--ink-soft);
}

body[data-theme="emerald_ivory_dark"] .chip.is-active,
body[data-theme="coral_ink_dark"] .chip.is-active {
  background: var(--brand);
  color: #07120f;
}

body[data-theme="emerald_ivory_dark"] .quote-panel,
body[data-theme="coral_ink_dark"] .quote-panel {
  background: var(--surface);
}

@media (min-width: 1280px) {
  .products__grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}

@media (max-width: 980px) {
  .site-nav {
    display: none;
  }

  .main {
    padding-top: 22px;
  }

  .catalog-intro {
    margin-bottom: 18px;
    padding-bottom: 18px;
  }

  .catalog-intro__title {
    font-size: clamp(30px, 9vw, 42px);
  }

  .catalog-intro__text {
    font-size: 15px;
  }

  .toolbar {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    margin-bottom: 22px;
  }

  .chips {
    justify-content: flex-start;
    overflow-x: auto;
    margin: 0 -16px;
    padding: 0 16px 4px;
    scrollbar-width: none;
  }

  .chips::-webkit-scrollbar {
    display: none;
  }

  body:not([data-view="checkout"]) .layout {
    display: block;
  }

  body:not([data-view="checkout"]) .quote-panel {
    display: none;
  }

  .products__grid {
    grid-template-columns: repeat(auto-fit, minmax(156px, 1fr));
    gap: 14px;
  }

  .card__media {
    min-height: 0;
  }

  .card__body {
    padding: 13px;
  }

  .card__name {
    min-height: 42px;
    font-size: 16px;
  }

  .card__price {
    font-size: 17px;
  }
}

@media (max-width: 720px) {
  .site-header__inner {
    min-height: 62px;
  }

  .store__name {
    font-size: 22px;
  }

  .wa-btn__label {
    display: none;
  }

  .products__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 360px) {
  body:not([data-view="checkout"]) .products__grid {
    grid-template-columns: 1fr;
  }
}
