:root {
  --bg: #f7f3ec;
  --paper: #fffaf2;
  --ink: #231d19;
  --muted: #756b61;
  --line: #e3d6c7;
  --accent: #9f2f22;
  --accent-dark: #6f1f18;
  --green: #2f6f47;
  --gold: #bb7c22;
  --shadow: 0 10px 30px rgba(42, 28, 18, .12);
}

/* WoWShuk admin, pricing and header refinements v5. */
body.store-wowshuk .brand-logo {
  transform: translateX(12px);
}

body.store-wowshuk .store-hours-pill,
body.store-wowshuk .store-address-pill {
  justify-content: center;
}

.urgent-delivery-row {
  grid-template-columns: auto minmax(0, 1fr) !important;
  align-items: center;
  border: 1px solid rgba(213, 68, 31, .24);
  border-radius: 8px;
  padding: 9px 10px;
  background: rgba(255, 244, 238, .8);
  color: #a92c18 !important;
}

.urgent-delivery-row input {
  width: 19px;
  height: 19px;
  accent-color: #df3d1e;
}

.products-admin-head {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  width: 100%;
}

.products-admin-head button {
  width: 100%;
  min-height: 42px;
}

.product-language-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 6px;
  margin-top: -5px;
}

.product-language-tabs button {
  min-width: 0;
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 5px;
  background: #fff;
  color: var(--ink);
  font-weight: 850;
}

.product-language-tabs button.active {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.product-description-field {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.product-description-field textarea {
  grid-column: 1 / -1;
}

.description-generate-tools {
  display: inline-flex;
  align-items: center;
  justify-content: end;
  gap: 7px;
}

.generate-all-languages {
  display: inline-flex !important;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 4px !important;
  cursor: pointer;
  font-size: 20px !important;
}

.generate-all-languages input {
  width: 17px;
  height: 17px;
  accent-color: var(--accent);
}

.desk-row-check {
  cursor: pointer;
  user-select: none;
}

.prices-desk-panel {
  padding: 14px;
}

.prices-desk-panel.active {
  display: grid;
  gap: 12px;
}

.prices-panel-head h2,
.prices-panel-head p {
  margin: 0;
}

.prices-panel-head p {
  margin-top: 4px;
  color: var(--muted);
}

.prices-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 280px);
  gap: 9px;
}

.prices-toolbar select {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding-inline: 10px;
  background: #fff;
  font: inherit;
  font-weight: 750;
}

.prices-list {
  display: grid;
  gap: 7px;
  max-height: calc(100vh - 285px);
  overflow: auto;
}

.price-editor-row {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) minmax(110px, 150px);
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 7px;
  background: #fff;
}

.price-editor-row img {
  width: 54px;
  height: 54px;
  border-radius: 7px;
  object-fit: cover;
}

.price-editor-row strong,
.price-editor-row small {
  display: block;
}

.price-editor-row small {
  color: var(--muted);
}

.price-editor-input {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 5px;
}

.price-editor-input input {
  min-width: 0;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 7px 9px;
  font: inherit;
  font-weight: 900;
}

.prices-save {
  justify-self: end;
  min-width: 220px;
}

.logout-button {
  font-size: 20px;
}

.logout-button::before,
.logout-button::after {
  display: none;
}

@media (max-width: 720px) {
  body.store-wowshuk .brand-logo {
    transform: translateX(20px);
  }

  .product-language-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-description-field {
    grid-template-columns: 1fr;
  }

  .description-generate-tools,
  .product-description-field textarea {
    grid-column: 1;
  }

  .description-generate-tools {
    justify-content: space-between;
  }

  .prices-toolbar {
    grid-template-columns: 1fr;
  }

  .price-editor-row {
    grid-template-columns: 48px minmax(0, 1fr) 105px;
  }

  .price-editor-row img {
    width: 48px;
    height: 48px;
  }

  .prices-save {
    width: 100%;
    min-width: 0;
  }
}

.address-autocomplete { position: relative; }
.address-suggestions {
  position: absolute; z-index: 30; inset-inline: 0; top: calc(100% - 2px);
  overflow: hidden; border: 1px solid #9bc5a1; border-radius: 12px;
  background: #fff; box-shadow: 0 12px 28px rgba(15, 91, 40, .18);
}
.address-suggestions[hidden] { display: none; }
.address-suggestions button {
  display: block; width: 100%; padding: 11px 13px; border: 0; border-bottom: 1px solid #e1eee2;
  background: #fff; color: var(--ink); text-align: start; font: inherit; cursor: pointer;
}
.address-suggestions button:last-child { border-bottom: 0; }
.address-suggestions button:hover, .address-suggestions button:focus { background: #eff9ee; }
.address-status { display: block; min-height: 18px; margin-top: 5px; color: #63756a; font-size: 12px; }
.address-status.verified { color: #08752d; font-weight: 800; }
.address-status.error { color: #b72718; font-weight: 700; }
.manual-address-toggle { margin-top: 3px; }
.manual-address-fields {
  padding: 13px; border: 1px solid #b8d9b9; border-radius: 14px; background: #f5fbf2;
}
.manual-address-fields[hidden] { display: none; }
.manual-address-help, .manual-address-warning { margin: 0 0 12px; line-height: 1.4; }
.manual-address-warning { padding: 10px; border-inline-start: 4px solid #e24a22; background: #fff4e9; color: #7c2717; font-weight: 750; }
.manual-address-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; margin-bottom: 9px; }
.manual-address-grid label { margin: 0; }
.manual-address-grid input:disabled { background: #e7f1e4; color: #185b2c; opacity: 1; }
.manual-address-acknowledgement { align-items: flex-start; }
.order-address { margin: 10px 0; padding: 11px; border-radius: 12px; background: #edf8ec; }
.order-address p { margin: 4px 0; }
.manual-address { border: 2px solid #ef9a62; background: #fff5e8; }
.manual-address.manual_review_required > strong { color: #b8331d; }
.manual-address.rejected { border-color: #d32920; background: #fff0ee; }
.verified-address { border: 1px solid #a6d2aa; }
.address-review-required { box-shadow: inset 5px 0 #ed6c2c; }
.address-review-actions { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 10px; }
.address-review-actions button { min-height: 34px; border: 1px solid #16813c; border-radius: 8px; padding: 6px 10px; background: #fff; color: #11642f; font: inherit; font-weight: 800; cursor: pointer; }
.address-review-actions button:first-child { background: #17823a; color: #fff; }
.address-rejection { color: #a82318; }
@media (max-width: 520px) {
  .manual-address-grid { grid-template-columns: 1fr; }
}

/* Price by actual weight for items ordered by piece. */
.unit-price-tab-wrap {
  display: inline-flex;
  align-items: stretch;
  gap: 3px;
}

.actual-weight-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 30px;
  padding: 3px 7px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff8f2;
  color: var(--ink);
  font-size: 10px;
  font-weight: 850;
  cursor: pointer;
}

.actual-weight-toggle input {
  width: 15px;
  height: 15px;
  margin: 0;
  accent-color: var(--accent);
}

.actual-weight-price-note,
.actual-weight-price {
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.15;
}

.product-unit-price-field .actual-weight-price-note {
  display: flex;
  min-height: 42px;
  align-items: center;
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #f5fbf2;
}

.product-unit-price-field .actual-weight-price-note[hidden] {
  display: none;
}

.price-line .actual-weight-price {
  max-width: 100%;
}

.cart-price.actual-weight-price {
  max-width: 130px;
  font-size: 12px;
}

#cartTotal.actual-weight-price {
  max-width: 145px;
  font-size: 11px;
  line-height: 1.1;
  text-align: end;
}

/* WoWShuk v5 final cascade overrides. */
body.store-wowshuk .brand-logo { transform: translateX(12px); }
.products-admin-head {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}
.products-admin-head button { width: 100%; min-height: 42px; }
.product-description-field {
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
}
.product-description-field .description-generate-tools {
  grid-column: 1;
  justify-self: end;
}
.product-description-field textarea { grid-column: 1 / -1; }
.logout-button { font-size: 20px; }
.logout-button::before,
.logout-button::after { display: none; }
@media (max-width: 720px) {
  body.store-wowshuk .brand-logo { transform: translateX(20px); }
  .product-description-field { grid-template-columns: 1fr; }
  .description-generate-tools,
  .product-description-field textarea { grid-column: 1; }
}

/* WoWShuk v7 final cascade. */
body.store-wowshuk .brand-logo { transform: translateX(7px); }
.product-language-tabs {
  display: flex;
  grid-template-columns: none;
  flex-wrap: wrap;
  gap: 4px;
  width: auto;
  margin: 2px 0 4px;
}
.product-title-row + .product-language-tabs { padding-inline-start: 50px; }
.product-language-tabs button {
  flex: 0 0 30px;
  width: 30px;
  min-width: 30px;
  max-width: 30px;
  height: 30px;
  min-height: 30px;
  padding: 0;
  border-radius: 6px;
  font-size: 10px;
  line-height: 1;
}
.product-description-field {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 5px;
}
.product-description-field .description-generate-tools {
  grid-column: 1;
  justify-self: end;
}
.product-description-field textarea,
.product-description-field .product-language-tabs { grid-column: 1; }
.unit-price-tabs,
.sale-unit-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.unit-price-tab,
.sale-unit-chip {
  min-height: 30px;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 4px 9px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 11px;
  font-weight: 900;
}
.unit-price-tab.active,
.sale-unit-chip.active {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}
.sale-unit-chips { margin-top: 3px; }
@media (max-width: 720px) {
  body.store-wowshuk .brand-logo { transform: translateX(10px); }
  .product-language-tabs { grid-template-columns: none; }
}

/* WoWShuk compact languages and sale units v7. */
body.store-wowshuk .brand-logo { transform: translateX(7px); }

.product-language-tabs {
  display: flex;
  grid-template-columns: none;
  flex-wrap: wrap;
  gap: 4px;
  width: auto;
  margin: 2px 0 4px;
}

.product-title-row + .product-language-tabs {
  padding-inline-start: 50px;
}

.product-language-tabs button {
  flex: 0 0 30px;
  width: 30px;
  min-width: 30px;
  max-width: 30px;
  height: 30px;
  min-height: 30px;
  padding: 0;
  border-radius: 6px;
  font-size: 10px;
  line-height: 1;
}

.product-description-field {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 5px;
}

.product-description-field .description-generate-tools {
  grid-column: 1;
  justify-self: end;
}

.product-description-field textarea,
.product-description-field .product-language-tabs {
  grid-column: 1;
}

.product-unit-price-field {
  align-content: start;
}

.unit-price-tabs,
.sale-unit-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.unit-price-tab,
.sale-unit-chip {
  min-height: 30px;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 4px 9px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 11px;
  font-weight: 900;
}

.unit-price-tab.active,
.sale-unit-chip.active {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.sale-unit-chips {
  margin-top: 3px;
}

@media (max-width: 720px) {
  body.store-wowshuk .brand-logo { transform: translateX(10px); }
  .product-language-tabs { grid-template-columns: none; }
}

/* WoWShuk brand layer — modern urban shuk */
body.store-wowshuk {
  --accent: #e43a1f;
  --accent-dark: #bb2714;
  --fresh: #17852c;
  --fresh-dark: #0d5f21;
  --ink: #183022;
  --paper: #fffaf0;
  --card: #ffffff;
  --line: #dce8d8;
  --cart-icon: none;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 184, 66, .16), transparent 27rem),
    radial-gradient(circle at 96% 10%, rgba(35, 153, 62, .12), transparent 30rem),
    var(--paper);
  font-family: "Rubik", "Arial", sans-serif;
}

body.store-wowshuk .topbar {
  background: rgba(255, 250, 240, .96);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 28px rgba(34, 79, 40, .08);
}

body.store-wowshuk .brand-logo {
  width: min(235px, 30vw);
  max-height: 92px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

body.store-wowshuk .brand-title {
  color: var(--fresh-dark);
  font-weight: 900;
}

body.store-wowshuk .store-hours-pill,
body.store-wowshuk .store-address-pill,
body.store-wowshuk .store-whatsapp-pill {
  border-color: #d8e8d2;
  background: #fff;
  color: var(--fresh-dark);
}

body.store-wowshuk .filters {
  background: rgba(255, 250, 240, .94);
  border-bottom: 1px solid var(--line);
}

body.store-wowshuk .animal-filter-row [data-filter-kind="animal"] {
  display: none;
}

body.store-wowshuk .filter {
  border: 1px solid #cfe0ca;
  background: #fff;
  color: var(--fresh-dark);
}

body.store-wowshuk .filter.active,
body.store-wowshuk .deal-filter.active,
body.store-wowshuk .add,
body.store-wowshuk .checkout,
body.store-wowshuk .store-tab.active {
  border-color: var(--fresh);
  background: linear-gradient(135deg, var(--fresh), var(--fresh-dark));
  color: #fff;
  box-shadow: 0 8px 18px rgba(23, 133, 44, .2);
}

body.store-wowshuk .deal-filter {
  border-color: #f1b1a5;
  color: var(--accent-dark);
}

body.store-wowshuk .deal-filter.active,
body.store-wowshuk .featured .badge {
  background: linear-gradient(135deg, #ef542f, #cf2516);
  border-color: #cf2516;
  color: #fff;
}

body.store-wowshuk .catalog {
  max-width: 1480px;
}

body.store-wowshuk .card {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--card);
  box-shadow: 0 10px 26px rgba(28, 76, 36, .08);
  overflow: hidden;
}

body.store-wowshuk .card.featured {
  border-color: #f2b8aa;
  box-shadow: 0 12px 30px rgba(205, 50, 25, .12);
}

body.store-wowshuk .image-wrap {
  background: linear-gradient(150deg, #fffdf8, #f4f8ed);
}

body.store-wowshuk .image-wrap img {
  object-fit: cover;
}

body.store-wowshuk .category {
  color: var(--fresh);
  font-weight: 800;
}

body.store-wowshuk .title,
body.store-wowshuk .price {
  color: var(--ink);
}

body.store-wowshuk .controls {
  grid-template-columns: 44px minmax(112px, 1fr) 44px;
}

.quantity-edit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-width: 0;
  color: var(--ink, #183022);
  font-weight: 850;
}

.quantity-input {
  width: 68px;
  min-width: 0;
  padding: 7px 5px;
  border: 1px solid #c9ddc5;
  border-radius: 10px;
  background: #fff;
  color: inherit;
  text-align: center;
  font: inherit;
}

.quantity-input:focus {
  outline: 3px solid rgba(23, 133, 44, .18);
  border-color: var(--fresh, #17852c);
}

.delivery-summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 18px;
  margin: 12px 0 4px;
  padding: 14px;
  border: 1px solid #cfe0ca;
  border-radius: 16px;
  background: #f5faef;
}

.delivery-summary small {
  grid-column: 1 / -1;
  color: #53705a;
}

body.store-wowshuk .fulfillment-tabs {
  grid-template-columns: 1fr;
}

body.store-wowshuk #dueMinute {
  display: none;
}

body.store-wowshuk .schedule-grid {
  grid-template-columns: 1fr 1fr 2fr;
}

body.store-wowshuk .cart-glyph::before {
  content: "🛒";
  display: grid;
  place-items: center;
  font-size: 29px;
  line-height: 1;
}

body.store-wowshuk .cart-bar {
  background: rgba(255, 255, 255, .96);
  border-top-color: #d5e4d1;
}

@media (max-width: 720px) {
  body.store-wowshuk .brand-logo {
    width: 126px;
    max-height: 62px;
  }

  body.store-wowshuk .brand-title {
    display: none;
  }

  body.store-wowshuk .store-info-row {
    gap: 5px;
  }

  body.store-wowshuk .store-address-pill {
    width: 100%;
    text-align: center;
  }

  body.store-wowshuk .card {
    border-radius: 17px;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  overflow-x: clip;
  background: var(--bg);
  color: var(--ink);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.35;
  letter-spacing: 0;
}

.language-gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(29, 11, 63, .68);
}

.language-gate.open {
  display: flex;
}

.language-gate-card {
  width: min(430px, 100%);
  border: 2px solid rgba(255, 212, 71, .8);
  border-radius: 18px;
  padding: 22px;
  background: #fffaf5;
  box-shadow: 0 22px 80px rgba(29, 11, 63, .32);
  text-align: center;
}

.language-gate-card img {
  display: block;
  width: min(260px, 88%);
  margin: 0 auto 12px;
}

.language-gate-card h2 {
  margin: 0 0 6px;
  color: #46288e;
  font-size: 28px;
  line-height: 1.1;
}

.language-gate-card p {
  margin: 0 0 16px;
  color: #6b5a84;
  font-weight: 800;
}

.language-gate-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.language-gate-actions button {
  min-height: 52px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, #46288e, #7b35df);
  color: #fff;
  font: inherit;
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(70, 40, 142, .22);
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.logo-button {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 0;
  padding: 0;
  background: transparent;
}

.topbar {
  position: relative;
  z-index: 18;
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
  background: #46288e;
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand-row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 430px) minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 10px 28px 8px 20px;
}

.brand-row > div:first-child {
  display: flex;
  min-height: 162px;
  min-width: 0;
  align-items: center;
  gap: 0;
}

.brand-title {
  align-self: center;
  min-width: 0;
  color: #fff;
  font-size: clamp(42px, 4.8vw, 74px);
  font-weight: 500;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.store-info-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(104px, .34fr) minmax(0, 1fr);
  gap: 7px;
  padding: 0 10px 9px;
}

.store-hours-pill,
.store-whatsapp-pill {
  display: flex;
  min-width: 0;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 8px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, .94);
  color: #5f4a78;
  font-size: 12px;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
}

.store-whatsapp-pill {
  flex-direction: column;
  gap: 2px;
  color: #1f7a45;
  text-decoration: none;
}

.store-hours-pill {
  flex-direction: column;
  gap: 2px;
}

.store-whatsapp-pill img {
  width: 24px;
  height: 24px;
}

.store-address-pill {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 8px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, .94);
  color: #5f4a78;
  font-size: 12px;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  white-space: normal;
}

.store-address-pill:hover {
  border-color: rgba(106, 53, 212, .42);
  color: var(--accent-dark);
}

.top-actions {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 7px;
  justify-self: end;
}

.header-phone-link {
  display: none;
}

.site-language {
  max-width: 128px;
  min-width: 92px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 7px;
  background: var(--paper);
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
  box-shadow: 0 4px 14px rgba(42, 28, 18, .06);
}

.brand-logo {
  display: block;
  width: min(25vw, 395px);
  max-width: min(25vw, 395px);
  height: auto;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 5px 12px rgba(0, 0, 0, .12));
}

.push-button {
  width: 42px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--accent-dark);
  font-size: 19px;
  line-height: 1;
  box-shadow: none;
}

.push-button.enabled {
  border-color: #9ac59d;
  background: #e8f5df;
}

.push-button:disabled {
  opacity: 0.55;
}

.cart-icon-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--accent-dark);
  font-weight: 800;
  box-shadow: 0 4px 14px rgba(42, 28, 18, .08);
}

.cart-glyph {
  position: relative;
  display: block;
  width: 36px;
  height: 36px;
  background: var(--cart-icon) center / contain no-repeat;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, .16));
  font-size: 0;
  line-height: 1;
}

.cart-badge {
  position: absolute;
  right: 3px;
  top: 3px;
  display: grid;
  min-width: 21px;
  height: 21px;
  place-items: center;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.filters {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  gap: 7px;
  padding: 10px 10px 10px;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 18px rgba(70, 40, 142, .08);
}

.filter-row {
  display: flex;
  gap: 7px;
  overflow-x: auto;
  scrollbar-width: none;
  align-items: center;
}

.filter-row::-webkit-scrollbar {
  display: none;
}

.filters::-webkit-scrollbar {
  display: none;
}

.filter {
  flex: 0 0 auto;
  min-height: 31px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 11px;
  background: var(--paper);
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.filter.active {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.filter.deal-filter {
  border-color: #efc14d;
  background: #ffd866;
  color: #3b2410;
  box-shadow: 0 4px 12px rgba(187, 124, 34, .22);
}

.filter.deal-filter.active {
  border-color: #d59a26;
  background: #f3b72c;
  color: #2f1b0b;
}

.catalog-search {
  display: inline-flex;
  flex: 0 0 auto;
  min-height: 31px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
}

.catalog-search input {
  width: 118px;
  border: 0;
  padding: 6px 2px 6px 11px;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 12px;
  outline: none;
}

.catalog-search button {
  width: 34px;
  align-self: stretch;
  border: 0;
  background: var(--accent);
  color: #fff;
  font-weight: 900;
}

main {
  padding: 10px 10px 96px;
}

.catalog {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 1180px;
  margin: 0 auto;
}

.bottom-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  max-width: 1180px;
  margin: 18px auto 0;
}

.slider-button,
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 18px;
  background: var(--paper);
  color: var(--accent-dark);
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(42, 28, 18, .08);
}

.social-link {
  width: 54px;
  min-width: 54px;
  height: 42px;
  padding: 0;
}

.social-link img {
  width: 25px;
  height: 25px;
  display: block;
}

.slider-button:active,
.social-link:active {
  transform: translateY(1px);
}

.bottom-phone-link {
  display: table;
  margin: 10px auto 0;
  color: #48218d;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
}

#scheduleHint {
  display: none !important;
}

.bottom-push-button {
  width: 54px;
  min-width: 54px;
  height: 42px;
  padding: 0;
  font-size: 21px;
  font-weight: 850;
  box-shadow: none;
}

.bottom-push-button.unsupported {
  opacity: .72;
}

.bottom-push-button[hidden] {
  display: inline-flex !important;
}

.card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 4px 16px rgba(42, 28, 18, .08);
}

.card.featured {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
}

.card.wide-product {
  grid-column: 1 / -1;
}

.wide-product .image-wrap {
  aspect-ratio: 16 / 8;
}

.wide-product .content {
  padding: 11px;
}

.wide-product .title {
  font-size: 20px;
}

.image-wrap {
  position: relative;
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  aspect-ratio: 1 / .86;
  background: #e8dfd4;
  overflow: hidden;
}

.product-image-button {
  cursor: zoom-in;
}

.featured .image-wrap {
  min-height: 0;
  aspect-ratio: 16 / 9;
}

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

.badge {
  position: absolute;
  left: 7px;
  top: 7px;
  max-width: calc(100% - 14px);
  border-radius: 6px;
  padding: 4px 7px;
  background: var(--green);
  color: #fff;
  font-size: 11px;
  font-weight: 850;
}

.price-card .badge {
  background: var(--gold);
}

.promo-card,
.price-card {
  border-color: #d9c5ae;
  background: #fff9ef;
}

.promo-card .content,
.price-card .content {
  gap: 8px;
  padding: 11px;
}

.content {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  gap: 7px;
  padding: 9px;
}

.title {
  margin: 0;
  min-width: 0;
  font-size: 15px;
  line-height: 1.08;
  font-weight: 850;
}

.featured .title {
  font-size: 22px;
  line-height: 1.02;
}

.category {
  align-self: flex-start;
  max-width: 100%;
  border: 1px solid color-mix(in srgb, var(--accent) 28%, transparent);
  border-radius: 999px;
  padding: 3px 8px;
  background: color-mix(in srgb, var(--paper) 82%, var(--accent) 18%);
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  line-height: 1.1;
  white-space: normal;
}

.description {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.featured .description {
  font-size: 13px;
  -webkit-line-clamp: 2;
}

.price-line {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}

.price {
  color: var(--accent-dark);
  font-size: 18px;
  font-weight: 900;
}

.old-price {
  color: var(--muted);
  font-size: 13px;
  text-decoration: line-through;
}

.unit {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.deals {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(94px, 1fr));
  gap: 7px;
}

.deal {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border: 1px solid #dca829;
  border-radius: 7px;
  padding: 5px 7px;
  background: #ffd866;
  color: #442811;
  font-size: 12px;
  font-weight: 900;
  text-align: center;
  box-shadow: 0 3px 8px rgba(187, 124, 34, .16);
}

.deal.active {
  border-color: var(--accent-dark);
  background: var(--accent);
  color: #fff;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .18);
}

.product-card .deals .deal {
  background: #efe5d8;
  color: var(--accent-dark);
  box-shadow: none;
}

.controls {
  display: grid;
  grid-template-columns: 34px 1fr 34px;
  align-items: center;
  gap: 5px;
}

.step {
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  color: var(--accent-dark);
  font-size: 19px;
  font-weight: 850;
}

.weight {
  text-align: center;
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
}

.add {
  width: 100%;
  min-height: 35px;
  border: 0;
  border-radius: 7px;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 850;
}

.cart-bar {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 9px;
  padding: 9px 10px calc(9px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  background: rgba(255, 250, 242, .97);
  box-shadow: 0 -8px 24px rgba(42, 28, 18, .12);
  backdrop-filter: blur(12px);
}

.cart-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  background: #fff;
  color: var(--ink);
  text-align: left;
}

.cart-summary strong {
  color: var(--accent-dark);
  font-size: 18px;
}

.checkout {
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  padding: 0 15px;
  background: var(--green);
  color: #fff;
  font-weight: 850;
}

.checkout.full {
  width: 100%;
}

.checkout:disabled {
  cursor: not-allowed;
  opacity: .45;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
  align-items: end;
  background: rgba(35, 29, 25, .42);
}

.cart-drawer.open {
  display: flex;
}

.cart-panel {
  width: 100%;
  max-height: min(86vh, 760px);
  overflow: auto;
  border-radius: 14px 14px 0 0;
  background: var(--paper);
  box-shadow: var(--shadow);
  padding: 14px 12px calc(18px + env(safe-area-inset-bottom));
}

.cart-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.cart-head h2 {
  margin: 0;
  font-size: 22px;
}

.cart-head p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.close-button {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
}

.cart-items {
  display: grid;
  gap: 8px;
}

.cart-empty {
  border: 1px dashed var(--line);
  border-radius: 8px;
  padding: 18px;
  color: var(--muted);
  text-align: center;
}

.cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px;
  background: #fff;
}

.cart-item.deal-item {
  border-color: #e8ca69;
  background: #fff4c9;
}

.cart-item h3 {
  margin: 0 0 3px;
  font-size: 15px;
}

.cart-item p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.deal-note {
  color: #7a4d00 !important;
  font-weight: 800;
}

.item-comment {
  color: var(--ink) !important;
  font-weight: 700;
}

.product-modal .modal-panel {
  padding: 0;
}

.product-modal-panel {
  position: relative;
  width: min(560px, calc(100vw - 24px));
  max-height: min(86vh, 780px);
  overflow: auto;
  background: var(--paper);
}

.product-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  background: rgba(255, 255, 255, .9);
  color: var(--accent-dark);
}

.product-modal-image-wrap {
  background: color-mix(in srgb, var(--bg) 78%, var(--paper) 22%);
}

.product-modal-image-wrap img {
  display: block;
  width: 100%;
  max-height: 46vh;
  object-fit: contain;
}

.product-modal-content {
  display: grid;
  gap: 11px;
  padding: 16px;
}

.product-modal-category {
  justify-self: start;
  border-radius: 999px;
  padding: 5px 10px;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.product-modal-content h2 {
  margin: 0;
  font-size: 25px;
  line-height: 1.08;
}

.product-modal-content p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.product-modal-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 7px;
}

.product-modal-add {
  min-height: 46px;
}

.order-history {
  margin: 6px 0 0;
  color: var(--green);
  font-size: 13px;
  font-weight: 850;
}

.cart-price {
  color: var(--accent-dark);
  font-weight: 900;
  text-align: right;
}

.cart-actions {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 34px 64px 34px 1fr auto;
  gap: 6px;
  align-items: center;
}

.comment-button,
.admin-lite {
  min-height: 32px;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 0 9px;
  background: #fff;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 800;
}

.remove {
  justify-self: end;
  border: 0;
  background: transparent;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
}

.cart-form {
  display: grid;
  gap: 8px;
  margin: 12px 0;
}

.fulfillment-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
}

.fulfillment-tabs button {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 10px;
  background: var(--paper);
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.fulfillment-tabs button.active {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.delivery-fields {
  display: grid;
  gap: 8px;
}

.delivery-fields[hidden] {
  display: none;
}

.pickup-field[hidden],
.check-row[hidden] {
  display: none !important;
}

.cart-form label {
  display: grid;
  gap: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.field-note {
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

.check-row {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: center;
  gap: 8px !important;
}

.check-row input {
  width: auto !important;
}

.schedule-field {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.schedule-grid {
  display: grid;
  grid-template-columns: 64px 1fr 64px 64px;
  gap: 7px;
}

.schedule-grid input,
.schedule-grid select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  background: #fff;
  color: var(--ink);
  font-weight: 800;
}

.schedule-field small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.25;
}

.schedule-field.is-ready .schedule-grid {
  opacity: .42;
  filter: grayscale(.35);
}

.schedule-field.is-ready .schedule-grid select {
  background: #eee8df;
}

.ready-note {
  display: none;
  border-left: 3px solid var(--green);
  padding: 6px 0 6px 9px;
}

.schedule-field.is-ready .ready-note {
  display: grid;
  gap: 2px;
}

.ready-note strong {
  color: var(--ink);
  font-size: 13px;
}

.ready-note span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.25;
}

.pickup-field {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.pickup-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.pickup-options label {
  display: flex !important;
  align-items: center;
  gap: 7px !important;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px;
  background: #fff;
  color: var(--ink);
  font-size: 12px;
  line-height: 1.15;
}

.pickup-options input {
  width: auto !important;
  accent-color: var(--accent);
}

.cart-form input,
.cart-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  background: #fff;
  color: var(--ink);
}

.cart-form input::placeholder,
.cart-form textarea::placeholder {
  color: #77706a;
  opacity: .92;
}

#customerPhone::placeholder {
  font-size: 14px;
}

.admin-language-toggle {
  min-width: 76px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 900;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(35, 29, 25, .42);
}

.modal.open {
  display: flex;
}

.modal-panel {
  display: grid;
  gap: 10px;
  width: min(440px, 100%);
  border-radius: 12px;
  background: var(--paper);
  padding: 14px;
  box-shadow: var(--shadow);
}

.wide-modal {
  max-height: 88vh;
  overflow: auto;
}

.modal-panel h2 {
  margin: 0;
  font-size: 20px;
}

.quick-order-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.inline-cart-link {
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--green);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.modal-panel label {
  display: grid;
  gap: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.modal-panel input,
.modal-panel select,
.modal-panel textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  background: #fff;
  color: var(--ink);
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.login-error {
  min-height: 18px;
  margin: 0;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
}

.orders-desk {
  position: fixed;
  inset: 0;
  z-index: 55;
  display: none;
  overflow: auto;
  background: var(--bg);
  padding: 12px 10px 90px;
}

.orders-desk.open {
  display: block;
}

.admin-dashboard {
  position: fixed;
  inset: 0;
  z-index: 56;
  display: none;
  overflow: auto;
  background: var(--bg);
  padding: 12px 10px 90px;
}

.admin-dashboard.open {
  display: block;
}

.admin-tabs {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  gap: 8px;
  max-width: 980px;
  margin: 0 auto 10px;
  padding: 8px 0;
  overflow-x: auto;
  background: var(--bg);
}

.desk-tabs {
  position: sticky;
  top: 0;
  z-index: 3;
  display: flex;
  gap: 8px;
  max-width: 980px;
  margin: 0 auto 10px;
  padding: 8px 0;
  overflow-x: auto;
  background: var(--bg);
}

.desk-tabs button {
  flex: 0 0 auto;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 16px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 900;
}

.desk-tabs button.active {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.desk-panel {
  display: none;
}

.desk-panel.active {
  display: block;
}

.products-desk-panel {
  max-width: 1200px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.native-products-panel {
  display: none;
  grid-template-columns: minmax(240px, .78fr) minmax(0, 1.55fr);
  gap: 12px;
  padding: 10px;
}

.native-products-panel.active {
  display: grid;
}

.products-admin-sidebar,
.products-admin-form {
  min-width: 0;
  border: 1px solid rgba(226, 214, 198, .75);
  border-radius: 8px;
  padding: 10px;
  background: rgba(255, 255, 255, .72);
}

.products-admin-head,
.products-form-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.products-admin-head h2,
.products-form-head h2 {
  margin: 0;
  font-size: 21px;
  font-weight: 950;
}

.products-admin-head p,
.products-form-head p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.desk-product-list {
  display: grid;
  gap: 7px;
  max-height: calc(100vh - 260px);
  overflow: auto;
  padding-top: 8px;
}

.desk-product-row {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  width: 100%;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 7px;
  background: #fff;
  color: var(--ink);
  text-align: left;
}

.desk-product-row.active {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--accent) 18%, transparent);
}

.desk-product-row img {
  width: 50px;
  height: 50px;
  border-radius: 7px;
  object-fit: cover;
  background: var(--bg);
}

.desk-product-row strong,
.desk-product-row small {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.desk-product-row small,
.desk-product-row b {
  color: var(--muted);
  font-size: 12px;
}

.products-form-actions {
  display: flex;
  gap: 8px;
}

.admin-danger {
  min-height: 40px;
  border: 0;
  border-radius: 8px;
  padding: 0 14px;
  background: #8f120f;
  color: #fff;
  font-weight: 900;
}

.product-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.product-form-grid label,
.product-extra {
  display: grid;
  gap: 5px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
}

.product-form-grid .full {
  grid-column: 1 / -1;
}

.filter-checks {
  display: grid;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  background: rgba(255, 255, 255, .62);
}

.product-variants-editor {
  display: grid;
  gap: 9px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  background: rgba(255, 255, 255, .68);
}

.variants-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 10px;
}

.variants-head h3,
.variants-head p {
  margin: 0;
}

.variants-head p {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.variant-list {
  display: grid;
  gap: 8px;
}

.variant-row {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) auto;
  gap: 8px;
  align-items: end;
}

.variant-row label {
  margin: 0;
}

.variant-actions {
  display: grid;
  grid-template-columns: 42px 42px;
  gap: 6px;
}

.variant-remove,
.variant-weight-delete {
  min-width: 42px;
  min-height: 38px;
  padding: 0;
  font-size: 18px;
}

.filter-checks h3,
.filter-checks p {
  margin: 0;
}

.filter-checks p {
  color: var(--muted);
  font-size: 12px;
}

.filter-check-group {
  display: grid;
  gap: 6px;
}

.filter-check-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.filter-check-list label {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 9px;
  background: var(--paper);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.filter-check-list input[type="checkbox"],
.compact-check input[type="checkbox"],
.detail-control input[type="checkbox"],
.desk-type-toggles input[type="checkbox"],
.status-filters input[type="checkbox"] {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  min-width: 16px;
  min-height: 16px;
  margin: 0;
  accent-color: var(--accent);
}

.filter-check-list label {
  min-width: 0;
}

.desk-product-bulk {
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px;
  background: rgba(255, 255, 255, .66);
}

.desk-type-toggles {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.desk-type-toggles label,
.compact-check {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 850;
}

.desk-bulk-frequency,
.range-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 6px;
  align-items: center;
}

.desk-bulk-frequency input,
.range-row input {
  grid-column: 1;
}

.desk-bulk-frequency b,
.range-row b {
  display: grid;
  min-width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  background: #ffc12f;
  color: #251536;
  font-size: 16px;
  font-weight: 900;
}

.desk-bulk-frequency input[type="range"],
.range-row input[type="range"] {
  height: 24px;
  accent-color: #ffc12f;
  cursor: pointer;
}

.desk-bulk-frequency input[type="range"]::-webkit-slider-runnable-track,
.range-row input[type="range"]::-webkit-slider-runnable-track {
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffc12f, #ffd55c);
}

.desk-bulk-frequency input[type="range"]::-webkit-slider-thumb,
.range-row input[type="range"]::-webkit-slider-thumb {
  width: 20px;
  height: 20px;
  margin-top: -7px;
  border: 0;
  border-radius: 50%;
  background: #ffb51f;
  box-shadow: 0 2px 8px rgba(90, 50, 0, .28);
}

.desk-bulk-frequency input[type="range"]::-moz-range-track,
.range-row input[type="range"]::-moz-range-track {
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffc12f, #ffd55c);
}

.desk-bulk-frequency input[type="range"]::-moz-range-thumb,
.range-row input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border: 0;
  border-radius: 50%;
  background: #ffb51f;
  box-shadow: 0 2px 8px rgba(90, 50, 0, .28);
}

.product-image-editor {
  display: grid;
  grid-template-columns: 154px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  background: rgba(255, 255, 255, .62);
}

.product-image-editor img {
  width: 154px;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
  background: #f4effb;
}

.product-image-tools {
  display: grid;
  gap: 7px;
}

.image-tool-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  align-items: center;
}

.image-tool-row .admin-lite {
  width: 100%;
  min-height: 38px;
}

.image-source-check {
  justify-self: start;
  min-height: 24px;
  color: var(--muted);
}

.product-image-tools textarea {
  min-height: 82px;
  resize: vertical;
}

.product-description-field {
  position: relative;
  gap: 3px;
}

.inline-generate {
  width: fit-content;
  margin: 0 0 3px auto;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.detail-control {
  display: grid;
  grid-template-columns: minmax(92px, auto) minmax(0, 1fr) 40px;
  gap: 6px;
  align-items: center;
}

.detail-control span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 850;
}

.detail-delete {
  min-width: 34px;
  padding: 8px;
}

.bottom-actions {
  justify-content: end;
  border-top: 1px solid var(--line);
  padding-top: 10px;
}

.product-form-grid input,
.product-form-grid select,
.product-form-grid textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.product-switches {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  padding: 8px 0;
}

.product-switches label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.product-extra {
  border: 1px dashed var(--line);
  border-radius: 8px;
  padding: 9px;
  background: rgba(255, 255, 255, .55);
}

.product-extra h3,
.desk-product-preview h3 {
  margin: 0 0 4px;
  font-size: 16px;
}

.desk-preview-card {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px;
  background: #fff;
}

.desk-preview-card img {
  width: 120px;
  aspect-ratio: 1 / 1;
  border-radius: 7px;
  object-fit: cover;
}

.product-extra[hidden],
.delivery-fields[hidden],
.pickup-field[hidden],
.check-row[hidden] {
  display: none !important;
}

#deskPromoFields[hidden],
#deskPriceFields[hidden] {
  display: none !important;
}

.products-admin-form {
  background: linear-gradient(180deg, #fff, #fffafd);
}

.desk-product-row {
  grid-template-columns: 50px minmax(0, 1fr) 30px;
}

.desk-row-check {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-style: normal;
  font-weight: 950;
  box-shadow: 0 4px 10px rgba(42, 28, 18, .12);
}

.desk-row-check.product {
  background: #2f9f68;
}

.desk-row-check.promo {
  background: #d72727;
}

.desk-row-check.price {
  background: #ffc12f;
  color: #24113f;
}

.desk-row-check.is-off {
  background: #d8cfdf;
  color: #756681;
}

.product-title-row {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 10px;
  align-items: end;
}

.product-title-row > label:last-child {
  min-width: 0;
}

.product-enabled-toggle {
  display: grid;
  gap: 4px;
  justify-items: center;
}

.product-enabled-toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.product-enabled-toggle span {
  display: grid;
  width: 46px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #efe7f8;
  color: #8b7a9e;
  font-size: 24px;
  font-weight: 950;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .7);
}

.product-enabled-toggle input:checked + span {
  border-color: #2f9f68;
  background: #2f9f68;
  color: #fff;
  box-shadow: 0 8px 18px rgba(47, 159, 104, .25);
}

.product-form-grid label,
.product-extra {
  font-size: 12px;
}

.product-form-grid input,
.product-form-grid select {
  min-height: 42px;
}

.product-form-grid textarea {
  line-height: 1.35;
}

.filter-checks h3,
.product-extra h3 {
  font-size: 18px;
  line-height: 1.1;
}

.filters {
  position: sticky !important;
  top: 0;
  z-index: 30;
}

.catalog-empty {
  grid-column: 1 / -1;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px 16px;
  background: #fff;
  color: var(--muted);
  font-size: 18px;
  font-weight: 850;
  text-align: center;
  box-shadow: 0 12px 30px rgba(75, 40, 166, .08);
}

.desk-preview-card span,
.desk-preview-card p {
  color: var(--muted);
  font-weight: 750;
}

.desk-preview-card strong,
.desk-preview-card b {
  display: block;
  margin-top: 4px;
  font-size: 18px;
}

.desk-stats-panel,
.desk-users-panel {
  display: none;
}

.desk-stats-panel.active,
.desk-users-panel.active {
  display: block;
}

.admin-tabs button {
  flex: 0 0 auto;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 14px;
  background: var(--paper);
  color: var(--text);
  font-weight: 900;
  white-space: nowrap;
}

.admin-tabs button.active {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.admin-tab-panel {
  display: none;
}

.admin-tab-panel.active {
  display: block;
}

.admin-section {
  max-width: 980px;
  margin: 0 auto 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  background: var(--paper);
  box-shadow: 0 4px 16px rgba(42, 28, 18, .08);
}

.admin-section h2,
.admin-section summary {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 900;
}

.user-create {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 7px;
  align-items: center;
  margin-bottom: 8px;
}

.user-create input,
.user-create select,
.admin-user-field input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px;
  background: #fff;
}

.admin-user-field input:disabled,
.admin-user-field button:disabled {
  cursor: not-allowed;
  opacity: .55;
}

.admin-users,
.admin-stats {
  display: grid;
  gap: 7px;
}

.admin-user-card,
.stat-row {
  border-radius: 7px;
  padding: 8px;
  background: #fff;
}

.admin-user-card {
  display: grid;
  gap: 9px;
  border: 1px solid rgba(226, 214, 198, .75);
}

.admin-user-card-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.admin-user-card-head strong {
  font-size: 18px;
  font-weight: 950;
}

.admin-user-card-head span,
.admin-user-field span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.admin-user-field {
  display: grid;
  gap: 4px;
}

.admin-user-field > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 7px;
  align-items: center;
}

.user-delete {
  justify-self: end;
  min-height: 36px;
  padding: 0 4px;
  font-weight: 900;
}

.stat-row {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 7px;
  align-items: center;
}

.stat-row span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.action-row {
  grid-template-columns: 1.05fr .8fr 1.1fr 1.7fr;
}

.action-row span,
.action-row strong {
  min-width: 0;
  overflow-wrap: anywhere;
}

.orders-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.orders-head-actions {
  display: flex;
  gap: 8px;
}

.orders-head-tools {
  display: grid;
  justify-items: end;
  gap: 8px;
  min-width: min(48vw, 260px);
}

.logout-button {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-size: 18px;
  line-height: 1;
}

.orders-head h1 {
  margin: 0;
  font-size: 26px;
}

.orders-head p {
  margin: 2px 0 0;
  color: var(--muted);
}

.order-search {
  width: 100%;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 7px 10px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  font-weight: 750;
}

.orders-filters {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 10px;
}

.store-filter {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 10px;
  background: #fff;
  color: var(--muted);
  font-weight: 850;
}

.store-filter input {
  width: 16px;
  height: 16px;
}

.status-filters {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  margin-bottom: 10px;
}

.status-filters label {
  display: flex;
  align-items: center;
  gap: 5px;
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 6px 7px;
  background: #fff;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.status-filters input {
  width: 16px;
  height: 16px;
}

.orders-list {
  display: grid;
  gap: 10px;
}

.order-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  background: var(--paper);
  box-shadow: 0 4px 16px rgba(42, 28, 18, .08);
}

.order-card.staff-created {
  border-width: 2px;
  border-color: #b89452;
}

.order-card.done {
  border-color: #9ac59d;
  background: #e8f5df;
}

.created-by {
  margin: 6px 0 0;
  color: #7a4d00;
  font-size: 13px;
  font-weight: 850;
}

.link-button {
  display: block;
  border: 0;
  padding: 0;
  background: transparent;
  text-align: left;
  text-decoration: underline;
}

.date-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 14px 0 8px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 900;
}

.date-divider::before,
.date-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

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

.order-top h2 {
  margin: 0;
  font-size: 18px;
}

.order-number {
  display: inline-flex;
  margin-bottom: 3px;
  color: #7a4d00;
  font-size: 12px;
  font-weight: 900;
}

.phone-link {
  color: var(--green);
  font-size: 15px;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
  direction: ltr;
  unicode-bidi: isolate;
}

.phone-inline {
  direction: ltr;
  unicode-bidi: isolate;
}

.order-top p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.order-items {
  display: grid;
  gap: 6px;
  margin-top: 8px;
}

.order-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3px 8px;
  border-radius: 7px;
  padding: 7px;
  background: #fff;
}

.order-item.ready {
  background: #dff1d6;
}

.order-item.cancel {
  background: #f7d9d3;
}

.order-item span {
  font-weight: 800;
}

.order-item small {
  grid-column: 1 / -1;
  color: var(--muted);
}

.order-item button {
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  color: var(--accent-dark);
  font-weight: 900;
}

.order-actions {
  display: flex;
  justify-content: flex-end;
  gap: 7px;
  margin-top: 8px;
}

.notify-button {
  min-width: 40px;
  min-height: 32px;
  border: 1px solid #9ac59d;
  border-radius: 7px;
  background: #e8f5df;
  color: #1f7a3d;
  font-size: 21px;
  font-weight: 900;
  line-height: 1;
}

.notify-button:disabled {
  border-color: var(--line);
  background: #f4f0e8;
  color: var(--muted);
  opacity: 0.65;
}

.trash-button {
  min-width: 40px;
  min-height: 32px;
  border: 1px solid #e3c8c1;
  border-radius: 7px;
  background: #fff;
  color: var(--accent);
  font-weight: 900;
}

.edit-order-body {
  display: grid;
  gap: 9px;
}

.edit-order-body label {
  display: grid;
  gap: 4px;
}

.edit-items {
  display: grid;
  gap: 7px;
}

.edit-item {
  display: grid;
  grid-template-columns: 1fr 80px;
  gap: 7px;
  border-radius: 8px;
  padding: 8px;
  background: #fff;
}

.edit-item strong,
.edit-item [data-edit-field="comment"],
.edit-item .remove {
  grid-column: 1 / -1;
}

.snapshot,
.snapshot-item {
  display: grid;
  gap: 6px;
}

.snapshot p {
  margin: 0;
}

.snapshot-item {
  border-radius: 8px;
  padding: 8px;
  background: #fff;
}

@media (max-width: 520px) {
  .brand-row {
    width: 100vw;
    max-width: 100vw;
    grid-template-columns: minmax(0, 1fr) 132px;
    grid-template-rows: auto;
    gap: 0 6px;
    align-items: center;
    padding: 0 10px 0 16px;
  }

  .brand-row > div:first-child {
    grid-row: 1;
    grid-column: 1;
    width: auto;
    max-width: none;
    min-height: 98px;
    align-items: center;
  }

  .brand-title {
    display: none;
  }

  .brand-logo {
    width: min(56vw, 224px);
    max-width: min(56vw, 224px);
    height: auto;
    object-fit: contain;
    object-position: center;
    transform: translate(-8px, -6px);
  }

  .store-info-row {
    grid-template-columns: minmax(0, 1fr) 58px minmax(0, 1fr);
    width: 100%;
    max-width: 100%;
    gap: 5px;
    padding: 0 8px 7px;
  }

  .store-hours-pill,
  .store-address-pill {
    flex-wrap: wrap;
    justify-content: center;
    gap: 2px 5px;
    min-height: 54px;
    padding: 5px 5px;
    font-size: 9.8px;
  }

  .store-whatsapp-pill {
    min-height: 54px;
    padding: 5px 3px;
    font-size: 0;
  }

  .store-whatsapp-pill img {
    width: 29px;
    height: 29px;
  }

  .top-actions {
    grid-column: 2;
    grid-row: 1;
    position: static;
    display: inline-flex;
    width: 132px;
    height: 40px;
    overflow: visible;
    align-items: center;
    justify-content: end;
    justify-self: end;
    margin-left: 0;
    gap: 7px;
    transform: translateY(10px);
  }

  .header-phone-link {
    position: absolute;
    z-index: 2;
    top: 17px;
    right: 15px;
    display: inline-flex;
    min-width: 132px;
    justify-content: center;
    color: #fff;
    font-size: 15px;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
    text-shadow: 0 2px 8px rgba(25, 7, 52, .38);
    pointer-events: auto;
  }

  .site-language {
    position: static;
    min-width: 86px;
    max-width: 86px;
    width: 86px;
    height: 37px;
    padding: 0 5px;
    font-size: 11.5px;
  }

  .cart-icon-button {
    position: relative;
    min-width: 40px;
    width: 40px;
    height: 40px;
  }

  #openCartTop {
    display: inline-flex !important;
    z-index: 3;
  }

  .cart-glyph {
    width: 32px;
    height: 32px;
  }

  .cart-badge {
    top: 2px;
    right: 2px;
    min-width: 17px;
    height: 17px;
    font-size: 10px;
  }

  body.store-superpet .cart-glyph::before {
    font-size: 24px;
  }

  .store-address-pill {
    overflow-wrap: anywhere;
  }

  .store-switcher {
    display: none;
  }

  .store-tab {
    min-height: 31px;
    padding: 5px 9px;
    font-size: 13px;
  }

  .filter {
    min-height: 30px;
    padding: 5px 10px;
    font-size: 12px;
  }

  .filters {
    width: 100%;
    max-width: 100vw;
    padding: 12px 8px 8px;
  }

  .user-create {
    grid-template-columns: 1fr;
  }

  .native-products-panel.active {
    grid-template-columns: 1fr;
  }

  .desk-product-list {
    max-height: 280px;
  }

  .product-form-grid {
    grid-template-columns: 1fr;
  }

  .products-admin-head,
  .products-form-head {
    display: grid;
  }

  .products-form-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .product-image-editor {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .product-image-editor img {
    width: 100%;
    max-height: 220px;
  }

  .image-tool-row {
    grid-template-columns: 1fr;
  }

  .image-tool-row .admin-lite {
    min-height: 44px;
    font-size: 14px;
  }

  .image-source-check {
    justify-self: stretch;
    align-items: center;
    min-height: 30px;
    font-size: 13px;
  }

  .product-image-tools textarea {
    width: 100%;
    min-height: 96px;
  }

  .variants-head {
    display: grid;
  }

  .variants-head .admin-lite {
    width: 100%;
    min-height: 42px;
  }

  .variant-row {
    grid-template-columns: 1fr;
    border: 1px solid rgba(106, 53, 212, .14);
    border-radius: 8px;
    padding: 8px;
    background: #fff;
  }

  .variant-remove {
    width: 100%;
  }

  .variant-actions {
    grid-template-columns: 1fr 1fr;
  }

  .variant-weight-delete {
    width: 100%;
  }

  .product-detail-grid {
    grid-template-columns: 1fr;
  }

  .detail-control {
    grid-template-columns: minmax(100px, auto) minmax(0, 1fr) 42px;
  }

  .desk-preview-card {
    grid-template-columns: 84px minmax(0, 1fr);
  }

  .desk-preview-card img {
    width: 84px;
  }

  .stat-row {
    grid-template-columns: 1fr;
  }

  .action-row {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 700px) {
  main {
    padding-inline: 18px;
  }

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

  .card.featured {
    grid-column: span 2;
  }

  .cart-panel {
    max-width: 560px;
    margin-left: auto;
    border-radius: 14px 0 0 14px;
  }

  .cart-drawer {
    align-items: stretch;
  }
}

@media (min-width: 1040px) {
  .catalog {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.store-switcher {
  display: flex;
  gap: 7px;
  overflow-x: auto;
  padding: 0 10px 7px;
  scrollbar-width: none;
}

.store-switcher[hidden] {
  display: none;
}

.store-tab {
  flex: 1 0 auto;
  min-height: 33px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 6px 10px;
  background: var(--paper);
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
}

.store-tab.active {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

body.store-freshbox {
  --cart-icon: url("assets/ui/cart-freshbox.png?v=20260629-gpt-cart");
  --bg: #f3ffd8;
  --paper: #ffffff;
  --ink: #102c17;
  --muted: #50733f;
  --line: #b7df55;
  --accent: #219a35;
  --accent-dark: #086425;
  --green: #0f7d31;
  --gold: #ffcc00;
  font-family: "Baloo 2", "Nunito", system-ui, sans-serif;
}

body.store-bakeco {
  --cart-icon: url("assets/ui/cart-bakeco.png?v=20260629-gpt-cart");
  --bg: #21140d;
  --paper: #3a2215;
  --ink: #fff0dc;
  --muted: #d8b992;
  --line: #70472b;
  --accent: #c47a35;
  --accent-dark: #f0b66f;
  --green: #a27e45;
  --gold: #e2a24e;
  font-family: "Merriweather", Georgia, serif;
}

body.store-bloomroom {
  --cart-icon: url("assets/ui/cart-bloomroom.png?v=20260629-gpt-cart");
  --bg: #fff1f6;
  --paper: #fffafd;
  --ink: #48233c;
  --muted: #8c677d;
  --line: #f0cadb;
  --accent: #d46698;
  --accent-dark: #923d69;
  --green: #6d8a6c;
  --gold: #d7a454;
  font-family: "Quicksand", system-ui, sans-serif;
}

body.store-electrohub {
  --cart-icon: url("assets/ui/cart-electrohub.png?v=20260701-electronics");
  --bg: #e8eef5;
  --paper: #f7fbff;
  --ink: #111827;
  --muted: #526274;
  --line: #8ca3b9;
  --accent: #009fd6;
  --accent-dark: #075985;
  --green: #00d5ff;
  --gold: #ffcc00;
  font-family: "Rajdhani", "Rubik", system-ui, sans-serif;
}

.cart-glyph::before,
.cart-glyph::after {
  content: "";
  display: none;
}

.logout-button {
  display: inline-grid;
  position: relative;
  width: 42px;
  height: 40px;
  place-items: center;
  color: inherit;
  font-size: 0;
}

.logout-button::before {
  content: "";
  width: 18px;
  height: 21px;
  border: 2px solid currentColor;
  border-right-width: 5px;
  border-radius: 3px;
}

.logout-button::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 2px;
  background: currentColor;
  transform: translate(2px, 0);
}

body.store-freshbox .card {
  border-width: 0;
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #f7ffe6 100%);
  box-shadow: 0 12px 26px rgba(13, 108, 41, .17);
}

body.store-freshbox .topbar {
  background: linear-gradient(180deg, rgba(244, 255, 218, .98), rgba(232, 250, 184, .96));
}

body.store-freshbox .filter.deal-filter {
  border-color: #ffcc00;
  background: #ffcc00;
  color: #153515;
}

body.store-freshbox .image-wrap {
  background: #dff7b4;
}

body.store-freshbox .add,
body.store-freshbox .checkout {
  border-radius: 999px;
}

body.store-freshbox .title {
  font-family: "Baloo 2", "Nunito", system-ui, sans-serif;
  font-size: 19px;
  line-height: 1.08;
}

body.store-bakeco .card {
  border: 1px solid #70472b;
  border-radius: 6px;
  background: linear-gradient(180deg, #422819 0%, #2f1b11 100%);
  color: #fff0dc;
  box-shadow: 0 14px 30px rgba(21, 11, 6, .34);
}

body.store-bakeco .topbar {
  background: rgba(33, 20, 13, .96);
}

body.store-bakeco .subtitle,
body.store-bakeco .meta,
body.store-bakeco .description {
  color: #d8b992;
}

body.store-bakeco .filter {
  background: #3a2215;
  color: #e9cfae;
}

body.store-bakeco .title {
  font-family: "Merriweather", Georgia, serif;
  font-size: 19px;
  line-height: 1.25;
}

body.store-bakeco .image-wrap {
  background: #4b2d1b;
}

body.store-bakeco .badge {
  border-radius: 999px;
  background: #1b0e08;
  color: #ffd9a2;
}

body.store-bakeco .price {
  color: #ffd08a;
}

body.store-bloomroom .card {
  border: 1px solid rgba(189, 75, 136, .28);
  border-radius: 8px;
  background: linear-gradient(180deg, #fffdfd 0%, #fff3f8 100%);
  box-shadow: 0 16px 34px rgba(130, 39, 85, .13);
}

body.store-bloomroom .topbar {
  background: linear-gradient(180deg, rgba(255, 245, 249, .98), rgba(255, 238, 246, .96));
}

body.store-bloomroom .title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 21px;
  line-height: 1.05;
}

body.store-bloomroom .image-wrap {
  background: #f8e3ed;
}

body.store-bloomroom .badge,
body.store-bloomroom .add,
body.store-bloomroom .checkout {
  border-radius: 999px;
}

body.store-electrohub .topbar {
  background:
    linear-gradient(135deg, rgba(232, 238, 245, .98), rgba(205, 220, 235, .96)),
    repeating-linear-gradient(90deg, transparent 0 18px, rgba(0, 159, 214, .10) 18px 19px);
  border-bottom-color: #7c94aa;
}

body.store-electrohub .site-language,
body.store-electrohub .cart-icon-button,
body.store-electrohub .push-button,
body.store-electrohub .filter,
body.store-electrohub .store-tab,
body.store-electrohub .quantity button,
body.store-electrohub .checkout,
body.store-electrohub .add {
  border-radius: 0;
}

body.store-electrohub .card {
  border: 1px solid #7e95ad;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(230,238,247,.96)),
    repeating-linear-gradient(135deg, transparent 0 14px, rgba(0, 159, 214, .08) 14px 15px);
  box-shadow: 0 18px 34px rgba(15, 35, 58, .18);
}

body.store-electrohub .image-wrap {
  border-radius: 0;
  background: #dbe7f2;
}

body.store-electrohub .title {
  font-family: "Rajdhani", "Rubik", system-ui, sans-serif;
  font-size: 22px;
  line-height: 1;
  text-transform: uppercase;
}

body.store-electrohub .badge {
  border-radius: 0;
  background: #0f172a;
  color: #a5f3fc;
}

body.store-electrohub .price {
  color: #075985;
}

body.store-electrohub .add,
body.store-electrohub .checkout {
  background: linear-gradient(90deg, #075985, #00a6d6);
  color: #fff;
}

body.store-superpet {
  --bg: #f5efff;
  --paper: #fffafd;
  --ink: #24113f;
  --muted: #6d5a83;
  --line: #dfd1f4;
  --accent: #6a35d4;
  --accent-dark: #402078;
  --green: #2f9f68;
  --gold: #f4c743;
  --cart-icon: none;
  background:
    radial-gradient(circle at 18% 4%, rgba(244, 199, 67, .24), transparent 24rem),
    radial-gradient(circle at 92% 12%, rgba(106, 53, 212, .18), transparent 22rem),
    var(--bg);
}

body.store-superpet .topbar {
  background: #46288e;
}

body.store-superpet .brand-logo {
  border-radius: 14px;
}

body.store-superpet .card {
  border-color: rgba(106, 53, 212, .18);
  background: linear-gradient(180deg, #fff, #fff8fd);
  box-shadow: 0 16px 34px rgba(75, 40, 166, .13);
}

body.store-superpet .image-wrap {
  background: linear-gradient(135deg, rgba(106, 53, 212, .16), rgba(244, 199, 67, .2));
}

body.store-superpet .title,
body.store-superpet .price {
  color: #48218d;
}

body.store-superpet .badge,
body.store-superpet .add,
body.store-superpet .checkout,
body.store-superpet .filter.active,
body.store-superpet .store-tab.active {
  background: linear-gradient(135deg, #6a35d4, #8e55e8);
  color: #fff;
}

body.store-superpet .cart-glyph::before {
  content: "🐾";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #6a35d4;
  font-size: 28px;
  line-height: 1;
}

.product-details,
.product-modal-details {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 9px 0 0;
}

.product-details span,
.product-modal-details span {
  display: inline-flex;
  max-width: 100%;
  align-items: center;
  border: 1px solid rgba(106, 53, 212, .18);
  border-radius: 999px;
  padding: 5px 8px;
  background: rgba(106, 53, 212, .08);
  color: #4a2a78;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.15;
}

.variant-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 2px;
}

.variant-chip {
  min-height: 29px;
  border: 1px solid rgba(106, 53, 212, .18);
  border-radius: 999px;
  padding: 5px 10px;
  background: #f3f0f7;
  color: #786991;
  font-size: 12px;
  font-weight: 850;
  line-height: 1.1;
  cursor: pointer;
}

.variant-chip.active {
  border-color: #6a35d4;
  background: #6a35d4;
  color: #fff;
  box-shadow: 0 4px 12px rgba(106, 53, 212, .22);
}

.product-modal-details {
  margin: 12px 0 2px;
}

.product-modal-details span {
  font-size: 12px;
}

.admin-entry-hint {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  background: rgba(5, 10, 18, .58);
}

.admin-entry-hint.open {
  display: block;
}

.admin-entry-card {
  position: absolute;
  left: clamp(26px, 10vw, 140px);
  top: clamp(250px, 35vh, 420px);
  display: grid;
  max-width: 290px;
  gap: 10px;
  color: #fff;
}

.admin-entry-arrow {
  position: fixed;
  z-index: 91;
  left: 20px;
  top: 58px;
  width: 92px;
  height: auto;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 10px 16px rgba(0,0,0,.32));
}

.admin-entry-card p {
  margin: 0 0 0 0;
  padding: 14px 16px;
  border: 2px solid rgba(255,255,255,.72);
  border-radius: 14px;
  background: rgba(12, 18, 28, .82);
  font-size: 17px;
  line-height: 1.18;
  font-weight: 850;
  filter: drop-shadow(0 18px 28px rgba(0,0,0,.28));
}

.admin-entry-card button {
  justify-self: start;
  margin-left: 0;
  border: 0;
  border-radius: 999px;
  padding: 9px 15px;
  background: #ffcc00;
  color: #17130a;
  font-weight: 900;
  filter: drop-shadow(0 14px 22px rgba(0,0,0,.22));
}

@media (max-width: 680px) {
  .admin-entry-card {
    left: 13vw;
    top: 32vh;
    max-width: min(74vw, 310px);
  }

  .admin-entry-arrow {
    left: 18px;
    top: 64px;
    width: 86px;
  }

  .admin-entry-card p {
    font-size: 24px;
    line-height: 1.22;
    padding: 18px 20px;
  }

  .admin-entry-card button {
    padding: 13px 28px;
    font-size: 22px;
  }
}

.login-password-hint {
  color: var(--accent-dark);
  font-size: .9em;
  font-weight: 900;
}

.home-page {
  min-height: 100vh;
  background: #ffcc00;
  color: #17130a;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.home-page.home-rtl {
  font-family: "Noto Sans Hebrew", "Manrope", system-ui, sans-serif;
}

.home-shell {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  justify-content: flex-start;
  gap: clamp(34px, 5vw, 76px);
  width: min(1500px, 100%);
  margin: 0 auto;
  padding: 34px clamp(16px, 4vw, 56px) 54px;
}

.home-header {
  position: relative;
  display: flex;
  justify-content: center;
  padding: clamp(20px, 4vw, 46px) 0 clamp(18px, 3vw, 38px);
}

.home-logo-button {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  animation: logoDrop .72s cubic-bezier(.2, .9, .2, 1.18) both;
}

.home-logo {
  display: block;
  width: min(180px, 32vw);
  height: auto;
}

.home-language {
  position: absolute;
  top: 12px;
  right: 0;
  z-index: 5;
  display: grid;
  justify-items: end;
  padding: 4px 0;
  background: transparent;
}

.home-language-current {
  min-width: 44px;
  border-radius: 999px;
  padding: 4px 18px 4px 8px;
  background: rgba(255, 204, 0, .78);
  backdrop-filter: blur(8px);
}

.home-language-current::after {
  content: "";
  position: absolute;
  right: 7px;
  top: 50%;
  width: 0;
  height: 0;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  border-top: 5px solid currentColor;
  transform: translateY(-35%);
}

.home-language-menu {
  position: absolute;
  top: calc(100% + 7px);
  right: 0;
  display: none;
  min-width: 120px;
  flex-direction: column;
  align-items: stretch;
  gap: 4px;
  border: 1px solid rgba(23, 19, 10, .12);
  border-radius: 14px;
  padding: 8px;
  background: rgba(255, 253, 241, .94);
  box-shadow: 0 18px 38px rgba(23, 19, 10, .16);
}

.home-language.open .home-language-menu {
  display: flex;
}

.home-language button {
  position: relative;
  height: auto;
  border: 0;
  padding: 0;
  background: transparent;
  color: #17130a;
  font-size: 13px;
  font-weight: 800;
  opacity: .76;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.home-language-menu button {
  min-height: 32px;
  padding: 0 8px;
  text-align: left;
  text-decoration: none;
}

.home-language button.active {
  opacity: 1;
  text-decoration-thickness: 2px;
}

.home-language button:hover {
  opacity: 1;
}

.home-stores {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2.2vw, 28px);
}

.home-card {
  position: relative;
  display: block;
  min-height: 0;
  overflow: hidden;
  border: 2px solid rgba(23, 19, 10, .86);
  border-radius: 10px;
  background: transparent;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 18px 42px rgba(23, 19, 10, .22);
  animation: cardLaunch .78s cubic-bezier(.18, .94, .2, 1.08) both;
  transform-origin: 50% 90%;
}

.home-card:nth-child(2) {
  animation-delay: .12s;
}

.home-card:nth-child(3) {
  animation-delay: .24s;
}

.home-card:nth-child(4) {
  animation-delay: .36s;
}

.home-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1792 / 1024;
  object-fit: cover;
  transition: transform .22s ease;
}

.home-card:hover img {
  transform: scale(1.035);
}

.home-pricing,
.home-included {
  width: 100%;
  padding: 0;
  background: transparent;
}

.home-section-head {
  max-width: 940px;
  margin: 0 auto clamp(24px, 4vw, 46px);
  text-align: center;
}

.home-section-head h1,
.home-section-head h2 {
  margin: 0;
  color: #17130a;
  font-size: clamp(34px, 4.8vw, 70px);
  line-height: .98;
  font-weight: 800;
  letter-spacing: 0;
}

.home-section-head p {
  margin: 10px auto 0;
  color: rgba(23, 19, 10, .72);
  font-size: clamp(16px, 1.45vw, 22px);
  font-weight: 600;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
}

.price-card {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  border: 1px solid rgba(23, 19, 10, .14);
  border-radius: 18px;
  padding: clamp(20px, 2vw, 30px);
  background: rgba(255, 253, 241, .78);
  color: #17130a;
  box-shadow: 0 22px 60px rgba(23, 19, 10, .10);
  backdrop-filter: blur(10px);
}

.price-card.recommended {
  border-color: rgba(23, 19, 10, .9);
  background: #17130a;
  color: #fff7d1;
  transform: translateY(-8px);
  box-shadow: 0 32px 78px rgba(23, 19, 10, .22);
}

.price-card-top {
  display: grid;
  gap: 14px;
  margin-bottom: 20px;
}

.price-card h3 {
  margin: 0;
  font-size: clamp(31px, 2.8vw, 46px);
  line-height: .95;
  font-weight: 800;
}

.plan-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  border: 1px solid rgba(23, 19, 10, .15);
  border-radius: 999px;
  padding: 4px;
  background: rgba(255, 255, 255, .55);
}

.price-card.recommended .plan-toggle {
  border-color: rgba(255, 204, 0, .36);
  background: rgba(255, 255, 255, .08);
}

.plan-toggle button {
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  font-size: 13px;
  font-weight: 800;
  opacity: .7;
}

.plan-toggle button.active {
  background: #17130a;
  color: #ffcc00;
  opacity: 1;
}

.price-card.recommended .plan-toggle button.active {
  background: #ffcc00;
  color: #17130a;
}

.price-main,
.price-sub {
  display: block;
  color: inherit;
  font-size: clamp(31px, 3.1vw, 48px);
  line-height: 1.04;
  font-weight: 800;
}

.price-main {
  min-height: 100px;
}

.price-sub {
  margin-top: 6px;
  color: rgba(23, 19, 10, .64);
  font-size: clamp(19px, 1.65vw, 26px);
  font-weight: 700;
}

.price-card.recommended .price-sub {
  color: #ffcc00;
}

.price-card p {
  min-height: 50px;
  margin: 16px 0 18px;
  color: rgba(23, 19, 10, .68);
  font-size: 15px;
  font-weight: 600;
}

.price-card.recommended p {
  color: #f7df8a;
}

.price-card ul,
.included-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-card li,
.included-card li {
  position: relative;
  padding-left: 17px;
  color: inherit;
  font-size: 14px;
  font-weight: 600;
}

.price-card li + li,
.included-card li + li {
  margin-top: 7px;
}

.price-card li::before,
.included-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: currentColor;
  opacity: .42;
}

.home-rtl .home-section-head,
.home-rtl .pricing-group,
.home-rtl .price-card,
.home-rtl .included-card,
.home-rtl .home-note,
.home-rtl .home-phone-panel {
  text-align: right;
}

.home-rtl .price-card li,
.home-rtl .included-card li,
.home-rtl .home-note-list li {
  padding-right: 17px;
  padding-left: 0;
}

.home-rtl .price-card li::before,
.home-rtl .included-card li::before,
.home-rtl .home-note-list li::before {
  right: 0;
  left: auto;
}

.home-rtl .price-badge {
  align-self: flex-start;
}

.price-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 30px;
  border: 1px solid #17130a;
  border-radius: 999px;
  padding: 0 14px;
  background: #17130a;
  color: #ffcc00;
  font-size: 16px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}

.price-card.recommended .price-button {
  border-color: #ffcc00;
  background: #ffcc00;
  color: #17130a;
}

.price-badge {
  align-self: flex-start;
  margin-bottom: 12px;
  border-radius: 999px;
  padding: 7px 11px;
  background: #ffcc00;
  color: #17130a;
  font-size: 13px;
  font-weight: 800;
}

.home-note {
  max-width: 1120px;
  margin: clamp(24px, 3vw, 38px) auto 0;
  border-top: 1px solid rgba(23, 19, 10, .22);
  padding: 18px 0 0;
  background: transparent;
  color: rgba(23, 19, 10, .72);
  font-size: 15px;
  font-weight: 600;
}

.home-note-list h3 {
  margin: 0 0 12px;
  font-size: 20px;
}

.home-note-list ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-note-list li {
  position: relative;
  padding-left: 18px;
}

.home-note-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #17130a;
  opacity: .45;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.6vw, 24px);
}

.included-card {
  height: 620px;
  border: 1px solid rgba(23, 19, 10, .14);
  border-radius: 18px;
  padding: clamp(15px, 1.6vw, 22px);
  background: rgba(255, 253, 241, .72);
  color: #17130a;
  cursor: pointer;
  overflow: hidden;
  transition: transform .22s ease, background .22s ease, color .22s ease;
}

.included-art {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  margin-bottom: 18px;
  border-radius: 14px;
  object-fit: cover;
  background: #17130a;
  box-shadow: 0 18px 34px rgba(23, 19, 10, .12);
}

.included-card:hover,
.included-card:focus,
.included-card.open {
  background: #17130a;
  color: #fff7d1;
  transform: translateY(-4px);
  outline: none;
}

.included-card h3 {
  margin: 0;
  font-size: clamp(22px, 1.8vw, 29px);
  line-height: 1.06;
}

.included-card p {
  margin: 10px 0 14px;
  color: #5b4200;
  font-size: 15px;
  font-weight: 820;
}

.included-card:hover p,
.included-card:focus p,
.included-card.open p {
  color: #f7df8a;
}

.included-card ul {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height .28s ease, opacity .22s ease;
}

.included-card:hover ul,
.included-card:focus ul,
.included-card.open ul {
  max-height: 390px;
  opacity: 1;
  overflow: auto;
}

.home-photo {
  width: 100%;
  padding: 0;
  background: transparent;
}

.photo-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
}

.photo-gallery-card {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(23, 19, 10, .14);
  border-radius: 18px;
  padding: 12px;
  background: rgba(255, 253, 241, .76);
  color: #17130a;
  text-align: left;
  box-shadow: 0 22px 60px rgba(23, 19, 10, .10);
}

.photo-gallery-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 14px;
  object-fit: cover;
}

.photo-gallery-card span {
  padding: 0 6px;
  font-size: clamp(24px, 2.2vw, 36px);
  line-height: 1.05;
  font-weight: 800;
}

.photo-gallery-card small {
  padding: 0 6px 6px;
  color: rgba(23, 19, 10, .62);
  font-size: 14px;
  font-weight: 750;
}

.photo-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(10px, 2vw, 22px);
  background: rgba(12, 10, 7, .82);
}

.photo-modal.open {
  display: flex;
}

.photo-modal-panel {
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 12px;
  width: min(1180px, 100%);
  max-height: 94vh;
  border-radius: 18px;
  padding: 14px;
  background: #11100c;
  color: #fff7d1;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .45);
}

.photo-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 48px 0 4px;
}

.photo-modal-head h2 {
  margin: 0;
  font-size: clamp(20px, 2vw, 30px);
}

.photo-modal-head span {
  color: rgba(255, 247, 209, .68);
  font-weight: 800;
}

.photo-modal-close {
  position: absolute;
  top: 8px;
  right: 10px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  color: #fff7d1;
  font-size: 28px;
  line-height: 1;
}

.photo-modal-stage {
  position: relative;
  display: grid;
  min-height: 0;
  place-items: center;
  overflow: hidden;
  border-radius: 14px;
  background: #050504;
}

.photo-modal-stage img {
  display: block;
  max-width: 100%;
  max-height: min(68vh, 720px);
  object-fit: contain;
}

.photo-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 44px;
  height: 60px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 204, 0, .86);
  color: #17130a;
  font-size: 42px;
  line-height: 1;
  transform: translateY(-50%);
}

.photo-nav.prev {
  left: 12px;
}

.photo-nav.next {
  right: 12px;
}

.photo-modal-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 2px 2px 4px;
}

.photo-modal-thumbs button {
  flex: 0 0 auto;
  width: 82px;
  height: 62px;
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 0;
  background: transparent;
  opacity: .65;
  overflow: hidden;
}

.photo-modal-thumbs button.active {
  border-color: #ffcc00;
  opacity: 1;
}

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

.home-contacts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 30px;
  color: #17130a;
}

.home-contacts a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border-bottom: 2px solid currentColor;
  color: #17130a;
  font-size: clamp(19px, 2vw, 25px);
  font-weight: 900;
  text-decoration: none;
}

.home-contacts a:hover {
  color: #5b4200;
}

.home-phone-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(23, 19, 10, .42);
}

.home-lang-modal {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(23, 19, 10, .42);
}

.home-lang-modal.open {
  display: flex;
}

.home-lang-panel {
  width: min(440px, 100%);
  border-radius: 18px;
  padding: 24px;
  background: #fffdf1;
  color: #17130a;
  box-shadow: 0 24px 60px rgba(23, 19, 10, .28);
}

.home-lang-panel h2 {
  margin: 0 0 8px;
  font-size: 28px;
}

.home-lang-panel p {
  margin: 0 0 18px;
  color: rgba(23, 19, 10, .68);
  font-weight: 650;
}

.home-lang-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.home-lang-options button {
  min-height: 48px;
  border: 1px solid rgba(23, 19, 10, .18);
  border-radius: 999px;
  background: #ffcc00;
  color: #17130a;
  font-weight: 800;
}

.home-phone-modal.open {
  display: flex;
}

.home-phone-panel {
  position: relative;
  width: min(430px, 100%);
  border: 3px solid #17130a;
  border-radius: 8px;
  padding: 24px;
  background: #fff7d1;
  color: #17130a;
  box-shadow: 0 24px 60px rgba(23, 19, 10, .35);
  animation: modalPop .28s cubic-bezier(.2, .9, .2, 1.2) both;
}

.home-phone-panel h2 {
  margin: 0 0 8px;
  font-size: 28px;
}

.home-phone-panel p {
  margin: 0 0 18px;
  color: #5b4200;
  font-weight: 700;
}

.home-phone-panel label {
  display: grid;
  gap: 8px;
  font-weight: 900;
}

.home-phone-panel input {
  width: 100%;
  height: 48px;
  border: 2px solid #17130a;
  border-radius: 8px;
  padding: 0 12px;
  background: #fff;
  color: #17130a;
}

.home-phone-save {
  width: 100%;
  min-height: 48px;
  margin-top: 16px;
  border: 0;
  border-radius: 8px;
  background: #17130a;
  color: #ffcc00;
  font-weight: 900;
}

.home-phone-close {
  position: absolute;
  right: 10px;
  top: 8px;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  color: #17130a;
  font-size: 30px;
  line-height: 1;
}

@keyframes logoDrop {
  from {
    opacity: 0;
    transform: translateY(-28px) scale(.82);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes cardLaunch {
  from {
    opacity: 0;
    transform: translateY(54px) scale(.9) rotateX(12deg);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1) rotateX(0);
    filter: blur(0);
  }
}

@keyframes modalPop {
  from {
    opacity: 0;
    transform: translateY(18px) scale(.94);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes productReveal {
  from {
    opacity: 0;
    transform: translateY(28px) scale(.96);
    filter: blur(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

body.store-freshbox .catalog .card {
  animation: freshProductPop .5s cubic-bezier(.16, 1.18, .28, 1) both;
}

body.store-bakeco .catalog .card {
  animation: bakeryProductRise .58s cubic-bezier(.22, .88, .22, 1) both;
}

body.store-bloomroom .catalog .card {
  animation: none;
}

body.store-freshbox .catalog .card:nth-child(2n),
body.store-bakeco .catalog .card:nth-child(2n) {
  animation-delay: .05s;
}

body.store-freshbox .catalog .card:nth-child(3n),
body.store-bakeco .catalog .card:nth-child(3n) {
  animation-delay: .1s;
}

body.store-freshbox .catalog .card:nth-child(4n),
body.store-bakeco .catalog .card:nth-child(4n) {
  animation-delay: .15s;
}

@keyframes freshProductPop {
  from {
    opacity: 0;
    transform: translateY(18px) scale(.9) rotate(-1deg);
    filter: saturate(.85) blur(5px);
  }
  72% {
    transform: translateY(-3px) scale(1.025) rotate(.3deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0);
    filter: saturate(1) blur(0);
  }
}

@keyframes bakeryProductRise {
  from {
    opacity: 0;
    transform: translateY(34px);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-logo-button,
  .home-card,
  body.store-freshbox .catalog .card,
  body.store-bakeco .catalog .card,
  .home-phone-panel {
    animation: none;
  }

  .home-card img {
    transition: none;
  }
}

@media (max-width: 860px) {
  .home-shell {
    justify-content: flex-start;
    gap: 28px;
    padding-top: 18px;
  }

  .home-logo {
    width: min(140px, 34vw);
  }

  .home-language {
    position: absolute;
    top: 6px;
    right: 0;
    margin-top: 0;
  }

  .home-header {
    align-items: center;
    padding-top: 36px;
  }

  .home-stores {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .home-card img {
    height: auto;
  }

  .home-pricing,
  .home-included {
    padding: 0;
  }

  .pricing-grid,
  .included-grid,
  .photo-gallery-grid {
    grid-template-columns: 1fr;
  }

  .price-card.recommended {
    transform: none;
  }

  .price-card p {
    min-height: 0;
  }

  .price-card {
    border-radius: 16px;
  }

  .price-main {
    min-height: 78px;
  }

  .home-note-list ul {
    grid-template-columns: 1fr;
  }

  .included-card {
    height: auto;
    min-height: 0;
  }

  .included-art {
    aspect-ratio: 16 / 9;
  }

  .included-card:hover,
  .included-card:focus {
    transform: none;
  }

  .included-card ul {
    max-height: 0;
  }

  .included-card:hover ul,
  .included-card:focus ul {
    max-height: 0;
    opacity: 0;
  }

  .included-card.open {
    background: #17130a;
    color: #fff7d1;
  }

  .included-card.open ul {
    max-height: 720px;
    opacity: 1;
    overflow: visible;
  }

  .photo-modal {
    padding: 8px;
  }

  .photo-modal-panel {
    max-height: 96vh;
    border-radius: 14px;
    padding: 10px;
  }

  .photo-modal-stage img {
    max-height: 58vh;
  }

  .photo-nav {
    width: 36px;
    height: 48px;
    font-size: 34px;
  }

  .photo-modal-thumbs button {
    width: 68px;
    height: 52px;
  }

  .home-contacts {
    align-items: stretch;
    flex-direction: column;
  }
}

/* Final WoWShuk overrides: keep after legacy store themes. */
body.store-wowshuk .language-gate-card {
  border-color: #ef8b73;
  background: #fffaf0;
  box-shadow: 0 28px 90px rgba(35, 77, 42, .3);
}

body.store-wowshuk .language-gate-card img {
  mix-blend-mode: multiply;
}

body.store-wowshuk .language-gate-actions button {
  background: linear-gradient(135deg, #17852c, #0d5f21);
  box-shadow: 0 8px 18px rgba(23, 133, 44, .22);
}

body.store-wowshuk .language-gate-actions button[data-first-language="he"] {
  grid-column: 1 / -1;
  justify-self: center;
  width: 72%;
  min-height: 62px;
  font-size: 1.3rem;
}

body.store-wowshuk .card {
  border-color: #dce8d8;
  background: #fff;
  box-shadow: 0 10px 26px rgba(28, 76, 36, .08);
}

body.store-wowshuk .filter.active,
body.store-wowshuk .add,
body.store-wowshuk .checkout {
  background: linear-gradient(135deg, #17852c, #0d5f21);
  color: #fff;
}

body.store-wowshuk {
  --bg: #edf7ec;
  --paper: #f7fcf5;
  --line: #cfe2ce;
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 119, 42, .12), transparent 28rem),
    radial-gradient(circle at 96% 7%, rgba(36, 157, 70, .14), transparent 32rem),
    #edf7ec;
}

body.store-wowshuk .topbar,
body.store-wowshuk .filters {
  background: rgba(238, 248, 235, .97);
}

body.store-wowshuk .filters {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 20px rgba(21, 92, 42, .13);
}

body.store-wowshuk .brand-row {
  grid-template-columns: minmax(390px, 520px) minmax(0, 1fr) auto auto;
  gap: 18px;
  padding: 8px 24px 6px 24px;
}

body.store-wowshuk .brand-row > div:first-child {
  min-height: 178px;
}

body.store-wowshuk .brand-logo {
  width: min(32vw, 485px);
  max-width: min(32vw, 485px);
  max-height: 168px;
}

body.store-wowshuk .header-phone-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid #9bc99d;
  border-radius: 999px;
  padding: 0 17px;
  background: #dff1db;
  color: #0d6c29;
  font-size: 17px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(25, 116, 49, .12);
}

body.store-wowshuk .language-gate {
  background: rgba(31, 74, 43, .62);
}

body.store-wowshuk .language-gate-card,
body.store-wowshuk .card,
body.store-wowshuk .cart-panel,
body.store-wowshuk .modal-panel {
  background: #f7fcf5;
}

body.store-wowshuk .language-gate-card h2 {
  color: #166d2d;
}

body.store-wowshuk .language-gate-card p {
  color: #52725a;
}

body.store-wowshuk .image-wrap {
  background: linear-gradient(145deg, #f8fff5, #e8f5e5);
}

body.store-wowshuk .filter,
body.store-wowshuk .catalog-search input,
body.store-wowshuk .catalog-search button {
  background: #f8fff6;
}

body.store-wowshuk .delivery-info-pill {
  flex-direction: column;
  gap: 1px;
}

body.store-wowshuk .store-hours-pill span,
body.store-wowshuk .delivery-info-pill span {
  display: block;
  line-height: 1.12;
}

body.store-wowshuk .store-hours-pill span:first-child,
body.store-wowshuk .delivery-info-pill span:first-child {
  color: #0d6c29;
  font-weight: 900;
}

body.store-wowshuk .delivery-info-pill span:last-child {
  color: #cf2d18;
}

body.store-wowshuk .badge,
body.store-wowshuk .deal-filter.active,
body.store-wowshuk .featured .badge {
  background: linear-gradient(135deg, #f05b2c, #cf2d18);
  color: #fff;
}

body.store-wowshuk {
  font-family: "Assistant", Arial, sans-serif;
}

body.store-wowshuk .primary-filter-row {
  align-items: center;
}

body.store-wowshuk .primary-filter-row .catalog-search {
  flex: 1 1 260px;
  max-width: 420px;
}

body.store-wowshuk .primary-filter-row .filter {
  min-height: 42px;
  padding-inline: 22px;
  font-size: 16px;
}

body.store-wowshuk .category-filter-row {
  gap: 7px;
  padding-top: 1px;
}

body.store-wowshuk .category-filter-row .filter {
  min-height: 34px;
  padding: 6px 13px;
  font-size: 13px;
}

body.store-wowshuk .controls {
  grid-template-columns: 38px minmax(0, 1fr) 38px;
  gap: 4px;
  width: 100%;
}

body.store-wowshuk .controls .step {
  width: 38px;
  min-width: 38px;
  padding: 0;
}

body.store-wowshuk .quantity-edit {
  min-width: 0;
  gap: 3px;
  white-space: nowrap;
}

body.store-wowshuk .quantity-input {
  width: min(58px, 62%);
  min-width: 42px;
  padding-inline: 3px;
}

body.store-wowshuk .quantity-edit span {
  flex: 0 0 auto;
  font-size: .88em;
}

body.store-wowshuk .title {
  overflow-wrap: anywhere;
}

@media (max-width: 720px) {
  body.store-wowshuk .brand-row {
    grid-template-columns: minmax(0, 1fr) 132px;
    gap: 0 6px;
    padding: 0 10px 0 10px;
  }

  body.store-wowshuk .brand-row > div:first-child {
    min-height: 112px;
  }

  body.store-wowshuk .brand-logo {
    width: min(64vw, 255px);
    max-width: min(64vw, 255px);
    max-height: 104px;
    transform: translate(-4px, 0);
  }

  body.store-wowshuk .header-phone-link {
    position: absolute;
    top: 9px;
    right: 10px;
    min-width: 132px;
    min-height: 32px;
    padding: 0 8px;
    color: #0d6c29;
    font-size: 14px;
    text-shadow: none;
  }

  body.store-wowshuk .top-actions {
    transform: translateY(20px);
  }

  body.store-wowshuk .primary-filter-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    width: 100%;
    gap: 6px;
  }

  body.store-wowshuk .primary-filter-row .catalog-search {
    min-width: 0;
    max-width: none;
  }

  body.store-wowshuk .primary-filter-row .filter {
    min-height: 38px;
    padding-inline: 12px;
    font-size: 14px;
  }

  body.store-wowshuk .category-filter-row .filter {
    min-height: 31px;
    padding: 5px 10px;
    font-size: 12px;
  }

  body.store-wowshuk .card .content {
    padding-inline: 10px;
  }

  body.store-wowshuk .controls {
    grid-template-columns: 34px minmax(0, 1fr) 34px;
    gap: 3px;
  }

  body.store-wowshuk .controls .step {
    width: 34px;
    min-width: 34px;
    height: 40px;
  }

  body.store-wowshuk .quantity-input {
    width: min(50px, 60%);
    min-width: 38px;
    font-size: 15px;
  }

  body.store-wowshuk .quantity-edit span {
    font-size: 12px;
  }
}

/* WoWShuk header v2: unified controls and no legacy-theme flash. */
html {
  background: #edf7ec;
}

body.store-wowshuk .language-gate-actions button,
body.store-wowshuk .language-gate-actions button[data-first-language="he"] {
  height: 52px;
  min-height: 52px;
  max-height: 52px;
  font-size: 18px;
}

body.store-wowshuk .language-gate-actions button[data-first-language="he"] {
  grid-column: 1 / -1;
  justify-self: center;
  width: 72%;
}

body.store-wowshuk .brand-row {
  direction: ltr;
  grid-template-columns: minmax(220px, 360px) minmax(0, 1fr);
  gap: 12px;
  padding: 6px 18px 5px 0;
}

body.store-wowshuk .brand-row > div:first-child {
  min-height: 120px;
  justify-content: flex-start;
}

body.store-wowshuk .brand-title {
  display: none;
}

body.store-wowshuk .brand-logo {
  width: min(24vw, 340px);
  max-width: min(24vw, 340px);
  max-height: 118px;
  object-position: left center;
  transform: translateX(-30px);
}

body.store-wowshuk .top-actions {
  direction: ltr;
  display: grid;
  grid-template-columns: 46px minmax(150px, 190px) minmax(104px, 128px) 46px;
  align-items: stretch;
  justify-content: end;
  justify-self: end;
  gap: 8px;
  transform: none;
}

body.store-wowshuk .header-whatsapp-link,
body.store-wowshuk .header-phone-link,
body.store-wowshuk .site-language,
body.store-wowshuk .cart-icon-button {
  position: static;
  width: auto;
  height: 46px;
  min-height: 46px;
  max-height: 46px;
  margin: 0;
  box-sizing: border-box;
  border: 1px solid #9bc99d;
  border-radius: 12px;
  background: #f7fcf5;
  box-shadow: 0 5px 14px rgba(25, 116, 49, .1);
}

body.store-wowshuk .header-whatsapp-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

body.store-wowshuk .header-whatsapp-link img {
  display: block;
  width: 28px;
  height: 28px;
}

body.store-wowshuk .header-phone-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  padding: 0 14px;
  color: #0d6c29;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

body.store-wowshuk .site-language {
  max-width: none;
  min-width: 104px;
  padding: 0 8px;
  color: #174d27;
  font-size: 14px;
}

body.store-wowshuk .cart-icon-button {
  min-width: 46px;
  padding: 0;
}

body.store-wowshuk .store-info-row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  padding: 0 12px 10px;
}

body.store-wowshuk .store-hours-pill,
body.store-wowshuk .store-address-pill {
  min-height: 68px;
  border-color: #bfd8bd;
  border-radius: 0;
  background: #f7fcf5;
}

body.store-wowshuk .store-hours-pill {
  border-radius: 13px 0 0 13px;
}

body.store-wowshuk .store-address-pill {
  margin-left: -1px;
  border-radius: 0 13px 13px 0;
}

@media (max-width: 720px) {
  body.store-wowshuk .brand-row {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto;
    gap: 2px;
    padding: 2px 8px 7px 0;
  }

  body.store-wowshuk .brand-row > div:first-child {
    min-height: 82px;
  }

  body.store-wowshuk .brand-logo {
    width: min(46vw, 178px);
    max-width: min(46vw, 178px);
    max-height: 78px;
    transform: translateX(-18px);
  }

  body.store-wowshuk .top-actions {
    grid-column: 1;
    grid-row: 2;
    grid-template-columns: 42px minmax(122px, 1.35fr) minmax(88px, .9fr) 42px;
    justify-self: stretch;
    width: 100%;
    gap: 6px;
    padding-left: 8px;
  }

  body.store-wowshuk .header-whatsapp-link,
  body.store-wowshuk .header-phone-link,
  body.store-wowshuk .site-language,
  body.store-wowshuk .cart-icon-button {
    height: 42px;
    min-height: 42px;
    max-height: 42px;
    border-radius: 10px;
  }

  body.store-wowshuk .header-phone-link {
    min-width: 0;
    padding: 0 7px;
    font-size: 13px;
  }

  body.store-wowshuk .site-language {
    min-width: 0;
    font-size: 13px;
  }

  body.store-wowshuk .header-whatsapp-link img {
    width: 26px;
    height: 26px;
  }

  body.store-wowshuk .store-info-row {
    padding-inline: 7px;
  }

  body.store-wowshuk .store-hours-pill,
  body.store-wowshuk .store-address-pill {
    min-height: 78px;
    padding: 6px 5px;
    font-size: 10px;
  }
}

/* WoWShuk compact header v3. */
body.store-wowshuk .brand-row {
  grid-template-columns: minmax(190px, 250px) minmax(0, 1fr);
  gap: 8px;
  padding: 3px 14px 2px 0;
}

body.store-wowshuk .brand-row > div:first-child {
  min-height: 82px;
}

body.store-wowshuk .brand-logo {
  width: min(19vw, 230px);
  max-width: min(19vw, 230px);
  max-height: 78px;
  transform: translateX(-18px);
}

body.store-wowshuk .top-actions {
  grid-template-columns: minmax(126px, 158px) minmax(96px, 118px) 42px;
  gap: 6px;
}

body.store-wowshuk .header-phone-link,
body.store-wowshuk .site-language,
body.store-wowshuk .cart-icon-button {
  height: 42px;
  min-height: 42px;
  max-height: 42px;
  border-radius: 10px;
}

body.store-wowshuk .header-phone-link {
  min-width: 126px;
  padding-inline: 10px;
  font-size: 14px;
}

body.store-wowshuk .cart-icon-button {
  position: relative;
  min-width: 42px;
}

body.store-wowshuk .cart-badge {
  top: -7px;
  right: -6px;
  z-index: 2;
}

body.store-wowshuk .store-info-row {
  align-items: start;
  gap: 0;
  padding: 1px 8px 5px;
}

body.store-wowshuk .store-hours-pill,
body.store-wowshuk .store-address-pill {
  min-height: 0;
  border: 0;
  border-radius: 0;
  padding: 2px 7px;
  background: transparent;
  box-shadow: none;
  font-size: 11px;
  line-height: 1.05;
}

body.store-wowshuk .store-address-pill {
  margin: 0;
  border-left: 1px solid rgba(86, 138, 91, .26);
}

@media (max-width: 720px) {
  body.store-wowshuk .brand-row {
    grid-template-columns: 108px minmax(0, 1fr);
    grid-template-rows: 66px;
    align-items: center;
    gap: 2px;
    padding: 2px 7px 1px 0;
  }

  body.store-wowshuk .brand-row > div:first-child {
    grid-column: 1;
    grid-row: 1;
    min-height: 66px;
  }

  body.store-wowshuk .brand-logo {
    width: 112px;
    max-width: 112px;
    max-height: 64px;
    transform: translateX(-10px);
  }

  body.store-wowshuk .top-actions {
    grid-column: 2;
    grid-row: 1;
    grid-template-columns: minmax(108px, 1fr) minmax(82px, 100px) 40px;
    align-items: center;
    gap: 5px;
    width: 100%;
    padding: 0;
  }

  body.store-wowshuk .header-phone-link,
  body.store-wowshuk .site-language,
  body.store-wowshuk .cart-icon-button {
    height: 40px;
    min-height: 40px;
    max-height: 40px;
    border-radius: 9px;
  }

  body.store-wowshuk .header-phone-link {
    min-width: 0;
    padding-inline: 5px;
    font-size: 12px;
  }

  body.store-wowshuk .site-language {
    font-size: 12px;
  }

  body.store-wowshuk .cart-icon-button {
    min-width: 40px;
  }

  body.store-wowshuk .store-info-row {
    padding: 0 5px 4px;
  }

  body.store-wowshuk .store-hours-pill,
  body.store-wowshuk .store-address-pill {
    min-height: 0;
    padding: 1px 4px;
    font-size: 8.8px;
    line-height: 1.03;
  }
}

/* WoWShuk v5 final cascade. */
body.store-wowshuk .delivery-info-pill span:last-child { color: #0d6c29; }
body.store-wowshuk .brand-row { grid-template-columns: minmax(135px, 175px) minmax(0, 1fr); }
body.store-wowshuk .brand-logo {
  width: min(13.3vw, 161px);
  max-width: min(13.3vw, 161px);
  max-height: 56px;
  transform: translateX(7px);
}
body.store-wowshuk .top-actions {
  grid-template-columns: minmax(118px, 150px) 42px minmax(96px, 118px) 42px;
}
body.store-wowshuk .header-whatsapp-link {
  display: flex;
  width: 42px;
  min-width: 42px;
  height: 42px;
  min-height: 42px;
  max-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 7px;
}
body.store-wowshuk .header-whatsapp-link img { width: 27px; height: 27px; }
.products-admin-head {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}
.products-admin-head button { width: 100%; min-height: 42px; }
.product-description-field {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}
.product-description-field textarea { grid-column: 1 / -1; }
.logout-button { font-size: 20px; }
.logout-button::before,
.logout-button::after { display: none; }
.product-language-tabs {
  display: flex;
  grid-template-columns: none;
  flex-wrap: wrap;
  gap: 4px;
  width: auto;
  margin: 2px 0 4px;
}
.product-title-row + .product-language-tabs { padding-inline-start: 50px; }
.product-language-tabs button {
  flex: 0 0 30px;
  width: 30px;
  min-width: 30px;
  max-width: 30px;
  height: 30px;
  min-height: 30px;
  padding: 0;
  border-radius: 6px;
  font-size: 10px;
  line-height: 1;
}
.product-description-field {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 5px;
}
.product-description-field .description-generate-tools {
  grid-column: 1;
  justify-self: end;
}
.product-description-field textarea,
.product-description-field .product-language-tabs { grid-column: 1; }
.unit-price-tabs,
.sale-unit-chips { display: flex; flex-wrap: wrap; gap: 5px; }
.unit-price-tab,
.sale-unit-chip {
  min-height: 30px;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 4px 9px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 11px;
  font-weight: 900;
}
.unit-price-tab.active,
.sale-unit-chip.active { border-color: var(--accent); background: var(--accent); color: #fff; }
.sale-unit-chips { margin-top: 3px; }
@media (max-width: 720px) {
  body.store-wowshuk .brand-row { grid-template-columns: 78px minmax(0, 1fr); }
  body.store-wowshuk .brand-logo {
    width: 78px;
    max-width: 78px;
    max-height: 46px;
    transform: translateX(10px);
  }
  body.store-wowshuk .top-actions {
    grid-template-columns: minmax(98px, 1fr) 40px minmax(76px, 92px) 40px;
    gap: 4px;
  }
  body.store-wowshuk .header-whatsapp-link {
    width: 40px;
    min-width: 40px;
    height: 40px;
    min-height: 40px;
    max-height: 40px;
    padding: 6px;
  }
  .product-description-field { grid-template-columns: 1fr; }
  .description-generate-tools,
  .product-description-field textarea { grid-column: 1; }
  .product-language-tabs { grid-template-columns: none; }
}
