.wo-public,
.wo-public * {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

.wo-public {
  touch-action: manipulation;
}

/* Default storefront palette; overridden per shop via #wo-store-theme-vars after this file (body.wo-public). */
:root {
  --wo-brand-primary: #166534;
  --wo-brand-primary-dark: #14532d;
  --wo-brand-primary-mid: #15803d;
  --wo-brand-accent-bright: #22c55e;
  --wo-brand-accent-border: #16a34a;
  --wo-brand-primary-rgb: 22, 101, 52;
  --wo-brand-glow-rgb: 22, 163, 74;
  --wo-brand-surface-tint: #ecfdf5;
  --wo-brand-surface-strong: #dcfce7;
  --wo-brand-mint-border: #bbf7d0;
  --wo-brand-mint-strong: #86efac;
  --wo-brand-gradient-start: #4ade80;
}

.wo-public input,
.wo-public select,
.wo-public textarea,
.wo-public button {
  font-size: 16px;
}

.wo-top { display:flex; justify-content:space-between; align-items:center; gap:.8rem; margin-bottom:1rem; }
.wo-user { font-weight:700; color:#0f172a; }
.wo-form-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:.8rem; }
.wo-setup-form {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 0.9rem;
}
.wo-setup-section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-bottom: 0.85rem;
}
.wo-setup-section-head h2 {
  margin-bottom: 0.25rem;
}
.wo-setup-section-head__lead {
  margin: 0;
}
.wo-setup-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 0.7rem;
}
.wo-setup-card label {
  font-weight: 700;
  color: #334155;
  font-size: 0.83rem;
}
.wo-setup-card input,
.wo-setup-card select,
.wo-setup-card textarea {
  margin-top: 0.35rem;
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  padding: 0.55rem 0.65rem;
  font: inherit;
  background: #fff;
}
.wo-setup-card input:focus,
.wo-setup-card select:focus,
.wo-setup-card textarea:focus {
  outline: none;
  border-color: var(--wo-brand-accent-border);
  box-shadow: 0 0 0 3px rgba(var(--wo-brand-glow-rgb), 0.15);
}
.wo-setup-card textarea {
  min-height: 5.5rem;
  resize: vertical;
}
.wo-company-contact-dialog {
  width: min(860px, 94vw);
  max-height: 90vh;
  border: 0;
  border-radius: 18px;
  padding: 0;
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.24);
}
.wo-company-contact-dialog::backdrop {
  background: rgba(15, 23, 42, 0.48);
}
.wo-company-contact-modal {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  background: #f8fafc;
}
.wo-company-contact-modal__head,
.wo-company-contact-modal__actions,
.wo-company-contact-modal__map-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.wo-company-contact-modal__head h3 {
  margin: 0 0 0.25rem;
  font-size: 1.15rem;
}
.wo-company-contact-modal__head p,
.wo-company-contact-modal__group p {
  margin: 0;
}
.wo-company-contact-modal__close {
  width: 2.2rem;
  height: 2.2rem;
  border: 1px solid #cbd5e1;
  border-radius: 999px;
  background: #fff;
  color: #334155;
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
}
.wo-company-contact-modal__grid {
  max-height: min(66vh, 680px);
  overflow: auto;
  padding-right: 0.2rem;
}
.wo-company-contact-modal__group {
  display: grid;
  gap: 0.65rem;
  border: 1px dashed #cbd5e1;
  border-radius: 14px;
  padding: 0.8rem;
  background: #fff;
}
.wo-company-contact-modal__group > strong {
  color: #0f172a;
}
.wo-company-contact-modal__actions {
  justify-content: flex-end;
  border-top: 1px solid #e2e8f0;
  padding-top: 0.9rem;
}
.wo-company-contact-section {
  margin-top: 1rem;
  border: 1px solid #dbeafe;
  border-radius: 16px;
  padding: 1rem;
  background: linear-gradient(180deg, #eff6ff 0%, #ffffff 100%);
}
.wo-company-contact-section__head {
  margin-bottom: 0.85rem;
}
.wo-company-contact-section__head h3 {
  margin: 0 0 0.25rem;
  color: #0f172a;
}
.wo-company-contact-section__head p {
  margin: 0;
}
.wo-company-contact-section__form {
  background: transparent;
}
.wo-contact-page {
  background: #f8fafc;
}
.wo-contact-page__main {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1rem 0 1.75rem;
}
.wo-contact-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 18rem;
  align-items: center;
  gap: 1.5rem;
  min-height: 250px;
  margin-bottom: 1.25rem;
  padding: clamp(1.4rem, 4vw, 2.75rem);
  overflow: hidden;
  border: 1px solid #dbeafe;
  border-radius: 28px;
  background:
    radial-gradient(circle at 90% 10%, rgba(var(--wo-brand-glow-rgb), 0.18), transparent 16rem),
    linear-gradient(135deg, #ffffff 0%, var(--wo-brand-surface-tint) 100%);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}
.wo-contact-hero__copy {
  position: relative;
  z-index: 1;
}
.wo-contact-hero h1 {
  margin: 0;
  color: #07111f;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}
.wo-contact-hero__line {
  display: block;
  width: 4rem;
  height: 0.25rem;
  margin: 1rem 0;
  border-radius: 999px;
  background: var(--wo-brand-primary);
}
.wo-contact-hero p:last-child {
  max-width: 42rem;
  margin: 0;
  color: #475569;
  font-size: 1rem;
}
.wo-contact-hero__art {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 190px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: inset 0 0 0 1px rgba(var(--wo-brand-glow-rgb), 0.12);
}
.wo-contact-art-card,
.wo-contact-art-envelope {
  position: static;
}
.wo-contact-art-card--mail {
  display: grid;
  place-items: center;
  width: 5.4rem;
  height: 5.4rem;
  border-radius: 24px;
  color: var(--wo-brand-primary);
  background: #fff;
  font-size: 2.6rem;
  font-weight: 900;
  box-shadow: 0 18px 40px rgba(var(--wo-brand-primary-rgb), 0.14);
}
.wo-contact-art-card--phone {
  position: absolute;
  right: 2.2rem;
  bottom: 2rem;
  display: grid;
  place-items: center;
  width: 4.1rem;
  height: 4.1rem;
  border: 0;
  border-radius: 22px;
  color: #fff;
  background: var(--wo-brand-primary);
  box-shadow: 0 18px 34px rgba(var(--wo-brand-primary-rgb), 0.22);
}
.wo-contact-art-envelope {
  position: absolute;
  left: 2rem;
  bottom: 2.1rem;
  width: 5.8rem;
  height: 3.6rem;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--wo-brand-mint-border), var(--wo-brand-primary));
  box-shadow: 0 16px 34px rgba(var(--wo-brand-primary-rgb), 0.16);
}
.wo-contact-art-envelope::before,
.wo-contact-art-envelope::after {
  content: none;
}
.wo-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 1.25rem;
  align-items: start;
}
.wo-contact-column {
  display: grid;
  gap: 1.25rem;
}
.wo-contact-card {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr);
  gap: 1rem;
  min-width: 0;
  border: 1px solid #e2e8f0;
  border-radius: 22px;
  padding: 1.25rem;
  background: #fff;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.07);
}
.wo-contact-card__body {
  min-width: 0;
}
.wo-contact-card__icon,
.wo-contact-list__icon,
.wo-contact-social-placeholder {
  display: inline-grid;
  place-items: center;
  border-radius: 16px;
  color: var(--wo-brand-primary);
  background: var(--wo-brand-surface-tint);
}
.wo-contact-card__icon {
  width: 3rem;
  height: 3rem;
}
.wo-contact-card h2 {
  margin: 0 0 0.55rem;
  color: #0f172a;
  font-size: 1.08rem;
  letter-spacing: -0.015em;
}
.wo-contact-card p {
  margin: 0;
  color: #475569;
  line-height: 1.62;
}
.wo-contact-list {
  display: grid;
  gap: 0.75rem;
  margin: 0;
}
.wo-contact-list div {
  display: grid;
  grid-template-columns: 2.5rem minmax(0, 1fr);
  gap: 0.12rem 0.75rem;
  padding: 0.85rem;
  border: 1px solid #edf2f7;
  border-radius: 16px;
  background: #fbfdff;
}
.wo-contact-list__icon {
  grid-row: span 2;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 14px;
}
.wo-contact-list dt {
  font-size: 0.8rem;
  font-weight: 800;
  color: #0f172a;
}
.wo-contact-list dd {
  margin: 0;
  color: #475569;
  word-break: break-word;
}
.wo-contact-list a,
.wo-contact-card__head a {
  color: var(--wo-brand-primary);
  font-weight: 800;
  text-decoration: none;
}
.wo-contact-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}
.wo-contact-socials a,
.wo-contact-social-placeholder {
  width: 2.75rem;
  height: 2.75rem;
  color: #64748b;
  background: #f1f5f9;
  font-size: 1rem;
  font-weight: 900;
  text-decoration: none;
}
.wo-contact-socials a {
  color: var(--wo-brand-primary);
  background: var(--wo-brand-surface-tint);
}
.wo-contact-socials a span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}
.wo-contact-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
}
.wo-contact-card__head h2 {
  margin: 0;
}
.wo-contact-map,
.wo-contact-map-placeholder {
  display: block;
  width: 100%;
  min-height: 220px;
  border: 0;
  border-radius: 18px;
  background: #eaf7ef;
}
.wo-contact-map-placeholder {
  display: grid;
  place-items: center;
  margin-top: 0.9rem;
  color: var(--wo-brand-primary);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0)),
    radial-gradient(circle at 20% 20%, rgba(var(--wo-brand-glow-rgb), 0.12), transparent 5rem),
    #eaf7ef;
}
.wo-contact-map__coords {
  margin-top: 0.65rem !important;
  font-size: 0.85rem;
}
@media (max-width: 900px) {
  .wo-contact-hero,
  .wo-contact-grid {
    grid-template-columns: 1fr;
  }
  .wo-contact-hero__art {
    display: none;
  }
}
@media (max-width: 560px) {
  .wo-contact-page__main {
    width: min(100% - 1rem, 1180px);
    padding-top: 0.5rem;
  }
  .wo-contact-hero,
  .wo-contact-card {
    border-radius: 18px;
  }
  .wo-contact-card {
    grid-template-columns: 1fr;
  }
}
.wo-setup-advanced {
  margin-top: 0.2rem;
  border: 1px dashed #cbd5e1;
  border-radius: 12px;
  padding: 0.55rem 0.65rem;
  background: #fff;
}
.wo-setup-advanced > summary {
  cursor: pointer;
  font-weight: 700;
  color: #334155;
}
.wo-setup-advanced__grid {
  margin-top: 0.7rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}
.wo-delivery-geo-card {
  border: 1px solid #bfdbfe;
  background: #f8fafc;
}
.wo-delivery-geo-card__title {
  display: block;
  font-size: 0.9rem;
  color: #0f172a;
  margin-bottom: 0.35rem;
}
.wo-delivery-geo-card__lead {
  margin: 0 0 0.65rem;
  font-size: 0.86rem;
  line-height: 1.45;
}
.wo-delivery-geo-card__grid {
  margin-top: 0;
}
.wo-setup-use-location-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  padding-top: 0.15rem;
}
.wo-setup-use-location-row .btn {
  flex: 0 0 auto;
}
.wo-setup-location-status {
  display: block;
  margin: 0;
  flex: 1 1 14rem;
  color: #64748b;
  font-size: 0.82rem;
  line-height: 1.4;
}
.wo-setup-readonly-banner {
  font-size: 0.9rem;
  line-height: 1.45;
}
.wo-setup-readonly .wo-setup-readonly-row {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  min-height: 0;
}
.wo-setup-readonly-k {
  font-size: 0.78rem;
  font-weight: 700;
  color: #64748b;
}
.wo-setup-readonly-v {
  font-size: 0.95rem;
  font-weight: 600;
  color: #0f172a;
  word-break: break-word;
  line-height: 1.45;
}
.wo-setup-readonly-v code {
  font-size: 0.88rem;
}
.wo-setup-readonly-advanced {
  margin-top: 0;
  border: 1px dashed #cbd5e1;
  border-radius: 12px;
  padding: 0.65rem 0.75rem 0.75rem;
  background: #fafbfc;
}
.wo-setup-readonly-advanced__title {
  margin: 0 0 0.65rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: #334155;
}
.wo-setup-readonly-geo {
  margin-top: 0.75rem;
}
.wo-setup-readonly-map-hint {
  margin: 0.65rem 0 0;
}
.wo-delivery-map-details {
  margin-top: 0.75rem;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 0.5rem 0.65rem 0.75rem;
  background: #fff;
}
.wo-delivery-map-details__summary {
  cursor: pointer;
  font-weight: 700;
  color: #1e40af;
  font-size: 0.9rem;
  list-style: none;
}
.wo-delivery-map-details__summary::-webkit-details-marker {
  display: none;
}
.wo-delivery-map-panel {
  margin-top: 0.65rem;
}
.wo-delivery-map-panel__row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.4rem;
}
.wo-delivery-map-panel__hint {
  margin: 0;
  flex: 1 1 12rem;
  font-size: 0.82rem;
  line-height: 1.45;
}
.wo-delivery-map-panel__links {
  flex: 0 0 auto;
}
.wo-delivery-map-panel__link {
  font-size: 0.86rem;
  white-space: nowrap;
}
.wo-delivery-map-click-hint {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
}
.wo-delivery-map {
  width: 100%;
  min-height: 280px;
  height: 42vh;
  max-height: 480px;
  border-radius: 12px;
  border: 1px solid #cbd5e1;
  background: #e2e8f0;
  z-index: 0;
}
.wo-delivery-map__err {
  margin: 0;
  padding: 1rem;
  color: #991b1b;
  font-size: 0.9rem;
}
.wo-setup-links {
  margin-top: 0.8rem;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #fff;
  padding: 0.5rem 0.65rem;
}
.wo-setup-links > summary {
  cursor: pointer;
  font-weight: 700;
  color: #334155;
}
.wo-setup-links__list {
  margin-top: 0.5rem;
}
.wo-panel { margin-bottom:1rem; }
.wo-panel h2 { margin:0 0 .75rem; font-size:1.05rem; color:#0f172a; }
.wo-actions { grid-column:1/-1; }
.wo-span-all { grid-column:1/-1; }
.wo-link { margin-top:.8rem; color:#334155; word-break:break-all; }
.wo-kv { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:.7rem; margin-bottom:.8rem; }
.wo-kv div { border:1px solid #e2e8f0; border-radius:10px; padding:.55rem .65rem; }
.wo-kv span { display:block; color:#64748b; font-size:.8rem; }
.wo-product-grid, .wo-public-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(200px,1fr)); gap:.8rem; }
.wo-product-card { border:1px solid #e2e8f0; border-radius:12px; padding:.6rem; background:#fff; }
.wo-product-card h3 { font-size:.92rem; margin:.45rem 0 .3rem; color:#0f172a; }
.wo-product-card p { margin:0; color:#64748b; font-size:.8rem; }
.wo-price { font-weight:700; color:#0f766e; margin-top:.35rem; }
.wo-img { height:130px; border-radius:10px; background:#f8fafc; overflow:hidden; }
.wo-img img { width:100%; height:100%; object-fit:cover; }
.wo-table-wrap { overflow:auto; border:1px solid #e2e8f0; border-radius:10px; }
.wo-table { width:100%; min-width:760px; border-collapse:collapse; }
.wo-table th,.wo-table td { border-bottom:1px solid #e2e8f0; padding:.55rem .6rem; text-align:left; font-size:.86rem; }
.wo-table th { background:#f8fafc; }

.wo-public { margin:0; background:#f8fafc; font-family:Inter,system-ui,-apple-system,sans-serif; }
.wo-public-wrap { max-width:1100px; margin:0 auto; padding:1.2rem; }
.wo-public-wrap h1 { margin:.2rem 0 .25rem; font-size:2rem; color:#1f2937; }
.wo-public-wrap p { color:#64748b; margin:0 0 1rem; }
.wo-shop-header { display:flex; justify-content:space-between; gap:1rem; align-items:flex-start; }
.wo-cart-open { border:1px solid var(--wo-brand-accent-border); background:var(--wo-brand-accent-border); color:#fff; border-radius:999px; padding:.55rem .9rem; font-weight:700; cursor:pointer; }
.wo-layout { display:grid; grid-template-columns:260px 1fr; gap:1rem; align-items:start; }
.wo-filters { position:sticky; top:.9rem; }
.wo-filter-card { border:1px solid #e2e8f0; border-radius:12px; background:#fff; padding:.75rem; margin-bottom:.7rem; }
.wo-filter-card h3 { margin:0 0 .5rem; font-size:.95rem; color:#0f172a; }
.wo-filter-card label { display:flex; gap:.5rem; align-items:center; margin:.3rem 0; font-size:.9rem; color:#334155; }
.wo-card-actions { margin-top:.6rem; }
.wo-add-btn { width:100%; border:1px solid var(--wo-brand-accent-border); background:var(--wo-brand-surface-tint); color:var(--wo-brand-primary); border-radius:8px; padding:.45rem .6rem; font-weight:700; cursor:pointer; }
.wo-cat { color:#64748b; font-size:.75rem; }
.wo-cart-drawer { margin-top:1rem; border:1px solid #e2e8f0; border-radius:12px; background:#fff; padding:.8rem; }
.wo-cart-head { display:flex; justify-content:space-between; align-items:center; margin-bottom:.5rem; }
.wo-cart-head h3 { margin:0; font-size:1rem; color:#0f172a; }
.wo-cart-head button { border:1px solid #cbd5e1; background:#fff; border-radius:8px; padding:.35rem .6rem; cursor:pointer; }
.wo-cart-row { display:flex; justify-content:space-between; gap:.8rem; align-items:center; border-bottom:1px solid #f1f5f9; padding:.45rem 0; }
.wo-cart-row strong { display:block; font-size:.87rem; color:#0f172a; }
.wo-cart-row small { color:#64748b; font-size:.78rem; }
.wo-cart-total { margin-top:.6rem; font-size:.95rem; color:#0f172a; }
.wo-qty { margin-top:.5rem; display:flex; align-items:center; gap:.35rem; }
.wo-qty input { width:64px; padding:.3rem; text-align:center; border:1px solid #cbd5e1; border-radius:8px; }
.wo-qty button { width:28px; height:28px; border-radius:999px; border:1px solid var(--wo-brand-accent-border); color:var(--wo-brand-accent-border); background:#fff; cursor:pointer; }
.wo-customer-grid { margin-top:1rem; display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:.7rem; }
.wo-customer-grid input { padding:.7rem; border:1px solid #cbd5e1; border-radius:9px; }
.wo-place-btn { margin-top:1rem; background:var(--wo-brand-accent-border); color:#fff; border:none; border-radius:999px; padding:.75rem 1.1rem; font-weight:700; cursor:pointer; }
.wo-alert { margin:.4rem 0; padding:.55rem .65rem; border-radius:8px; background:var(--wo-brand-surface-strong); color:var(--wo-brand-primary); }
.wo-alert--err { background:#fee2e2; color:#991b1b; }
.wo-alert--ok { background:#ecfdf5; color:#065f46; border:1px solid #a7f3d0; }
.wo-banner-add { margin-bottom:1rem; padding-bottom:.9rem; border-bottom:1px solid #e2e8f0; }
.wo-banner-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(270px,1fr)); gap:.8rem; }
.wo-banner-card { border:1px solid #e2e8f0; border-radius:12px; padding:.6rem; background:#fff; }
.wo-banner-image { height:150px; border-radius:10px; overflow:hidden; background:#f8fafc; margin-bottom:.55rem; }
.wo-banner-image img { width:100%; height:100%; object-fit:cover; }
.wo-banner-meta strong { display:block; color:#0f172a; font-size:.9rem; }
.wo-banner-meta span { color:#64748b; font-size:.8rem; }
.wo-banner-actions { display:flex; gap:.45rem; margin-top:.6rem; }
.wo-banner-replace { margin-top:.6rem; display:grid; grid-template-columns:1fr .45fr 1.2fr auto; gap:.4rem; }
.wo-banner-replace input { border:1px solid #cbd5e1; border-radius:8px; padding:.4rem .5rem; }
.wo-panel--banners {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}
.wo-panel--banners .wo-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-bottom: 0.6rem;
}
.wo-panel--banners .wo-panel__head h2 {
  margin: 0;
}
.wo-panel--banners .wo-panel__head .settings-lead {
  margin: 0.3rem 0 0;
}
.wo-panel__chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--wo-brand-mint-border);
  background: var(--wo-brand-surface-tint);
  color: var(--wo-brand-primary);
  font-size: 0.82rem;
  font-weight: 800;
}
.wo-panel--banners .wo-setup-links--banner {
  margin-top: 0.2rem;
  background: #f8fafc;
}
.wo-panel--banners .wo-banner-add {
  margin-top: 0.6rem;
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0.2rem;
}
.wo-home-hero-side-panel {
  margin-top: 1.1rem;
  padding-top: 1rem;
  border-top: 1px solid #e2e8f0;
}
.wo-home-hero-side-panel__title {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  color: #0f172a;
}
.wo-home-hero-side-panel__head .wo-home-hero-side-panel__title {
  margin: 0 0 0.25rem;
}
.wo-home-hero-side-panel__lead {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.35;
  color: #64748b;
}
.wo-home-hero-side-panel__head {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin-bottom: 0.5rem;
}
.wo-home-hero-side-panel__mark {
  flex-shrink: 0;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #6366f1, #4f46e5);
  color: #fff;
  box-shadow: 0 3px 10px rgba(79, 70, 229, 0.28);
}
.wo-home-hero-side-panel__mark svg {
  display: block;
  width: 16px;
  height: 16px;
}
.wo-slider-add-form__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: flex-end;
}
.wo-slider-add-form__field--sort {
  flex: 0 0 auto;
  min-width: 0;
  max-width: 9rem;
}
.wo-slider-add-form__field--sort input[type='number'] {
  text-align: center;
  font-weight: 600;
}
.dash-main .wo-panel--banners-modern .wo-banners-top-row .wo-slider-add-form__actions,
.dash-main .wo-panel--banners-modern .wo-banners-top-row .wo-home-hero-side-form__actions {
  margin-top: 0;
  padding-top: 0.45rem;
  border-top: 1px solid #f1f5f9;
}
.dash-main .wo-panel--banners-modern .wo-banners-top-row .wo-slider-add-form__actions .btn,
.dash-main .wo-panel--banners-modern .wo-banners-top-row .wo-home-hero-side-form__actions .btn {
  width: 100%;
}
.wo-home-hero-side-form__upload.settings-field {
  padding: 0.5rem 0.6rem;
  border-radius: 10px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  box-sizing: border-box;
}
.wo-home-hero-side-form__pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem 0.6rem;
}
@media (max-width: 520px) {
  .wo-home-hero-side-form__pair {
    grid-template-columns: 1fr;
  }
}
.wo-home-hero-side-preview--inline {
  margin-top: 0.45rem;
  padding: 0.45rem 0.55rem;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  background: #fff;
  max-width: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.65rem;
}
.wo-home-hero-side-preview--inline .wo-home-hero-side-preview__thumb {
  flex-shrink: 0;
}
.wo-home-hero-side-preview--inline .wo-home-hero-side-preview__img {
  display: block;
  width: 72px;
  height: 72px;
  max-width: 72px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  aspect-ratio: 1;
}
.wo-home-hero-side-preview--inline .wo-home-hero-side-preview__meta {
  flex: 1 1 8rem;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.wo-home-hero-side-preview--inline .wo-home-hero-side-preview__label {
  margin-bottom: 0;
}
.wo-home-hero-side-form.wo-banner-add {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}
.wo-home-hero-side-preview {
  margin-top: 0.65rem;
  padding: 0.75rem;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #f8fafc;
  max-width: 22rem;
}
.wo-home-hero-side-preview__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #64748b;
  margin-bottom: 0.45rem;
}
.wo-home-hero-side-preview__img {
  display: block;
  width: 100%;
  max-width: 200px;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  background: #fff;
}
.wo-home-hero-side-clear {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.5rem;
  font-size: 0.88rem;
}

/* whatsapp-order-setup (dash): paired top row — single-column forms in half-width cards */
.dash-main .wo-panel--banners-modern .wo-banners-top-row .wo-slider-add-form.wo-form-grid,
.dash-main .wo-panel--banners-modern .wo-banners-top-row .wo-home-hero-side-form.wo-form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.5rem;
  align-items: start;
  width: 100%;
}
.dash-main .wo-panel--banners-modern .wo-banners-top-row .wo-slider-add-form .settings-field.wo-span-all,
.dash-main .wo-panel--banners-modern .wo-banners-top-row .wo-slider-add-form .wo-actions.wo-span-all,
.dash-main .wo-panel--banners-modern .wo-banners-top-row .wo-home-hero-side-form .settings-field.wo-span-all,
.dash-main .wo-panel--banners-modern .wo-banners-top-row .wo-home-hero-side-form .wo-actions.wo-span-all {
  grid-column: 1 / -1;
}
.dash-main .wo-panel--banners-modern .wo-banners-top-row .wo-slider-add-form .settings-field > label,
.dash-main .wo-panel--banners-modern .wo-banners-top-row .wo-home-hero-side-form .settings-field > label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #64748b;
  margin-bottom: 0.2rem;
}
.dash-main .wo-panel--banners-modern .wo-banners-top-row .wo-slider-add-form .settings-field input:not([type='file']),
.dash-main .wo-panel--banners-modern .wo-banners-top-row .wo-slider-add-form .settings-field select,
.dash-main .wo-panel--banners-modern .wo-banners-top-row .wo-home-hero-side-form .settings-field input:not([type='file']):not([type='checkbox']),
.dash-main .wo-panel--banners-modern .wo-banners-top-row .wo-home-hero-side-form .settings-field select,
.dash-main .wo-panel--banners-modern .wo-banners-top-row .wo-home-hero-side-form .settings-field textarea {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 0.4rem 0.55rem;
  font-size: 0.875rem;
  background: #fff;
}
.dash-main .wo-panel--banners-modern .wo-banners-top-row .wo-slider-add-form .settings-field input:focus,
.dash-main .wo-panel--banners-modern .wo-banners-top-row .wo-home-hero-side-form .settings-field input:focus,
.dash-main .wo-panel--banners-modern .wo-banners-top-row .wo-home-hero-side-form .settings-field textarea:focus {
  outline: none;
  border-color: #10b981;
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.12);
}
.dash-main .wo-panel--banners-modern .wo-banners-top-row .wo-home-hero-side-form .wo-home-hero-side-form__pair .settings-field input:focus {
  border-color: #6366f1;
  box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.12);
}
.dash-main .wo-panel--banners-modern .wo-banners-top-row .wo-slider-add-form .settings-field input[type='file'],
.dash-main .wo-panel--banners-modern .wo-banners-top-row .wo-home-hero-side-form .settings-field input[type='file'] {
  width: 100%;
  max-width: 100%;
  padding: 0.4rem 0.5rem;
  border: 1px dashed #94a3b8;
  border-radius: 8px;
  background: #fff;
  font-size: 0.82rem;
  cursor: pointer;
}
.wo-panel--banners .wo-banner-grid {
  margin-top: 0.55rem;
  gap: 0.65rem;
}
.wo-panel--banners .wo-banner-card {
  border: 1px solid #dbe4ee;
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
  padding: 0.7rem;
}
.wo-panel--banners .wo-banner-image {
  height: 170px;
  border: 1px solid #e5e7eb;
}
.wo-panel--banners .wo-banner-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.wo-panel--banners .wo-banner-meta span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid #e2e8f0;
  padding: 0.18rem 0.5rem;
  background: #f8fafc;
}
.wo-panel--banners .wo-banner-actions form,
.wo-panel--banners .wo-banner-replace {
  width: 100%;
}
.wo-panel--banners .wo-banner-actions .btn,
.wo-panel--banners .wo-banner-replace .btn {
  width: 100%;
}
.wo-panel--banners .wo-banner-replace {
  grid-template-columns: 1fr 90px 1.1fr 130px;
}

/* Homepage slider (merchant setup) — modern panel */
.wo-panel--banners-modern {
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.07);
  overflow: hidden;
  background: linear-gradient(165deg, #f0fdf4 0%, #f8fafc 38%, #ffffff 100%);
}
.wo-panel--banners-modern .wo-panel__head--slider {
  align-items: flex-start;
  margin-bottom: 0.5rem;
}
.wo-panel--banners-modern .wo-panel__head-text {
  flex: 1 1 16rem;
  min-width: 0;
}
.wo-panel--banners-modern .wo-panel__head-lead {
  max-width: 42rem;
  line-height: 1.4;
  color: #475569;
  margin-top: 0.2rem;
}
.wo-panel__chip--slider {
  border-color: #a7f3d0;
  background: linear-gradient(135deg, var(--wo-brand-surface-tint), #d1fae5);
  color: #065f46;
  flex-shrink: 0;
}
.wo-banners-top-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0.6rem 0.75rem;
  align-items: start;
  margin-bottom: 0.2rem;
}
.wo-banners-top-row > * {
  min-width: 0;
}
.wo-panel--banners-modern .wo-banners-top-row .wo-slider-add-card {
  margin-bottom: 0;
  height: auto;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}
.wo-panel--banners-modern .wo-banners-top-row .wo-slider-add-form {
  flex: 0 0 auto;
}
.wo-home-hero-side-panel--paired {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  background: rgba(255, 255, 255, 0.92);
  padding: 0.75rem 0.85rem 0.8rem;
  height: auto;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
.wo-home-hero-side-panel--paired .wo-home-hero-side-form {
  flex: 0 0 auto;
}
.wo-slider-add-card {
  border-radius: 14px;
  border: 1px dashed #94a3b8;
  background: rgba(255, 255, 255, 0.92);
  padding: 0.75rem 0.85rem 0.8rem;
  margin-bottom: 0.25rem;
}
.wo-slider-add-card__head {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin-bottom: 0.5rem;
}
.wo-slider-add-card__icon {
  flex-shrink: 0;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 10px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 2.1rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}
.wo-slider-add-card__title {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
}
.wo-slider-add-card__hint {
  margin: 0.12rem 0 0;
  font-size: 0.78rem;
  color: #64748b;
  line-height: 1.35;
}
.wo-slider-add-form.wo-banner-add {
  margin: 0;
  padding: 0;
  border: 0;
}
.wo-slider-add-btn {
  min-width: 10rem;
}
.wo-banner-grid--modern {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.55rem;
  margin-top: 0.65rem;
}
@media (max-width: 960px) {
  .wo-banners-top-row {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }
}
.wo-slider-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 2rem 1.25rem;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  background: rgba(248, 250, 252, 0.9);
}
.wo-slider-empty__title {
  margin: 0 0 0.4rem;
  font-size: 1rem;
  font-weight: 700;
  color: #334155;
}
.wo-slider-empty__text {
  margin: 0;
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.55;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}
.wo-panel--banners .wo-banner-card--modern {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
  background: #fff;
}
.wo-panel--banners .wo-banner-image--modern {
  height: 100px;
  min-height: 0;
  max-height: 100px;
  margin: 0;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid #f1f5f9;
  overflow: hidden;
}
.wo-panel--banners .wo-banner-image--modern img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wo-banner-card__body {
  padding: 0.85rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1 1 auto;
}
.wo-panel--banners .wo-banner-card--modern .wo-banner-card__body {
  padding: 0.5rem 0.6rem 0.55rem;
  gap: 0.22rem;
}
.wo-banner-meta--modern {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.65rem;
}
.wo-panel--banners .wo-banner-card--modern .wo-banner-meta--modern {
  gap: 0.4rem;
  align-items: center;
}
.wo-banner-meta--modern strong {
  font-size: 0.95rem;
  line-height: 1.35;
  color: #0f172a;
}
.wo-panel--banners .wo-banner-card--modern .wo-banner-meta--modern strong {
  font-size: 0.82rem;
  line-height: 1.25;
}
.wo-banner-pill {
  flex-shrink: 0;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  border: none;
}
.wo-banner-pill--on {
  background: #d1fae5;
  color: #047857;
}
.wo-banner-pill--off {
  background: #f1f5f9;
  color: #64748b;
}
.wo-panel--banners-modern .wo-banner-meta--modern .wo-banner-pill {
  border: none;
  padding: 0.18rem 0.42rem;
  font-size: 0.65rem;
  background-clip: padding-box;
}
.wo-panel--banners-modern .wo-banner-meta--modern .wo-banner-pill--on {
  background: #d1fae5;
  color: #047857;
}
.wo-panel--banners-modern .wo-banner-meta--modern .wo-banner-pill--off {
  background: #f1f5f9;
  color: #64748b;
}
.wo-banner-sort {
  margin: 0;
  font-size: 0.8rem;
  color: #64748b;
}
.wo-panel--banners .wo-banner-card--modern .wo-banner-sort {
  font-size: 0.72rem;
  margin-top: 0.05rem;
}
.wo-banner-card__tagline {
  margin: 0.25rem 0 0;
  font-size: 0.82rem;
  line-height: 1.35;
  color: #475569;
}
.wo-panel--banners .wo-banner-card--modern .wo-banner-card__tagline {
  font-size: 0.75rem;
  margin-top: 0.12rem;
}
.wo-banner-card__linkhint {
  margin: 0.2rem 0 0;
  font-size: 0.72rem;
  line-height: 1.35;
  color: #64748b;
  word-break: break-word;
}
.wo-banner-card__linkhint code {
  font-size: 0.68rem;
  background: #f8fafc;
  padding: 0.05rem 0.25rem;
  border-radius: 4px;
}
.wo-banner-card__linkhint--muted {
  color: #94a3b8;
}
.wo-banner-actions--modern {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.25rem;
}
.wo-banner-action-form {
  flex: 1 1 auto;
  min-width: 0;
}
.wo-panel--banners-modern .wo-banner-actions--modern .wo-banner-action-form {
  flex: 0 0 auto;
  width: auto;
  min-width: 0;
}
.wo-panel--banners-modern .wo-banner-actions--modern form {
  width: auto;
}
.wo-panel--banners-modern .wo-banner-actions--modern .btn {
  width: auto;
  white-space: nowrap;
  padding: 0.22rem 0.48rem;
  font-size: 0.72rem;
  line-height: 1.25;
  border-radius: 7px;
  min-height: 0;
}
.wo-banner-btn--danger {
  color: #b91c1c !important;
}
.wo-banner-btn--danger:hover {
  background: #fef2f2 !important;
}
.wo-panel--banners-modern .btn-sm {
  padding: 0.38rem 0.7rem;
  font-size: 0.82rem;
  border-radius: 9px;
}
.wo-panel--banners-modern .wo-banner-card--modern .wo-banner-replace--modern .btn-sm {
  padding: 0.22rem 0.5rem;
  font-size: 0.72rem;
  border-radius: 7px;
  line-height: 1.25;
}
.wo-banner-replace--modern {
  margin-top: 0.4rem;
  padding-top: 0.45rem;
  border-top: 1px solid #f1f5f9;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  align-items: stretch;
}
.wo-panel--banners .wo-banner-card--modern .wo-banner-replace--modern {
  margin-top: 0.3rem;
  padding-top: 0.4rem;
}
.wo-banner-replace--modern .wo-banner-replace__stack {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.wo-banner-replace--modern .wo-banner-replace__row {
  display: grid;
  grid-template-columns: 4.25rem minmax(0, 1fr) auto;
  gap: 0.3rem;
  align-items: center;
}
.wo-banner-replace--modern .wo-banner-replace__hint {
  margin: 0;
  font-size: 0.65rem;
  color: #94a3b8;
  line-height: 1.3;
}
.wo-banner-replace__label {
  grid-column: 1 / -1;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #94a3b8;
  margin-bottom: 0.1rem;
}
.wo-panel--banners .wo-banner-card--modern .wo-banner-replace--modern .wo-banner-replace__label {
  font-size: 0.65rem;
  margin-bottom: 0;
}
.wo-banner-replace--modern .wo-banner-replace__input,
.wo-banner-replace--modern .wo-banner-replace__file {
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  padding: 0.45rem 0.55rem;
  font-size: 0.86rem;
  width: 100%;
  min-width: 0;
  background: #fff;
}
.wo-panel--banners .wo-banner-card--modern .wo-banner-replace--modern .wo-banner-replace__input,
.wo-panel--banners .wo-banner-card--modern .wo-banner-replace--modern .wo-banner-replace__file {
  border-radius: 7px;
  padding: 0.28rem 0.4rem;
  font-size: 0.76rem;
}
.wo-banner-replace--modern .wo-banner-replace__file {
  padding: 0.35rem;
  font-size: 0.8rem;
}
.wo-panel--banners .wo-banner-card--modern .wo-banner-replace--modern .wo-banner-replace__file {
  padding: 0.22rem 0.35rem;
  font-size: 0.72rem;
}
.wo-panel--banners-modern .wo-banner-replace--modern .btn {
  width: auto;
  white-space: nowrap;
}

.wo-public-banners { margin:0 0 1rem; border-radius:14px; overflow:hidden; border:1px solid #e2e8f0; background:#fff; }
.wo-public-banner { display:none; width:100%; }
.wo-public-banner img { width:100%; height:320px; object-fit:cover; display:block; }
.wo-checkout-actions { display:flex; gap:.6rem; align-items:center; flex-wrap:wrap; margin-top:.8rem; }
.wo-checkout-actions .wo-place-btn { text-decoration:none; display:inline-flex; align-items:center; }
.wo-cart-page .wo-cart-form {
  background: #fff;
  border: 1px solid #dfe8e3;
  border-radius: 16px;
  padding: 0.9rem;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
}
.wo-cart-page .wo-cart-table-wrap {
  border-radius: 14px;
  overflow: hidden;
}
.wo-cart-page .wo-table thead th {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748b;
  background: #f8faf9;
}
.wo-cart-page .wo-table tbody tr:hover {
  background: #f8fafc;
}
.wo-cart-stock-note {
  display: block;
  margin-top: 0.2rem;
  color: #64748b;
  font-size: 0.75rem;
}
.wo-cart-th-thumb,
.wo-cart-td-thumb {
  width: 72px;
  vertical-align: middle;
}
.wo-cart-thumb-wrap {
  display: block;
  line-height: 0;
}
.wo-cart-thumb {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  display: block;
  background: #f8fafc;
}
.wo-cart-thumb-fallback {
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background: #f1f5f9;
  font-weight: 700;
  font-size: 1.1rem;
  color: #64748b;
}
.wo-cart-unit--offer {
  font-weight: 700;
  color: var(--wo-brand-primary-dark);
  white-space: nowrap;
}
.wo-cart-unit__stack {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.08rem;
  line-height: 1.15;
}
.wo-cart-unit__old {
  font-size: 0.74rem;
  font-weight: 600;
  color: #94a3b8;
  text-decoration: line-through;
}
.wo-cart-unit__offer {
  font-size: 0.92rem;
  font-weight: 800;
  color: #b91c1c;
}
.wo-cart-th-remove,
.wo-cart-td-remove {
  width: 1%;
  vertical-align: middle;
  white-space: nowrap;
  text-align: right;
}
.wo-cart-remove-row {
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  border: 1px solid #fecaca;
  background: #fff;
  color: #b91c1c;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
}
.wo-cart-remove-row:hover {
  background: #fef2f2;
}
.wo-cart-remove-row:focus-visible {
  outline: 2px solid #fca5a5;
  outline-offset: 2px;
}
.wo-cart-page .wo-cart-qty-input {
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  padding: 0.35rem 0.45rem;
  font: inherit;
  font-weight: 700;
  color: #0f172a;
  background: #fff;
}
.wo-cart-page .wo-cart-qty-input:focus {
  outline: none;
  border-color: var(--wo-brand-accent-border);
  box-shadow: 0 0 0 3px rgba(var(--wo-brand-glow-rgb), 0.16);
}
.wo-cart-page .wo-cart-line-total {
  font-weight: 700;
  color: var(--wo-brand-primary-dark);
}
.wo-cart-page .wo-cart-total {
  margin-top: 0.95rem;
  padding: 0.7rem 0.8rem;
  border-radius: 12px;
  background: var(--wo-brand-surface-tint);
  border: 1px solid var(--wo-brand-mint-border);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.wo-cart-page .wo-checkout-actions .wo-add-btn {
  border-radius: 999px;
  padding: 0.55rem 0.95rem;
}
.wo-checkout-layout { display:grid; grid-template-columns:320px 1fr; gap:1rem; align-items:start; }
.wo-pay-options { display:grid; gap:.35rem; }
.wo-pay-options label { display:flex; align-items:center; gap:.45rem; color:#334155; }
.wo-location-box { display:grid; gap:.45rem; margin-top:.35rem; }
.wo-location-box small { color:#64748b; font-size:.8rem; }
@media (max-width: 980px) { .wo-layout { grid-template-columns:1fr; } .wo-filters { position:static; } }
@media (max-width: 860px) { .wo-form-grid,.wo-customer-grid { grid-template-columns:1fr; } }
@media (max-width: 860px) { .wo-setup-advanced__grid { grid-template-columns:1fr; } }
@media (max-width: 860px) {
  .wo-banner-replace {
    grid-template-columns: 1fr;
  }
  .wo-banner-replace--modern .wo-banner-replace__row {
    grid-template-columns: 1fr;
  }
  .wo-banner-replace--modern .wo-banner-replace__row .btn {
    width: 100%;
  }
  .wo-shop-header {
    flex-direction: column;
  }
  .wo-public-banner img {
    height: 220px;
  }
  .wo-checkout-layout {
    grid-template-columns: 1fr;
  }
}

/* —— Storefront (store.link–style) —— */
.wo-store-page.wo-public {
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
  background: #f4f7f5;
  color: #1a2e1f;
}
.wo-skip {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.wo-skip:focus {
  position: fixed;
  left: 0.75rem;
  top: 0.75rem;
  z-index: 10050;
  width: auto;
  height: auto;
  padding: 0.5rem 0.85rem;
  background: var(--wo-brand-primary);
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

body.wo-store-drawer-open {
  overflow: hidden;
}

.wo-store-drawer {
  position: fixed;
  inset: 0;
  z-index: 10040;
  pointer-events: none;
  visibility: hidden;
}
.wo-store-drawer.is-open {
  pointer-events: auto;
  visibility: visible;
}
.wo-store-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.wo-store-drawer.is-open .wo-store-drawer__backdrop {
  opacity: 1;
}
.wo-store-drawer__panel {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(88vw, 320px);
  background: #fff;
  box-shadow: 8px 0 32px rgba(0, 0, 0, 0.12);
  padding: 1rem 1.1rem 1.25rem;
  transform: translateX(-102%);
  transition: transform 0.28s ease;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.wo-store-drawer.is-open .wo-store-drawer__panel {
  transform: translateX(0);
}
.wo-store-drawer__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #e7ece9;
}
.wo-store-drawer__head strong {
  font-size: 1.05rem;
  color: var(--wo-brand-primary-dark);
}
.wo-icon-btn {
  border: none;
  background: #f1f5f4;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  color: #334155;
}
.wo-store-drawer__label {
  margin: 0.25rem 0 0;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #64748b;
  font-weight: 600;
}
.wo-store-drawer__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.wo-store-drawer__list a {
  display: block;
  padding: 0.55rem 0;
  color: #1e293b;
  text-decoration: none;
  border-bottom: 1px solid #f1f5f9;
  font-weight: 500;
}
.wo-store-drawer__list a:hover {
  color: var(--wo-brand-primary);
}
.wo-store-drawer__cart {
  margin-top: auto;
  padding-top: 1rem;
  font-weight: 700;
  color: var(--wo-brand-primary);
  text-decoration: none;
}

.wo-store-notice {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.7rem 1rem;
  font-size: 0.92rem;
  line-height: 1.45;
  border-bottom: 1px solid transparent;
}
.wo-store-notice--warn {
  background: #fffbeb;
  color: #78350f;
  border-bottom-color: #fcd34d;
}
.wo-store-notice--info {
  background: #eff6ff;
  color: #1e3a8a;
  border-bottom-color: #93c5fd;
}
.wo-store-push-wrap {
  padding-top: 0.2rem;
  padding-bottom: 0;
}
.wo-store-push-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 0.45rem;
  border: 1px solid #dbeafe;
  border-radius: 7px;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  padding: 0.22rem 0.4rem;
  box-shadow: 0 1px 4px rgba(30, 64, 175, 0.05);
}
.wo-store-push-card__copy {
  flex: 1 1 8rem;
  min-width: 0;
}
.wo-store-push-card__copy strong {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.15;
  color: #1e3a8a;
  margin: 0 0 0.04rem;
}
.wo-store-push-card__copy p {
  margin: 0;
  color: #64748b;
  font-size: 0.58rem;
  line-height: 1.2;
}
.wo-store-push-card__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.2rem;
  flex: 0 0 auto;
}
.wo-store-push-card__enable,
.wo-store-push-card__help {
  width: auto;
}
.wo-store-push-card .wo-add-btn,
.wo-store-push-card .wo-btn-secondary {
  width: auto;
  padding: 0.15rem 0.38rem;
  font-size: 0.58rem;
  font-weight: 700;
  line-height: 1.15;
  border-radius: 5px;
}
.wo-store-push-card .wo-btn-secondary {
  font-weight: 600;
  border-radius: 999px;
  padding: 0.14rem 0.34rem;
}
.wo-store-push-card__status {
  flex: 1 0 100%;
  font-size: 0.54rem;
  line-height: 1.2;
  margin: 0.02rem 0 0;
}

.wo-store-topslider {
  position: relative;
  width: 100%;
  min-height: clamp(46px, 6vw, 55px);
  background: #e5e7eb;
  overflow: hidden;
  padding-bottom: 2px;
}
.wo-store-topslider__track {
  position: relative;
  min-height: inherit;
}
.wo-store-topslider__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.55s ease;
}
.wo-store-topslider__slide.is-active {
  opacity: 1;
  z-index: 1;
}
.wo-store-topslider__hit {
  position: absolute;
  inset: 0;
  display: block;
  color: inherit;
  text-decoration: none;
}
.wo-store-topslider__hit:focus-visible {
  outline: 2px solid rgba(15, 23, 42, 0.9);
  outline-offset: -2px;
}
.wo-store-topslider__hit img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.wo-store-topslider__nav {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}
.wo-store-topslider__nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  line-height: 1;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(5px);
  transition: opacity 0.2s ease, background 0.2s ease;
  opacity: 0;
  pointer-events: none;
}
.wo-store-topslider__nav-btn--prev {
  left: 0.4rem;
}
.wo-store-topslider__nav-btn--next {
  right: 0.4rem;
}
.wo-store-topslider__nav-btn:hover {
  background: rgba(15, 23, 42, 0.75);
}
@media (hover: hover) and (pointer: fine) {
  .wo-store-topslider:hover .wo-store-topslider__nav-btn,
  .wo-store-topslider:focus-within .wo-store-topslider__nav-btn {
    opacity: 1;
    pointer-events: auto;
  }
}

.wo-store-topbar {
  position: sticky;
  top: 0;
  z-index: 10030;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e2e8e8;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03);
}
.wo-store-topbar__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.55rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.65rem 1rem;
  flex-wrap: wrap;
}
.wo-store-menu-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid #d8e3dc;
  background: #fff;
  border-radius: 999px;
  padding: 0.4rem 0.75rem 0.4rem 0.55rem;
  cursor: pointer;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  color: #334155;
}
.wo-hamburger {
  width: 18px;
  height: 2px;
  background: #1e293b;
  border-radius: 2px;
  box-shadow: 0 -6px 0 #1e293b, 0 6px 0 #1e293b;
}
.wo-store-brand {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--wo-brand-primary-dark);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.wo-store-brand:hover {
  color: var(--wo-brand-primary);
}
.wo-store-cats-desktop {
  display: none;
  flex: 1;
  justify-content: center;
  gap: 0.35rem 1.1rem;
  flex-wrap: wrap;
}
.wo-store-cats-desktop a {
  font-size: 0.88rem;
  font-weight: 600;
  color: #475569;
  text-decoration: none;
  white-space: nowrap;
}
.wo-store-cats-desktop a:hover {
  color: var(--wo-brand-primary);
}
.wo-store-topbar__actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.65rem 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.wo-store-topbar__quick-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}
.wo-lang-switch {
  display: inline-flex;
  align-items: center;
  border: 1px solid #d8e3dc;
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
}
.wo-lang-switch__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.2rem;
  height: 1.9rem;
  padding: 0 0.55rem;
  text-decoration: none;
  font-size: 0.74rem;
  font-weight: 800;
  color: #475569;
}
.wo-lang-switch__link.is-active {
  background: var(--wo-brand-primary);
  color: #fff;
}
.wo-lang-switch__link:not(.is-active):hover {
  background: #f8faf9;
}
.wo-store-account-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}
.wo-store-account-chip__text {
  color: #334155;
  font-size: 0.8rem;
  font-weight: 700;
}
.wo-store-account-chip__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.9rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  border: 1px solid #d8e3dc;
  background: #fff;
  color: var(--wo-brand-primary);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
}
.wo-store-account-chip__link--primary {
  background: var(--wo-brand-primary);
  border-color: var(--wo-brand-primary);
  color: #fff;
}
.wo-store-search {
  position: relative;
  width: min(200px, 42vw);
}
.wo-store-search form {
  margin: 0;
}
.wo-store-search input {
  width: 100%;
  padding: 0.45rem 0.55rem 0.45rem 2.1rem;
  border: 1px solid #d8e3dc;
  border-radius: 999px;
  font: inherit;
  font-size: 0.86rem;
  background: #f8faf9;
}
.wo-store-search input:focus {
  outline: 2px solid var(--wo-brand-mint-border);
  border-color: var(--wo-brand-mint-strong);
  background: #fff;
}
.wo-store-search__icon {
  position: absolute;
  left: 0.55rem;
  top: 50%;
  transform: translateY(-50%);
  color: #64748b;
  display: flex;
  pointer-events: none;
}
.wo-store-search__suggestions {
  position: absolute;
  top: calc(100% + 0.4rem);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #d8e3dc;
  border-radius: 16px;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.12);
  padding: 0.35rem;
  z-index: 10035;
}
.wo-store-search__suggestions.is-hidden {
  display: none;
}
.wo-store-search__suggestions a {
  display: block;
  padding: 0.55rem 0.7rem;
  border-radius: 12px;
  text-decoration: none;
}
.wo-store-search__suggestions a:hover {
  background: #f8faf9;
}
.wo-store-search__suggestions strong {
  display: block;
  color: #0f172a;
  font-size: 0.84rem;
}
.wo-store-search__suggestions span {
  display: block;
  color: #64748b;
  font-size: 0.75rem;
}
.wo-store-bag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  color: #334155;
  font-size: 0.82rem;
  max-width: 200px;
}
.wo-store-bag__icon {
  color: var(--wo-brand-primary-dark);
  flex-shrink: 0;
}
.wo-store-bag__text strong {
  color: #0f172a;
}
.wo-store-bag__text span {
  color: var(--wo-brand-primary);
  font-weight: 600;
}

.wo-store-profile {
  background: #fff;
  border-bottom: 1px solid #e7ece9;
}
.wo-store-profile__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.65rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem 1rem;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.wo-store-profile__inner--compact {
  justify-content: flex-start;
}
.wo-store-profile__identity {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
}
.wo-store-profile__logo-hit {
  flex-shrink: 0;
  color: inherit;
  text-decoration: none;
  outline-offset: 3px;
}
.wo-store-profile__logo-hit:focus-visible {
  border-radius: 12px;
}
.wo-store-profile__inner--compact .wo-store-profile__type {
  max-width: none;
  font-size: 0.92rem;
}
.wo-store-profile__brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
  flex: 1 1 auto;
  flex-wrap: nowrap;
}
.wo-store-profile__home {
  color: inherit;
  text-decoration: none;
}
.wo-store-profile__home:hover {
  text-decoration: underline;
}
.wo-store-profile__logo {
  height: 62px !important;
  border-radius: 12px !important;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wo-store-profile__logo img {
  display: block;
  height: 100%;
  width: auto;
  max-width: min(200px, 55vw);
  object-fit: contain;
}
.wo-store-profile__logo span {
  color: var(--wo-brand-primary);
  font-size: 1.15rem;
  font-weight: 800;
}
.wo-store-profile__meta {
  min-width: 0;
}
.wo-store-profile__meta--row {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.3rem 0.4rem;
  min-width: 0;
  flex: 1 1 auto;
}
.wo-store-profile__inline-sep {
  color: #cbd5e1;
  font-weight: 700;
  flex-shrink: 0;
  user-select: none;
}
.wo-store-profile__title {
  margin: 0;
  color: #0f172a;
  font-size: clamp(1.05rem, 2.4vw, 1.45rem);
  line-height: 1.2;
  letter-spacing: -0.03em;
  min-width: 0;
  flex: 0 1 auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: min(44vw, 19rem);
}
.wo-store-profile__title .wo-store-profile__home {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.wo-store-profile__title .wo-store-profile__home:hover {
  color: var(--wo-brand-primary);
}
.wo-store-profile__type {
  margin: 0;
  color: #475569;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: min(28vw, 9.5rem);
  min-width: 0;
}
.wo-store-profile__desc {
  margin: 0;
  color: #db2777;
  font-size: 0.82rem;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1 1 auto;
  min-width: 0;
  max-width: min(52vw, 22rem);
}
.wo-store-profile__stats {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
  margin-left: auto;
  gap: 0.4rem 0.5rem;
  flex: 0 0 auto;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 0.88rem;
  line-height: 1.35;
  white-space: nowrap;
}
.wo-store-profile__stats-sep {
  color: #cbd5e1;
  font-weight: 700;
  flex-shrink: 0;
  user-select: none;
}
.wo-store-profile__stat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.25rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e5e7eb;
  color: #475569;
  font-size: 0.92rem;
  font-weight: 700;
  white-space: nowrap;
}
.wo-store-profile__stat--rating {
  color: #d97706;
}
.wo-store-profile__stat--rating-new {
  color: #64748b;
  font-weight: 600;
}
.wo-store-profile__stats .wo-store-profile__stat {
  min-height: 0;
  padding: 0.26rem 0.55rem;
  font-size: 0.84rem;
}

.wo-store-hero {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  width: 100%;
  min-height: clamp(140px, 22vw, 260px);
  background: #1e3a2f;
}
.wo-store-hero__main {
  position: relative;
  flex: 0 0 70%;
  width: 70%;
  max-width: 70%;
  min-height: clamp(140px, 22vw, 260px);
}
.wo-store-hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.wo-store-hero__slider,
.wo-store-hero__fallback {
  position: absolute;
  inset: 0;
}
.wo-store-hero__fallback {
  background: linear-gradient(135deg, var(--wo-brand-primary-dark) 0%, var(--wo-brand-primary) 40%, var(--wo-brand-accent-bright) 100%);
}
.wo-store-hero__slider {
  overflow: hidden;
}
.wo-store-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
}
.wo-store-hero__slide.is-active {
  opacity: 1;
  z-index: 1;
}
.wo-store-hero__slide-hit {
  position: absolute;
  inset: 0;
  display: block;
  text-decoration: none;
  color: inherit;
}
.wo-store-hero__slide-hit:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.95);
  outline-offset: -2px;
  z-index: 2;
}
.wo-store-hero__slide-hit img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.wo-store-hero__nav {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}
.wo-store-hero__nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  border: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  line-height: 1;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  pointer-events: auto;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(6px);
  transition: background 0.2s ease, transform 0.15s ease;
}
.wo-store-hero__nav-btn:hover {
  background: rgba(15, 23, 42, 0.65);
}
.wo-store-hero__nav-btn:active {
  transform: translateY(-50%) scale(0.96);
}
.wo-store-hero__nav-btn--prev {
  left: 0.65rem;
}
.wo-store-hero__nav-btn--next {
  right: 0.65rem;
}
.wo-store-hero__progress {
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  pointer-events: auto;
}
.wo-store-hero__progress-seg {
  flex: 1;
  min-width: 0;
  height: 3px;
  border-radius: 2px;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.35);
  transition: background 0.25s ease, height 0.2s ease, box-shadow 0.2s ease;
}
.wo-store-hero__progress-seg:hover {
  background: rgba(255, 255, 255, 0.55);
}
.wo-store-hero__progress-seg.is-active {
  background: #facc15;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15);
  height: 4px;
}
.wo-store-hero__overlay {
  position: relative;
  z-index: 2;
  min-height: clamp(140px, 22vw, 260px);
  display: flex;
  align-items: flex-end;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.15) 45%, transparent 75%);
  pointer-events: none;
}
.wo-store-hero__main--multi .wo-store-hero__content {
  padding-bottom: 2.35rem;
}
.wo-store-hero__content-hit {
  display: block;
  color: inherit;
  text-decoration: none;
  outline-offset: 2px;
  pointer-events: auto;
}
.wo-store-hero__content-hit:focus-visible .wo-store-hero__title {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.wo-store-hero__content-hit--nolink {
  cursor: default;
  pointer-events: none;
}
.wo-store-hero__content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1rem 1.15rem;
  width: 100%;
}
.wo-store-hero__title {
  margin: 0 0 0.35rem;
  font-size: clamp(1.25rem, 3.2vw, 1.85rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.15;
  max-width: 20ch;
}
.wo-store-hero__tagline {
  margin: 0;
  font-size: clamp(0.82rem, 1.9vw, 0.98rem);
  color: rgba(255, 255, 255, 0.92);
  max-width: 36ch;
  line-height: 1.45;
}
.wo-store-hero__title.wo-store-hero__line--hidden,
.wo-store-hero__tagline.wo-store-hero__line--hidden {
  display: none !important;
  margin: 0;
}
.wo-store-hero__overlay--notext {
  min-height: 0;
  background: transparent;
}
.wo-store-hero__overlay--notext .wo-store-hero__content {
  padding-top: 0;
  padding-bottom: 0.35rem;
}
.wo-store-hero__side {
  flex: 0 0 30%;
  width: 30%;
  max-width: 30%;
  position: relative;
  overflow: hidden;
  min-height: clamp(140px, 22vw, 260px);
  background: linear-gradient(160deg, var(--wo-brand-primary) 0%, var(--wo-brand-primary-dark) 55%, #0f3d26 100%);
}
.wo-store-hero__side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
}
.wo-store-hero__side--sample {
  background: var(--wo-brand-surface-tint);
}
.wo-store-hero__side--custom {
  background: var(--wo-brand-surface-tint);
}
.wo-store-hero__side-sample-link {
  position: absolute;
  inset: 0;
  display: block;
  color: inherit;
  text-decoration: none;
  outline-offset: 2px;
}
.wo-store-hero__side-sample-link:focus-visible {
  outline: 2px solid var(--wo-brand-mint-strong);
}
.wo-store-hero__side-sample {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.wo-store-hero__side-sample__art {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  position: absolute;
  inset: 0;
}
.wo-store-hero__side-sample__copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.65rem 0.75rem 0.75rem;
  background: linear-gradient(to top, rgba(15, 61, 38, 0.92) 0%, rgba(15, 61, 38, 0.4) 55%, transparent 100%);
  pointer-events: none;
}
.wo-store-hero__side-sample__headline {
  margin: 0 0 0.15rem;
  font-size: clamp(0.82rem, 1.35vw, 0.98rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}
.wo-store-hero__side-sample__line {
  margin: 0 0 0.35rem;
  font-size: clamp(0.72rem, 1.15vw, 0.82rem);
  font-weight: 600;
  color: #fef9c3;
}
.wo-store-hero__side-sample__hint {
  margin: 0;
  font-size: clamp(0.62rem, 1vw, 0.72rem);
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.88);
  max-width: 32ch;
}

@media (max-width: 720px) {
  .wo-store-hero {
    flex-direction: column;
  }
  .wo-store-hero__main,
  .wo-store-hero__side {
    flex: none;
    width: 100%;
    max-width: 100%;
  }
  /* Hide right promo block on mobile */
  .wo-store-hero__side {
    display: none !important;
  }
  .wo-store-hero__nav-btn {
    width: 2.1rem;
    height: 2.1rem;
    font-size: 1.2rem;
  }
  .wo-store-hero__nav-btn--prev {
    left: 0.4rem;
  }
  .wo-store-hero__nav-btn--next {
    right: 0.4rem;
  }
  .wo-store-hero__progress {
    left: 0.55rem;
    right: 0.55rem;
    bottom: 0.55rem;
  }
}

.wo-store-cat-slider-wrap {
  max-width: 1200px;
  margin: 0.85rem auto 0;
  padding: 0 1rem;
  position: relative;
}
.wo-store-cat-page-search {
  max-width: 1200px;
  margin: 0.65rem auto 0;
  padding: 0 1rem;
}
.wo-store-cat-slider-wrap + .wo-store-cat-page-search {
  margin-top: 0.35rem;
}
.wo-store-search.wo-store-search--block {
  width: 100%;
  max-width: min(28rem, 100%);
}
.wo-store-cat-slider-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.55rem;
}
.wo-store-cat-slider-head h2 {
  margin: 0;
font-size: 1.65rem;
  color: var(--wo-brand-primary-dark);
}
.wo-store-cat-slider-nav {
  position: absolute;
  inset: 50% 0 auto 0;
  z-index: 12;
  display: flex;
  justify-content: space-between;
  gap: 0.4rem;
  padding: 0 0.35rem;
  pointer-events: none;
}
.wo-store-cat-slider-btn {
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.32);
  background: rgba(255, 255, 255, 0.96);
  color: #334155;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.18);
  backdrop-filter: blur(8px);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  transform: translateY(-50%) scale(0.92);
  transition: opacity 0.18s ease, transform 0.18s ease, background 0.18s ease, color 0.18s ease;
  pointer-events: none;
}
.wo-store-cat-slider-wrap:hover .wo-store-cat-slider-btn,
.wo-store-cat-slider-wrap:focus-within .wo-store-cat-slider-btn {
  opacity: 1;
  transform: translateY(-50%) scale(1);
  pointer-events: auto;
}
.wo-store-cat-slider-btn:hover {
  background: #fff;
  color: var(--wo-brand-primary);
  transform: translateY(-50%) scale(1.08);
}
.wo-store-cat-slider {
  display: flex;
  gap: 0.7rem;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0.2rem 0 0.4rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x proximity;
  scroll-behavior: auto;
  touch-action: pan-x;
  cursor: auto;
  user-select: none;
  overscroll-behavior-x: contain;
}
.wo-store-cat-slider.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}
.wo-store-cat-slider.is-dragging .wo-store-cat-card {
  pointer-events: none;
}
.wo-store-cat-slider::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}
.wo-store-cat-card {
  scroll-snap-align: start;
  flex: 0 0 122px;
  text-decoration: none;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  color: #0f172a;
  cursor: pointer;
}
.wo-store-cat-card,
.wo-store-cat-card * {
  cursor: pointer;
  user-select: none;
  -webkit-user-drag: none;
}
.wo-store-cat-slider.is-dragging .wo-store-cat-card,
.wo-store-cat-slider.is-dragging .wo-store-cat-card * {
  cursor: grabbing;
}
.wo-store-cat-card__media {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #edf2ef;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}
.wo-store-cat-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.wo-store-cat-card__fallback {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--wo-brand-primary-dark);
}
.wo-store-cat-card__name {
  display: block;
  margin-top: 0.55rem;
  text-align: center;
  font-size: 0.92rem;
  font-weight: 800;
  color: #1f2937;
  line-height: 1.25;
}
.wo-store-cat-card__count {
  display: none;
}

.wo-store-main {
  padding: 1.25rem 0 4rem;
}
.wo-store-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.wo-store-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
  margin-bottom: 1.25rem;
}
.wo-store-view-cart,
.wo-store-checkout-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
}
.wo-store-view-cart {
  background: var(--wo-brand-primary);
  color: #fff;
  border: none;
}
.wo-store-checkout-link {
  background: #fff;
  color: var(--wo-brand-primary);
  border: 2px solid var(--wo-brand-primary);
}
.wo-store-section-title {
  margin: 0 0 1rem;
  font-size: 1.95rem;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.02em;
}
.wo-store-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0 0 1.2rem;
}
.wo-store-filter-bar--sort {
  justify-content: flex-end;
}
.wo-store-sortbox {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.wo-store-sortbox label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #475569;
}
.wo-store-sortbox__select {
  border: 1px solid #d8e3dc;
  background: #fff;
  color: var(--wo-brand-primary-dark);
  border-radius: 999px;
  padding: 0.42rem 0.85rem;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 700;
}
.wo-store-sortbox__select:focus {
  outline: none;
  border-color: var(--wo-brand-mint-strong);
  box-shadow: 0 0 0 3px rgba(var(--wo-brand-glow-rgb), 0.15);
}
.wo-brand-filter-modal {
  position: relative;
  width: min(400px, 94vw);
  border: 1px solid #d1d5db;
  border-radius: 10px;
  padding: 0;
  background: #fff;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.18);
}
.wo-brand-filter-modal::backdrop {
  background: rgba(15, 23, 42, 0.45);
}
.wo-brand-filter-modal__close {
  position: absolute;
  top: 0.55rem;
  right: 0.5rem;
  z-index: 2;
  border: none;
  background: transparent;
  font-size: 1.5rem;
  line-height: 1;
  color: #64748b;
  cursor: pointer;
  padding: 0.25rem 0.45rem;
  border-radius: 8px;
}
.wo-brand-filter-modal__close:hover {
  background: #f1f5f9;
  color: #0f172a;
}
.wo-brand-filter-modal__inner {
  padding: 2.25rem 1rem 1rem;
}
.wo-brand-filter-section {
  color: #333e48;
}
.wo-brand-filter-section__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border: none;
  background: transparent;
  padding: 0.35rem 0 0.65rem;
  cursor: pointer;
  font: inherit;
  text-align: left;
}
.wo-brand-filter-section__toggle:hover .wo-brand-filter-section__title {
  color: #0f172a;
}
.wo-brand-filter-section__title {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
}
.wo-brand-filter-section__chevron {
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  margin-right: 0.15rem;
  border-right: 2px solid #64748b;
  border-bottom: 2px solid #64748b;
  transform: rotate(-135deg);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.wo-brand-filter-section__toggle[aria-expanded="false"] .wo-brand-filter-section__chevron {
  transform: rotate(45deg);
}
.wo-brand-filter-section__panel.is-collapsed {
  display: none;
}
.wo-brand-filter-search {
  position: relative;
  margin-bottom: 0.65rem;
}
.wo-brand-filter-search__icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  display: flex;
  pointer-events: none;
}
.wo-brand-filter-search__input {
  width: 100%;
  box-sizing: border-box;
  padding: 0.55rem 0.65rem 0.55rem 2.35rem;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font: inherit;
  font-size: 0.92rem;
  color: #0f172a;
  background: #fff;
}
.wo-brand-filter-search__input::placeholder {
  color: #94a3b8;
}
.wo-brand-filter-search__input:focus {
  outline: none;
  border-color: #94a3b8;
  box-shadow: 0 0 0 3px rgba(148, 163, 184, 0.25);
}
.wo-brand-filter-list {
  max-height: min(48vh, 320px);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding-right: 0.15rem;
}
.wo-brand-filter-modal__option {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.4rem 0.15rem;
  border-radius: 6px;
  cursor: pointer;
  border: none;
  background: transparent;
}
.wo-brand-filter-modal__option:hover {
  background: #f8fafc;
}
.wo-brand-filter-modal__option input.wo-brand-filter-cb {
  appearance: none;
  -webkit-appearance: none;
  width: 1.1rem;
  height: 1.1rem;
  margin: 0;
  flex-shrink: 0;
  border: 1px solid #cbd5e1;
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
}
.wo-brand-filter-modal__option input.wo-brand-filter-cb:checked {
  background: var(--wo-brand-primary-dark);
  border-color: var(--wo-brand-primary-dark);
  box-shadow: inset 0 0 0 2px #fff;
}
.wo-brand-filter-modal__option input.wo-brand-filter-cb:focus-visible {
  outline: 2px solid var(--wo-brand-mint-strong);
  outline-offset: 2px;
}
.wo-brand-filter-modal__option-text {
  font-size: 0.92rem;
  color: #333e48;
  line-height: 1.35;
}
.wo-brand-filter-modal__actions {
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid #e2e8f0;
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
}
.wo-brand-filter-modal__actions button {
  border: 1px solid #cbd5e1;
  background: #fff;
  color: #334155;
  border-radius: 8px;
  padding: 0.5rem 0.95rem;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 600;
  cursor: pointer;
}
.wo-brand-filter-modal__actions button:hover {
  background: #f8fafc;
}
.wo-brand-filter-modal__actions #wo-brand-filter-apply {
  background: var(--wo-brand-primary-dark);
  color: #fff;
  border-color: var(--wo-brand-primary-dark);
}
.wo-brand-filter-modal__actions #wo-brand-filter-apply:hover {
  background: var(--wo-brand-primary);
  border-color: var(--wo-brand-primary);
}
.wo-store-filter-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  border: 1px solid #d1fae5;
  background: #fff;
  color: var(--wo-brand-primary);
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
}
.wo-store-filter-pill.is-active,
.wo-store-filter-pill:hover {
  background: var(--wo-brand-primary);
  border-color: var(--wo-brand-primary);
  color: #fff;
}
.wo-store-cat-block {
  margin-bottom: 2rem;
  scroll-margin-top: 6.5rem;
}
.wo-store-cat-heading {
  margin: 0 0 0.85rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--wo-brand-primary-dark);
}
.wo-store-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.85rem;
}
.wo-store-card-wrap {
  position: relative;
}
.wo-store-card-wrap .is-hidden {
  display: none !important;
}
.wo-store-card-wrap {
  cursor: pointer;
}
.wo-store-card-wrap.is-out-of-stock {
  cursor: not-allowed;
}
.wo-store-card-wrap.is-out-of-stock .wo-store-card {
  opacity: 0.72;
}
.wo-store-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e7ece9;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  position: relative;
  z-index: 1;
}
.wo-store-card-wrap:hover .wo-store-card,
.wo-store-card-wrap:focus-within .wo-store-card {
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
  transform: translateY(-2px);
}
.wo-store-card__media {
  aspect-ratio: 4 / 3;
  background: linear-gradient(180deg, #f1f5f4 0%, #e7ece9 100%);
  overflow: hidden;
  position: relative;
  touch-action: manipulation;
  -webkit-touch-callout: none;
}
.wo-store-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
}
.wo-store-card__stock-overlay {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 6;
  background: #ff0000;
  color: #fff;
  border-radius: 4px;
  padding: 0.35rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}
.wo-store-card__minus-form {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  margin: 0;
  z-index: 5;
}
.wo-store-card__minus {
  min-width: 2.75rem;
  min-height: 2.75rem;
  width: 2.75rem;
  height: 2.75rem;
  border: none;
  border-radius: 999px;
  background: #dc2626;
  color: #fff;
  font-size: 1.25rem;
  line-height: 1;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(220, 38, 38, 0.3);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.wo-store-card__minus:hover {
  background: #b91c1c;
}
.wo-store-card__qty {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  min-width: 2rem;
  height: 2rem;
  padding: 0 0.4rem;
  border-radius: 999px;
  background: var(--wo-brand-accent-border);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  box-shadow: 0 4px 10px rgba(var(--wo-brand-glow-rgb), 0.28);
  pointer-events: none;
}
.wo-store-card__info-btn {
  position: absolute;
  right: 0.35rem;
  bottom: 0.35rem;
  min-width: 2.75rem;
  min-height: 2.75rem;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border-radius: 999px;
  border: none;
  background: #e5e7eb;
  color: #334155;
  font-size: 0.95rem;
  font-weight: 700;
  z-index: 6;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.wo-product-modal {
  width: min(920px, 96vw);
  border: none;
  border-radius: 14px;
  padding: 1rem;
  background: #f8faf9;
}
.wo-product-modal::backdrop {
  background: rgba(15, 23, 42, 0.55);
}
.wo-product-modal__close {
  border: none;
  background: transparent;
  color: #dc2626;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}
.wo-product-modal__head {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 1rem;
  align-items: start;
}
.wo-product-modal__image-wrap {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}
.wo-product-modal__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.wo-product-modal__meta h3 {
  margin: 0 0 0.35rem;
  color: #0f172a;
  font-size: 1.7rem;
  line-height: 1.15;
}
.wo-product-modal__meta p {
  margin: 0.2rem 0;
  color: #475569;
}
.wo-product-modal__price {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.08rem;
  font-size: 1.2rem;
  color: var(--wo-brand-primary-dark) !important;
  font-weight: 800;
}
.wo-product-modal__price-old {
  font-size: 0.78rem;
  color: #64748b !important;
  text-decoration: line-through;
  font-weight: 600;
  line-height: 1.1;
}
.wo-product-modal__price-offer {
  font-size: 1.2rem;
  color: #b91c1c !important;
  font-weight: 800;
  line-height: 1.1;
}
.wo-product-modal__stock {
  margin-top: 0.2rem;
  color: #475569 !important;
  font-size: 0.9rem;
  font-weight: 700;
}
.wo-product-modal__msg {
  margin-top: 0.25rem;
  color: #dc2626 !important;
  font-size: 0.86rem;
  font-weight: 700;
}
.wo-product-modal__qty-row {
  margin-top: 0.7rem;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}
.wo-product-modal__qty-row button {
  width: 3rem;
  height: 3rem;
  border: none;
  border-radius: 999px;
  background: #dc2626;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}
.wo-product-modal__qty-row span {
  min-width: 3rem;
  height: 3rem;
  border-radius: 12px;
  background: #e5e7eb;
  color: #0f172a;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.wo-product-modal__related {
  margin-top: 1rem;
}
.wo-product-modal__related h4 {
  margin: 0 0 0.6rem;
  font-size: 1.25rem;
  color: #1e293b;
}
.wo-product-modal__related-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 0.6rem;
}
.wo-product-modal__related-item {
  border: 1px solid #d1d5db;
  border-radius: 10px;
  background: #fff;
  padding: 0.35rem;
  text-align: left;
  cursor: pointer;
}
.wo-product-modal__related-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
}
.wo-product-modal__related-item span {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.78rem;
  color: #0f172a;
}
.wo-product-modal__related-item small {
  display: block;
  color: var(--wo-brand-primary);
  font-weight: 700;
}
.wo-product-modal__basket-btn {
  margin-top: 1rem;
  width: 100%;
  border: none;
  border-radius: 999px;
  background: #dc2626;
  color: #fff;
  min-height: 3.25rem;
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}
.wo-product-modal__basket-btn strong {
  font-size: 1.05rem;
  white-space: nowrap;
}
.wo-product-modal__basket-btn:hover {
  background: #b91c1c;
}
.wo-store-card__body {
  padding: 0.65rem 0.75rem 0.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.2rem;
}
.wo-store-card__eyebrow {
  margin: 0;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  color: #64748b;
}
.wo-store-card__name {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
  flex: 1;
}
/* PDP title: looks like body text, no underline / blue link chrome */
.wo-store-card__name-link {
  color: inherit;
  text-decoration: none;
  font: inherit;
  line-height: inherit;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.wo-store-card__name-link:hover,
.wo-store-card__name-link:visited,
.wo-store-card__name-link:active {
  color: inherit;
  text-decoration: none;
}
.wo-store-card__name-link:focus {
  outline: none;
}
.wo-store-card__name-link:focus-visible {
  outline: 2px solid var(--wo-brand-primary, #15803d);
  outline-offset: 2px;
  border-radius: 2px;
}
.wo-store-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: 0.45rem;
}
.wo-store-card__price {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  flex-wrap: wrap;
  font-weight: 700;
  color: var(--wo-brand-primary-dark);
  font-size: 0.95rem;
}
.wo-store-card__price-old {
  color: #64748b;
  text-decoration: line-through;
  font-weight: 600;
  font-size: 0.82rem;
  margin-right: 0.35rem;
}
.wo-store-card__price--offer {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.08rem;
  line-height: 1.1;
}
.wo-store-card__price--offer .wo-store-card__price-old {
  margin-right: 0;
  font-size: 0.74rem;
}
.wo-store-card__price-offer {
  color: #b91c1c;
  font-weight: 800;
}
.wo-store-card__hint {
  color: #64748b;
  font-size: 0.76rem;
  font-weight: 600;
}
.wo-store-footer-note {
  margin: 2rem 0 0;
  text-align: center;
  font-size: 0.82rem;
  color: #64748b;
}
.wo-store-empty {
  margin: 0 0 1.5rem;
  padding: 1.25rem;
  background: #fff;
  border: 1px dashed #cbd5e1;
  border-radius: 12px;
  color: #64748b;
  text-align: center;
}
@keyframes wo-store-unavailable-glow {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.35), 0 0 0 0 rgba(248, 113, 113, 0.2);
    border-color: #f87171;
    text-shadow: 0 0 0 transparent;
  }
  50% {
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.12), 0 6px 28px rgba(185, 28, 28, 0.22);
    border-color: #ef4444;
    text-shadow: 0 0 12px rgba(254, 202, 202, 0.9);
  }
}
@keyframes wo-store-unavailable-shake {
  0%,
  100% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-3px);
  }
  40% {
    transform: translateX(3px);
  }
  60% {
    transform: translateX(-2px);
  }
  80% {
    transform: translateX(2px);
  }
}
.wo-store-empty--unavailable {
  color: #b91c1c;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #fff5f5 0%, #fee2e2 45%, #fecaca 100%);
  border: 2px solid #f87171;
}
.wo-store-empty--unavailable::after {
  content: "";
  display: block;
  margin-top: 0.35rem;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #dc2626, #ef4444, #dc2626, transparent);
  background-size: 200% 100%;
}
@keyframes wo-store-unavailable-underline {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .wo-store-empty--unavailable::after {
    background: #dc2626;
    background-size: auto;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .wo-store-empty--unavailable {
    animation: wo-store-unavailable-glow 2.4s ease-in-out infinite, wo-store-unavailable-shake 7s ease-in-out infinite;
  }
  .wo-store-empty--unavailable::after {
    animation: wo-store-unavailable-underline 2.2s linear infinite;
  }
}
.wo-store-disabled-illus {
  margin: 0 -1rem;
  padding: 0;
  border: 0;
  width: calc(100% + 2rem);
  max-width: none;
  box-sizing: border-box;
}
.wo-store-disabled-illus img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}
.wo-store-home-fullrow {
  margin: 0;
  width: 100%;
  background: #fff;
}
.wo-store-home-fullrow__hit {
  display: block;
  text-decoration: none;
  color: inherit;
}
.wo-store-home-fullrow__title {
  margin: 0;
  padding: 0.65rem 1rem;
  font-size: 1.55rem;
  font-weight: 800;
  color: #0f172a;
  background: #fff;
}
.wo-store-home-fullrow__subtitle {
  margin: 0;
  padding: 0.75rem 1rem 0.25rem;
  font-size: 1.55rem;
  font-weight: 800;
  color: #0f172a;
}
.wo-store-home-fullrow-products {
  padding: 0.25rem 1rem 1rem;
}
.wo-store-home-fullrow-products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 0.75rem;
}
.wo-store-home-fullrow-products__card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 0.55rem;
}
.wo-store-home-fullrow-products__card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  margin-bottom: 0.45rem;
}
.wo-store-home-fullrow-products__card h5 {
  margin: 0 0 0.2rem;
  font-size: 0.86rem;
  line-height: 1.3;
  color: #0f172a;
}
.wo-store-home-fullrow-products__card p {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--wo-brand-primary);
}
.wo-store-home-fullrow img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}
.wo-store-results-summary {
  margin: -0.3rem 0 1rem;
  color: #64748b;
  font-size: 0.92rem;
}
.wo-store-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.wo-store-pagination__link,
.wo-store-pagination__current {
  min-width: 2.25rem;
  height: 2.25rem;
  padding: 0 0.75rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
}
.wo-store-pagination__link {
  background: #fff;
  border: 1px solid #d8e3dc;
  color: var(--wo-brand-primary);
}
.wo-store-pagination__link:hover {
  background: var(--wo-brand-surface-tint);
}
.wo-store-pagination__current {
  background: var(--wo-brand-primary);
  color: #fff;
}

.wo-store-fab-cart {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 10025;
  width: 3.35rem;
  height: 3.35rem;
  border-radius: 999px;
  background: var(--wo-brand-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(var(--wo-brand-primary-rgb), 0.45);
  text-decoration: none;
}
.wo-store-fab-cart:hover {
  background: var(--wo-brand-primary-mid);
}
.wo-store-fab-cart__count {
  position: absolute;
  top: -0.15rem;
  right: -0.15rem;
  min-width: 1.35rem;
  height: 1.35rem;
  padding: 0 0.3rem;
  border-radius: 999px;
  background: #ef4444;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wo-store-fab-cart__count--empty {
  display: none;
}

/* Mobile bottom tab bar (wa storefront) — line icons + labels */
.wo-store-mnav {
  display: none;
}

@media (max-width: 899px) {
  body.wo-public {
    padding-bottom: calc(4.1rem + env(safe-area-inset-bottom, 0px));
  }

  .wo-store-mnav {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10040;
    background: #fff;
    border-top: 1px solid #fce7f3;
    box-shadow: 0 -6px 24px rgba(190, 24, 93, 0.08);
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }

  .wo-store-mnav__inner {
    display: flex;
    justify-content: space-around;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.42rem 0.25rem 0.58rem;
  }

  .wo-store-mnav__item {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0.24rem;
    text-decoration: none;
    color: #090808;
    font-size: 0.76rem;
    font-weight: 600;
    font-family: inherit;
    padding: 0.15rem 0.1rem;
    border-radius: 10px;
    -webkit-tap-highlight-color: transparent;
  }

  .wo-store-mnav__item.is-active {
    color: var(--wo-brand-primary);
    font-weight: 700;
  }

  .wo-store-mnav__item:active {
    opacity: 0.85;
  }

  .wo-store-mnav__icon-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 1.85rem;
  }

  .wo-store-mnav__item svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
  }

  .wo-store-mnav__label {
    line-height: 1.15;
    text-align: center;
    white-space: nowrap;
    letter-spacing: 0.01em;
  }

  .wo-store-mnav__cart-badge {
    position: absolute;
    top: -0.35rem;
    right: -0.45rem;
    min-width: 1rem;
    height: 1rem;
    padding: 0 0.25rem;
    border-radius: 999px;
    background: #be185d;
    color: #fff;
    font-size: 0.6rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
  }

  .wo-store-fab-cart {
    bottom: calc(4.35rem + env(safe-area-inset-bottom, 0px));
  }
}

@media (min-width: 900px) {
  .wo-store-menu-btn__text {
    display: inline;
  }
  .wo-store-cats-desktop {
    display: flex;
  }
  .wo-store-search {
    width: min(240px, 22vw);
  }
  .wo-store-bag__text {
    white-space: nowrap;
  }
  .wo-store-product-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
  }
}

@media (max-width: 640px) {
  .wo-store-topbar__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.55rem 0.75rem;
  }
  .wo-store-topbar__actions {
    flex: 1 1 auto;
    margin-left: auto;
    justify-content: flex-end;
    align-items: center;
    gap: 0.5rem 0.75rem;
  }
  .wo-store-topbar__quick-actions {
    width: 100%;
    margin-left: auto;
    justify-content: flex-start;
  }
  .wo-store-topbar__quick-actions .wo-lang-switch {
    margin-left: auto;
  }
  .wo-store-search {
    order: 3;
    width: 100%;
    flex: 1 0 100%;
  }
  .wo-store-account-chip {
    order: 4;
    width: 100%;
    justify-content: flex-end;
  }
  .wo-store-bag__text {
    display: none;
  }
  .wo-store-fab-cart {
    bottom: calc(4.35rem + env(safe-area-inset-bottom, 0px));
    right: calc(1rem + env(safe-area-inset-right, 0px));
  }
  .wo-store-profile__inner {
    align-items: center;
    flex-wrap: nowrap;
  }
  .wo-store-profile__brand {
    flex-basis: auto;
    min-width: 0;
  }
  .wo-store-profile__stats {
    display: none;
  }
  .wo-store-cat-card {
    flex-basis: 104px;
  }
  .wo-store-cat-slider-head h2 {
    font-size: 0.98rem;
  }
}

@media (min-width: 641px) and (max-width: 899px) {
  .wo-store-bag__text {
    font-size: 0.78rem;
    max-width: 160px;
  }
}

/* Cart / checkout — same visual family as storefront */
.wo-store-subflow.wo-public {
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
  background: #f4f7f5;
}
.wo-store-subbar {
  position: sticky;
  top: 0;
  z-index: 10030;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #e2e8e8;
}
.wo-store-subbar__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.65rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.wo-store-subbar__inner .wo-store-account-chip {
  margin-left: auto;
}
.wo-store-subbar__inner .wo-lang-switch {
  margin-left: auto;
}
/* Keep drawer menu visible on desktop too (subflow pages: brands, contact, checkout, cart, etc.) */
.wo-store-subflow .wo-store-subbar__inner > .wo-store-menu-btn {
  display: inline-flex;
  flex-shrink: 0;
}
@media (min-width: 900px) {
  .wo-store-subflow .wo-store-subbar__inner > .wo-store-subbar__nav {
    flex: 1 1 auto;
    justify-content: center;
    min-width: 0;
    flex-wrap: wrap;
  }
}
@media (max-width: 899px) {
  .wo-store-subflow .wo-store-subbar__inner {
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.65rem;
  }
  .wo-store-subflow .wo-store-subbar__nav {
    display: none !important;
  }
  .wo-store-subflow .wo-store-subbar__inner > .wo-store-subbar__brand {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-right: auto;
  }
}
.wo-store-subbar__brand {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--wo-brand-primary-dark);
  text-decoration: none;
}
.wo-store-subbar__brand:hover {
  color: var(--wo-brand-primary);
}
.wo-store-subbar__nav {
  display: flex;
  align-items: center;
  gap: 0.5rem 1rem;
  font-size: 0.88rem;
  font-weight: 600;
}
.wo-store-subbar__nav a {
  color: #475569;
  text-decoration: none;
}
.wo-store-subbar__nav a:hover {
  color: var(--wo-brand-primary);
}
.wo-store-subbar__nav span[aria-current="page"] {
  color: var(--wo-brand-primary);
}
.wo-store-subflow__main {
  padding-top: 1rem;
}

/* Category browse page (Instashop-style: sidebar + grid) */
.wo-store-category-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem 2.5rem;
}
.wo-store-category-breadcrumb {
  font-size: 0.82rem;
  color: #64748b;
  margin: 0.5rem 0 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
}
.wo-store-category-breadcrumb a {
  color: #475569;
  text-decoration: none;
  font-weight: 600;
}
.wo-store-category-breadcrumb a:hover {
  color: var(--wo-brand-primary);
}
.wo-store-category-breadcrumb__sep {
  color: #cbd5e1;
  font-weight: 700;
}
.wo-store-category-content {
  max-width: 1200px;
  margin: 0 auto;
}
.wo-store-category-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.wo-store-filter-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  border: 2px solid #e11d48;
  background: #fff;
  color: #e11d48;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(225, 29, 72, 0.12);
}
.wo-store-filter-trigger:hover {
  background: #fff1f2;
}
.wo-store-filter-trigger:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.25);
}
.wo-store-category-title-block h1 {
  margin: 0 0 0.35rem;
  font-size: 1.65rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
}
.wo-store-category-title-block {
  margin-bottom: 1.15rem;
}
.wo-store-filter-dialog {
  width: min(420px, 94vw);
  max-height: min(88vh, 720px);
  padding: 0;
  border: none;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.22);
  overflow: hidden;
}
.wo-store-filter-dialog::backdrop {
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(2px);
}
.wo-store-filter-dialog__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1rem 0.65rem;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
}
.wo-store-filter-dialog__title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
  color: #111827;
}
.wo-store-filter-dialog__close {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 10px;
  background: #f3f4f6;
  color: #374151;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
}
.wo-store-filter-dialog__close:hover {
  background: #e5e7eb;
}
.wo-store-category-filter-card--dialog {
  border: none;
  border-radius: 0;
  margin: 0;
  max-height: calc(min(88vh, 720px) - 64px);
  overflow-y: auto;
  padding: 0.85rem 1rem 1.25rem;
}
.wo-store-category-filter-head--dialog {
  justify-content: flex-end;
  margin-bottom: 0.75rem;
}
.wo-store-category-filter-card {
  --wo-filter-accent: #e11d48;
  --wo-filter-bg: #f3f4f6;
  --wo-filter-text: #111827;
  background: var(--wo-filter-bg);
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1rem 1rem 1.15rem;
}
.wo-store-category-filter-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.wo-store-category-filter-title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--wo-filter-text);
  letter-spacing: -0.02em;
}
.wo-store-category-reset-all {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--wo-filter-accent);
  text-decoration: none;
  flex-shrink: 0;
}
.wo-store-category-reset-all:hover {
  text-decoration: underline;
}
.wo-store-category-filter-sub {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--wo-filter-text);
  letter-spacing: -0.01em;
}
.wo-store-category-filter-divider {
  height: 1px;
  background: #e5e7eb;
  margin: 1rem 0 0.85rem;
}
.wo-store-category-sort-list,
.wo-store-category-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}
.wo-store-category-sort-list li,
.wo-store-category-nav > li {
  margin: 0;
}
.wo-store-filter-opt {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.42rem 0.15rem;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--wo-filter-text);
  text-decoration: none;
  line-height: 1.35;
}
.wo-store-filter-opt:hover {
  background: rgba(255, 255, 255, 0.65);
}
.wo-store-filter-opt__dot {
  width: 18px;
  height: 18px;
  margin-top: 0.1rem;
  flex-shrink: 0;
  border: 2px solid #9ca3af;
  border-radius: 50%;
  background: #fff;
  position: relative;
  box-sizing: border-box;
}
.wo-store-filter-opt.is-active .wo-store-filter-opt__dot {
  border-color: var(--wo-filter-accent);
  background: #fff;
}
.wo-store-filter-opt.is-active .wo-store-filter-opt__dot::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--wo-filter-accent);
}
.wo-store-filter-opt.is-active {
  color: var(--wo-filter-text);
}
.wo-store-filter-opt__text {
  flex: 1;
  min-width: 0;
}
.wo-store-filter-opt__arrow {
  font-weight: 800;
  margin: 0 0.1rem;
}
.wo-store-filter-opt__hint {
  font-weight: 500;
  color: #6b7280;
  font-size: 0.86em;
}
.wo-store-filter-opt--sort-new {
  font-size: 0.84rem;
  margin-top: 0.15rem;
  padding-top: 0.35rem;
  border-top: 1px dashed #d1d5db;
}
.wo-store-filter-opt--sort-new:not(.is-active) {
  color: #4b5563;
}
.wo-store-category-nav .wo-store-filter-opt--cat {
  padding: 0.38rem 0.15rem;
}
.wo-store-filter-opt--sub {
  padding-left: 0.5rem;
  font-weight: 500;
  font-size: 0.86rem;
  color: #374151;
}
.wo-store-category-nav__subs {
  list-style: none;
  margin: 0.1rem 0 0.25rem;
  padding: 0 0 0 1.5rem;
  border-left: none;
}
.wo-store-category-nav__subs li {
  margin: 0;
}
.wo-store-category-meta {
  margin: 0.35rem 0 0;
  color: #64748b;
  font-size: 0.88rem;
}
.wo-store-category-pagination {
  margin-top: 1.25rem;
}

/* Mobile category landing page: wrapped grid, no horizontal category scroller. */
.wo-store-mobile-categories-page {
  overflow-x: hidden;
}
.wo-mobile-categories-main {
  max-width: 1200px;
  padding-bottom: 2.5rem;
}
.wo-mobile-categories-hero {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin: 0.65rem 0 1rem;
}
.wo-mobile-categories-eyebrow {
  margin: 0 0 0.2rem;
  color: var(--wo-brand-primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.wo-mobile-categories-hero h1 {
  margin: 0;
  color: #0f172a;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.wo-mobile-categories-hero p {
  margin: 0.25rem 0 0;
  color: #64748b;
  font-size: 0.9rem;
}
.wo-mobile-categories-view-all {
  border: 1px solid var(--wo-brand-mint-border);
  border-radius: 999px;
  background: #f0fdf4;
  color: var(--wo-brand-primary);
  flex-shrink: 0;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.5rem 0.75rem;
  text-decoration: none;
}
.wo-mobile-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(118px, 1fr));
  gap: 1rem 0.75rem;
  overflow: visible;
}
.wo-mobile-category-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: #0f172a;
  text-decoration: none;
}
.wo-mobile-category-card--all {
  color: #0f172a;
}
.wo-mobile-category-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  background: linear-gradient(135deg, #ff6b9b, #ec407a);
  box-shadow: 0 10px 22px rgba(236, 64, 122, 0.16);
  overflow: hidden;
}
.wo-mobile-category-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.wo-mobile-category-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.45rem;
  height: 2.45rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
  color: #fff;
  font-size: 0.98rem;
  font-weight: 900;
}
.wo-mobile-category-card__title {
  display: block;
  max-width: 100%;
  color: #061528;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.12;
  text-align: center;
  word-break: break-word;
}

@media (max-width: 640px) {
  .wo-mobile-categories-hero {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.65rem;
  }
  .wo-mobile-categories-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.95rem 0.7rem;
  }
  .wo-mobile-category-card__title {
    font-size: clamp(0.82rem, 3.2vw, 1rem);
  }
}

.wo-taxonomy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 0.9rem;
  margin-bottom: 1.6rem;
}
.wo-taxonomy-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem;
  background: #fff;
  border: 1px solid #e5ece9;
  border-radius: 14px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
}
.wo-taxonomy-card strong {
  color: #0f172a;
  font-size: 0.98rem;
}
.wo-taxonomy-card span {
  color: #64748b;
  font-size: 0.83rem;
}
.wo-taxonomy-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.09);
}
.wo-store-footer {
  margin-top: 2rem;
  border-top: 1px solid #dfe8e3;
  background: #fff;
}
.wo-store-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem;
  flex-wrap: wrap;
}
.wo-store-footer__brand {
  display: block;
  color: var(--wo-brand-primary-dark);
  font-size: 1rem;
}
.wo-store-footer__copy {
  margin: 0.25rem 0 0;
  color: #64748b;
  font-size: 0.85rem;
}
.wo-store-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
  font-size: 0.88rem;
  font-weight: 600;
}
.wo-store-footer__nav a {
  color: #475569;
  text-decoration: none;
}
.wo-store-footer__nav a:hover,
.wo-store-footer__nav span[aria-current="page"] {
  color: var(--wo-brand-primary);
}
.wo-auth-card {
  max-width: 520px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #e2e8e8;
  border-radius: 16px;
  padding: 1rem;
}
.wo-feedback-card {
  max-width: 560px;
}
.wo-feedback-card__lead {
  margin: 0 0 0.75rem;
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.5;
}
.wo-feedback-field {
  margin-bottom: 0.75rem;
  text-align: left;
}
.wo-feedback-field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: #334155;
  margin-bottom: 0.25rem;
}
.wo-feedback-field input,
.wo-feedback-field select,
.wo-feedback-field textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 0.55rem 0.65rem;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: inherit;
}
.wo-feedback-hint {
  margin: -0.35rem 0 0.6rem;
  font-size: 0.82rem;
}
.wo-feedback-prompt {
  margin: 0 0 1rem;
  border-radius: 12px;
  border: 1px solid #93c5fd;
  padding: 0.75rem 1rem;
  max-width: 100%;
}
.wo-order-feedback-cell {
  white-space: nowrap;
}
.wo-order-feedback-cell a {
  font-weight: 700;
}
.wo-account-shell {
  max-width: 1100px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 1rem;
}
.wo-account-menu {
  border: 1px solid #e2e8e8;
  border-radius: 12px;
  padding: 0.75rem;
  height: fit-content;
  background: #f8faf9;
}
.wo-account-menu h2 {
  margin: 0 0 0.55rem;
  font-size: 1rem;
}
.wo-account-menu a {
  display: block;
  padding: 0.5rem 0.55rem;
  border-radius: 8px;
  color: #334155;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}
.wo-account-menu a[aria-current="page"],
.wo-account-menu a:hover {
  background: #e8f4ff;
  color: var(--wo-brand-primary);
}
.wo-account-main {
  min-width: 0;
}
.wo-account-kpis {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0.8rem 0 1rem;
}
.wo-account-kpi {
  border: 1px solid #e2e8e8;
  border-radius: 12px;
  padding: 0.7rem 0.8rem;
  background: #fff;
}
.wo-account-kpi span {
  display: block;
  font-size: 0.8rem;
  color: #64748b;
}
.wo-account-kpi strong {
  font-size: 1.2rem;
  color: #0f172a;
}
.wo-account-panel {
  border: 1px solid #e2e8e8;
  border-radius: 12px;
  padding: 0.8rem;
  margin-top: 0.8rem;
  background: #fff;
}
.wo-account-panel h3 {
  margin: 0 0 0.55rem;
  font-size: 1rem;
}
.wo-account-device {
  margin: 0;
  color: #475569;
  line-height: 1.5;
  word-break: break-word;
}
.wo-account-addresses h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  color: #0f172a;
}
.wo-account-addresses__lead {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
}
.wo-account-addresses__count {
  margin: 0 0 0.65rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: #475569;
}
.wo-account-address-actions {
  margin-bottom: 0.85rem;
}
.wo-account-address-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.wo-account-address-empty p {
  margin: 0;
  color: #64748b;
  font-size: 0.9rem;
}
.wo-account-address-card__hd {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.55rem;
}
.wo-account-address-card__hd h4 {
  margin: 0;
  font-size: 0.95rem;
  color: #0f172a;
  flex: 1;
  min-width: 0;
}
.wo-account-address-card__del {
  flex-shrink: 0;
}
.wo-account-address-remove {
  font: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.65rem;
  border-radius: 8px;
  cursor: pointer;
  border: 1px solid #fecaca;
  background: #fff;
  color: #b91c1c;
}
.wo-account-address-remove:hover {
  background: #fef2f2;
}
.wo-account-address-card__body {
  font-size: 0.86rem;
  line-height: 1.55;
  color: #334155;
  word-break: break-word;
}
.wo-account-main .wo-auth-form label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #334155;
  font-size: 0.92rem;
}
.wo-modal {
  border: none;
  border-radius: 14px;
  padding: 0;
  width: min(92vw, 360px);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.3);
}
.wo-modal--invoice {
  width: min(96vw, 520px);
  max-height: 90vh;
}
.wo-invoice-modal__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.1rem;
  border-bottom: 1px solid #e2e8f0;
  background: #f8fafc;
  border-radius: 14px 14px 0 0;
}
.wo-invoice-modal__head h2 {
  margin: 0;
  font-size: 1.12rem;
  color: #0f172a;
}
.wo-invoice-modal__actions {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
}
.wo-invoice-modal__body {
  padding: 1rem 1.1rem;
  max-height: min(70vh, 560px);
  overflow: auto;
  background: #fff;
  border-radius: 0 0 14px 14px;
}
.wo-btn-secondary {
  background: #fff;
  color: #334155;
  border: 1px solid #cbd5e1;
  border-radius: 999px;
  padding: 0.55rem 1rem;
  font-weight: 600;
  font: inherit;
  cursor: pointer;
}
.wo-btn-secondary:hover {
  background: #f1f5f9;
}
.wo-invoice-sheet h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  color: #0f172a;
}
.wo-invoice-block {
  margin: 0.75rem 0;
  font-size: 0.9rem;
  color: #334155;
}
.wo-invoice-meta {
  margin: 0.35rem 0;
  font-size: 0.9rem;
  color: #334155;
  line-height: 1.45;
}
.wo-invoice-sheet--detail {
  margin-top: 0.5rem;
}
.wo-td-num {
  text-align: right;
  white-space: nowrap;
}
.wo-invoice-lines {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  margin-top: 0.5rem;
}
.wo-invoice-lines th,
.wo-invoice-lines td {
  padding: 0.5rem 0.4rem;
  border-bottom: 1px solid #e2e8f0;
  text-align: left;
  vertical-align: top;
}
.wo-invoice-lines th:last-child,
.wo-invoice-lines td:last-child,
.wo-invoice-lines th:nth-child(2),
.wo-invoice-lines td:nth-child(2),
.wo-invoice-lines th:nth-child(3),
.wo-invoice-lines td:nth-child(3) {
  text-align: right;
}
.wo-invoice-totals {
  margin-top: 1rem;
  text-align: right;
  font-weight: 700;
  font-size: 0.95rem;
  color: #0f172a;
}
.wo-order-list-hint {
  margin: 0 0 0.65rem;
  font-size: 0.86rem;
}
.wo-order-row {
  cursor: pointer;
}
.wo-order-row--detail {
  cursor: pointer;
}
.wo-order-row:hover,
.wo-order-row:focus,
.wo-order-row--detail:hover,
.wo-order-row--detail:focus {
  background: #f1f5f9;
  outline: none;
}

/* Customer order detail page (wa/whatsapp-order-customer-order.php) */
.wo-customer-order-detail {
  max-width: 900px;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.wo-customer-order-detail__toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.wo-customer-order-detail__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}
.wo-customer-order-detail__hero {
  margin-bottom: 1rem;
}
.wo-customer-order-detail__title {
  margin: 0 0 0.35rem;
  font-size: 1.45rem;
  color: #0f172a;
}
.wo-customer-order-detail__meta {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}
.wo-customer-order-detail__pill {
  display: inline-flex;
  padding: 0.22rem 0.65rem;
  border-radius: 999px;
  background: var(--wo-brand-surface-tint);
  color: var(--wo-brand-primary);
  font-weight: 700;
  font-size: 0.82rem;
}
.wo-customer-order-detail__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}
.wo-customer-order-detail__card {
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 1rem 1.1rem;
  background: #fff;
}
.wo-customer-order-detail__card--wide {
  grid-column: 1 / -1;
}
.wo-customer-order-detail__h2 {
  margin: 0 0 0.55rem;
  font-size: 1rem;
  color: #0f172a;
}
.wo-customer-order-detail__p {
  margin: 0;
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.5;
}
.wo-customer-order-detail__fine {
  margin: 0.65rem 0 0;
  font-size: 0.78rem;
}
.wo-customer-order-detail__list {
  margin: 0.5rem 0 0;
  padding-left: 1.1rem;
  font-size: 0.88rem;
  color: #334155;
  line-height: 1.55;
}
.wo-customer-order-timeline {
  list-style: none;
  margin: 0.5rem 0 0;
  padding: 0;
  border-left: 2px solid #e2e8f0;
}
.wo-customer-order-timeline__item {
  position: relative;
  padding: 0 0 1rem 1.15rem;
  margin-left: 0.35rem;
}
.wo-customer-order-timeline__item::before {
  content: '';
  position: absolute;
  left: -0.45rem;
  top: 0.25rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: var(--wo-brand-accent-border);
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px #e2e8f0;
}
.wo-customer-order-timeline__time {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: #64748b;
  margin-bottom: 0.2rem;
}
.wo-customer-order-timeline__body {
  font-size: 0.9rem;
  color: #0f172a;
}
.wo-customer-order-timeline__body strong {
  display: block;
  margin-bottom: 0.15rem;
}
.wo-customer-order-totals {
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid #e2e8f0;
  max-width: 22rem;
  margin-left: auto;
}
.wo-customer-order-totals__row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.88rem;
  color: #475569;
  padding: 0.2rem 0;
}
.wo-customer-order-totals__row--grand {
  margin-top: 0.35rem;
  padding-top: 0.45rem;
  border-top: 1px dashed #cbd5e1;
  font-weight: 800;
  font-size: 1rem;
  color: #0f172a;
}
.wo-order-invoice-block {
  grid-column: 1 / -1;
  margin-top: 1rem;
}
.wo-order-invoice-block > .wo-customer-order-detail__h2 {
  max-width: 800px;
  margin: 0 auto 0.55rem;
}
.wo-pos-invoice-sheet {
  max-width: 800px;
  margin: 0.5rem auto 0;
  border: 1px solid #d6d9e0;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
  color: #333;
  font-family: Arial, sans-serif;
  font-size: 12px;
  padding: 20px;
}
.wo-pos-invoice-sheet table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  font-size: 11px;
}
.wo-pos-invoice-sheet th,
.wo-pos-invoice-sheet td {
  border: 1px solid #d8dbe4;
  padding: 7px 8px;
  text-align: left;
  vertical-align: top;
  white-space: normal;
  word-break: break-word;
}
.wo-pos-invoice-sheet th {
  background: #f7f7fb;
  font-weight: 700;
}
.wo-pos-invoice-sheet .bold {
  font-weight: 700;
}
.wo-pos-invoice-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  border-bottom: 2px solid #eee;
  padding-bottom: 16px;
  margin-bottom: 12px;
}
.wo-pos-invoice-company {
  width: 60%;
  display: grid;
  gap: 0.18rem;
  line-height: 1.35;
}
.wo-pos-invoice-company__name {
  display: block;
  font-size: 14px;
  color: #111827;
}
.wo-pos-invoice-logo {
  width: 40%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.wo-pos-invoice-logo img {
  max-width: 170px;
  max-height: 90px;
  object-fit: contain;
}
.wo-pos-invoice-logo span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  border-radius: 18px;
  background: #f0fdf4;
  color: var(--wo-brand-primary);
  font-size: 2rem;
  font-weight: 900;
}
.wo-pos-invoice-title {
  text-align: center;
  margin: 0 0 14px;
}
.wo-pos-invoice-title h3 {
  display: inline-block;
  margin: 0;
  border: 1px solid #f5c2df;
  border-radius: 999px;
  background: #fff5fb;
  color: #c61698;
  font-size: 18px;
  line-height: 1.25;
  padding: 0.45rem 1.35rem;
}
.wo-pos-invoice-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}
.wo-pos-invoice-info table {
  margin-bottom: 0;
}
.wo-pos-invoice-info table,
.wo-pos-invoice-ref,
.wo-pos-invoice-lines,
.wo-pos-invoice-totals table {
  background: #fff;
}
.wo-pos-invoice-info td:first-child {
  width: 38%;
  background: #fbfbfd;
}
.wo-pos-invoice-table-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 16px;
}
.wo-pos-invoice-table-scroll table {
  margin-bottom: 0;
}
.wo-pos-invoice-ref th,
.wo-pos-invoice-lines th {
  text-align: center;
}
.wo-pos-invoice-ref {
  min-width: 600px;
}
.wo-pos-invoice-lines {
  min-width: 660px;
}
.wo-pos-invoice-lines td:nth-child(2) {
  min-width: 190px;
}
.wo-pos-invoice-lines__num {
  width: 2.4rem;
  text-align: center !important;
}
.wo-pos-invoice-totals {
  width: min(100%, 640px);
  margin-left: auto;
  margin-bottom: 16px;
}
.wo-pos-invoice-totals table {
  margin-bottom: 0;
}
.wo-pos-invoice-qr {
  width: 118px;
  text-align: center !important;
  vertical-align: middle !important;
  background: #fff !important;
}
.wo-pos-invoice-qr img {
  width: 100px;
  height: 100px;
}
.wo-pos-invoice-words,
.wo-pos-invoice-note {
  margin: 0.7rem 0;
  border: 1px solid #edf0f5;
  border-radius: 12px;
  background: #fbfcfe;
  padding: 0.65rem 0.75rem;
  line-height: 1.45;
}
.wo-pos-invoice-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 1rem;
}
.wo-pos-invoice-footer div {
  border-top: 1px solid #333;
  padding-top: 0.4rem;
  font-weight: 700;
  text-align: center;
}
.wo-pos-invoice-thanks {
  margin: 1.1rem 0 0;
  text-align: center;
  font-weight: 700;
}
.wo-pos-invoice-fine {
  margin: 0.35rem 0 0;
  color: #64748b;
  font-size: 0.76rem;
  text-align: center;
}
.wo-pos-invoice-powered {
  margin: 0.25rem 0 0;
  color: var(--wo-brand-primary);
  font-size: 0.78rem;
  font-weight: 800;
  text-align: center;
}
@media (max-width: 640px) {
  .wo-pos-invoice-sheet {
    border-radius: 14px;
    padding: 10px;
    font-size: 11px;
  }
  .wo-pos-invoice-header {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.75rem;
    align-items: center;
  }
  .wo-pos-invoice-info {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .wo-pos-invoice-company,
  .wo-pos-invoice-logo {
    width: 100%;
  }
  .wo-pos-invoice-logo {
    justify-content: flex-end;
    margin-top: 0;
  }
  .wo-pos-invoice-logo img,
  .wo-pos-invoice-logo span {
    max-width: 64px;
    max-height: 64px;
  }
  .wo-pos-invoice-logo span {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    font-size: 1.45rem;
  }
  .wo-pos-invoice-sheet th,
  .wo-pos-invoice-sheet td {
    padding: 6px 4px;
  }
  .wo-pos-invoice-lines {
    font-size: 10px;
  }
  .wo-pos-invoice-totals {
    width: 100%;
  }
  .wo-pos-invoice-qr {
    width: 88px;
  }
  .wo-pos-invoice-qr img {
    width: 76px;
    height: 76px;
  }
}

@media print {
  .wo-no-print,
  .wo-store-mnav,
  .wo-store-fab-cart,
  .wo-store-footer {
    display: none !important;
  }
  .wo-customer-order-page .wo-store-profile,
  .wo-customer-order-page .wo-store-subbar {
    display: none !important;
  }
  .wo-customer-order-detail {
    max-width: none;
    padding: 0;
  }
  .wo-customer-order-detail__hero,
  .wo-customer-order-detail__grid,
  .wo-customer-order-detail__card:not(.wo-order-invoice-block) {
    display: none !important;
  }
  .wo-order-invoice-block {
    border: 0 !important;
    padding: 0 !important;
  }
  .wo-pos-invoice-sheet {
    max-width: none;
    border: 0;
    border-radius: 0;
    margin: 0;
    padding: 20px 40px;
    box-shadow: none;
  }
  .wo-pos-invoice-table-scroll {
    overflow: visible;
  }
  body.wo-customer-order-page {
    background: #fff;
  }
}
.wo-invoice-download {
  margin-top: 0;
  padding: 0.55rem 1rem;
  font-size: 0.88rem;
}
.wo-modal::backdrop {
  background: rgba(15, 23, 42, 0.45);
}
.wo-modal__body {
  padding: 1rem;
  background: #fff;
}
.wo-modal__body h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  color: #0f172a;
}
.wo-modal__body p {
  margin: 0 0 0.85rem;
  color: #475569;
}
.wo-modal__actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.45rem;
}
.wo-modal__actions button {
  cursor: pointer;
}
.wo-auth-card h1 {
  margin: 0 0 0.35rem;
  font-size: 1.35rem;
  color: #0f172a;
}
.wo-auth-card p {
  margin: 0 0 0.9rem;
  color: #64748b;
}
.wo-auth-form {
  display: grid;
  gap: 0.65rem;
}
.wo-auth-form input {
  padding: 0.7rem 0.8rem;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  font: inherit;
}
.wo-auth-form select.wo-input {
  padding: 0.7rem 0.8rem;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  font: inherit;
  background: #fff;
  color: inherit;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.wo-auth-form select.wo-input:focus {
  outline: none;
  border-color: var(--wo-brand-accent-border);
  box-shadow: 0 0 0 3px rgba(var(--wo-brand-glow-rgb), 0.15);
}
.wo-auth-foot {
  margin-top: 0.85rem;
  font-size: 0.9rem;
}
.wo-auth-strip {
  margin-bottom: 1rem;
  padding: 0.9rem 1rem;
  background: #fff;
  border: 1px solid #e2e8e8;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.wo-auth-strip strong {
  display: block;
  color: #0f172a;
  margin-bottom: 0.2rem;
}
.wo-auth-strip p {
  margin: 0;
  color: #64748b;
  font-size: 0.88rem;
}
.wo-auth-strip__actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.wo-customer-details {
  margin-top: 0.5rem;
  font-size: 0.82rem;
}
.wo-customer-details summary {
  cursor: pointer;
  color: var(--wo-brand-primary);
  font-weight: 700;
}
.wo-customer-details p {
  margin: 0.35rem 0;
  color: #334155;
}

/* Customers admin (whatsapp-order-customers.php) — modern forms */
.wo-cust-admin-page .wo-cust-admin-filter.dash-panel {
  margin-bottom: 1rem;
  padding: 1rem 1.15rem 1.1rem;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.88) inset,
    0 2px 14px rgba(15, 23, 42, 0.045);
}
.wo-cust-admin-page .wo-cust-admin-filter .wo-dash-orders-filter__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.02em;
  margin-bottom: 0.65rem !important;
}
.wo-cust-form-card {
  margin-bottom: 1rem;
  padding: 1rem 1.15rem 1.15rem;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  background: linear-gradient(165deg, #ffffff 0%, #f8fafc 55%, #fff 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 2px 14px rgba(15, 23, 42, 0.05);
}
.wo-cust-form-card__head {
  margin-bottom: 1rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid #f1f5f9;
}
.wo-cust-form-card__title {
  margin: 0 0 0.35rem !important;
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.02em;
}
.wo-cust-form-card__lead {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #64748b;
  max-width: 52rem;
}
.wo-cust-form {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 220px), 1fr));
  gap: 1rem 1.15rem;
  align-items: start;
}
.wo-cust-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
}
.wo-cust-form__field--full {
  grid-column: 1 / -1;
}
.wo-cust-form__label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.045em;
  color: #64748b;
}
.wo-cust-form__optional {
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  color: #94a3b8;
  font-size: 0.68rem;
}
.wo-cust-form__control {
  width: 100%;
  box-sizing: border-box;
  padding: 0.55rem 0.7rem;
  border-radius: 10px;
  border: 1px solid #cbd5e1;
  font-size: 0.92rem;
  font: inherit;
  background: #fff;
  color: #0f172a;
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease;
}
.wo-cust-form__control::placeholder {
  color: #94a3b8;
}
.wo-cust-form__control:hover {
  border-color: #94a3b8;
}
.wo-cust-form__control:focus {
  outline: none;
  border-color: var(--wo-brand-accent-border);
  box-shadow: 0 0 0 3px rgba(var(--wo-brand-glow-rgb), 0.14);
}
.wo-cust-form__actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  padding-top: 0.85rem;
  margin-top: 0.15rem;
  border-top: 1px solid #f1f5f9;
}
.wo-cust-admin-table-wrap {
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  padding: 1rem 1.1rem 1.05rem;
  background: #fff;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}
.wo-cust-admin-table-wrap__title {
  margin: 0 0 0.75rem !important;
  font-size: 1.02rem;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.02em;
}
.wo-cust-admin-page .wo-cust-admin-table-wrap .wo-table-wrap {
  border-radius: 12px;
  border: 1px solid #f1f5f9;
  overflow: hidden;
}
.wo-cust-admin-page .wo-banner-actions {
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0;
}
.wo-cust-admin-page .wo-banner-actions form {
  display: inline;
  margin: 0;
}
.wo-cust-admin-page .wo-banner-actions .btn {
  padding: 0.35rem 0.65rem;
  font-size: 0.82rem;
  border-radius: 8px;
}
@media (max-width: 520px) {
  .wo-cust-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .wo-account-shell {
    grid-template-columns: 1fr;
  }
  .wo-account-kpis {
    grid-template-columns: 1fr;
  }
}

/* Admin: WhatsApp order detail / list */
.wo-dash-panel-title {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}
.wo-dash-flash {
  padding: 0.55rem 0.65rem;
  border-radius: 8px;
  font-size: 0.88rem;
  margin: 0 0 0.85rem;
}
.wo-dash-flash--ok {
  background: var(--wo-brand-surface-tint);
  color: #065f46;
  border: 1px solid #a7f3d0;
}
.wo-dash-flash--err {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}
.wo-dash-flash--live {
  background: #fffbeb;
  color: #78350f;
  border: 1px solid #fcd34d;
}
.wo-dash-order-meta {
  margin-bottom: 1rem;
}
.wo-dash-order-meta__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}
.wo-dash-order-h3 {
  margin: 0 0 0.25rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #64748b;
  font-weight: 700;
}
.wo-dash-order-value {
  margin: 0;
  font-size: 0.92rem;
  color: #0f172a;
  font-weight: 600;
}
.wo-dash-order-sub {
  margin: 0.15rem 0 0;
  font-size: 0.85rem;
  color: #475569;
}
.wo-dash-order-note {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: #334155;
  word-break: break-word;
}
.wo-dash-order-checkout-ctx .wo-dash-order-dl {
  display: grid;
  grid-template-columns: minmax(7rem, 10rem) 1fr;
  gap: 0.45rem 1rem;
  margin: 0.5rem 0 0;
  font-size: 0.88rem;
}
.wo-dash-order-checkout-ctx .wo-dash-order-dl dt {
  margin: 0;
  font-weight: 700;
  color: #64748b;
}
.wo-dash-order-checkout-ctx .wo-dash-order-dl dd {
  margin: 0;
  color: #0f172a;
  word-break: break-word;
}
.wo-dash-order-dl__long {
  overflow-wrap: anywhere;
}
.wo-dash-order-dl__ua code {
  font-size: 0.78rem;
  white-space: pre-wrap;
}
.wo-checkout-device-details {
  margin-top: 0.65rem;
  padding: 0.5rem 0.65rem;
  border-radius: 10px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  font-size: 0.88rem;
}
.wo-checkout-device-details summary {
  cursor: pointer;
  font-weight: 600;
  color: #334155;
}
.wo-checkout-device-details__lead {
  margin: 0.5rem 0 0.35rem;
  line-height: 1.45;
}
#wo-checkout-device-preview {
  margin: 0.25rem 0 0;
}
.wo-dash-order-status {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.wo-dash-order-status--new {
  background: #fef3c7;
  color: #92400e;
}
.wo-dash-order-status--processing {
  background: #dbeafe;
  color: #1e40af;
}
.wo-dash-order-status--out_for_delivery {
  background: #ede9fe;
  color: #5b21b6;
}
.wo-dash-order-status--delivered {
  background: #d1fae5;
  color: #065f46;
}
.wo-dash-order-status--returned {
  background: #ffedd5;
  color: #9a3412;
}
.wo-dash-order-status--cancelled {
  background: #f1f5f9;
  color: #475569;
}
.wo-dash-order-status-form label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 0.35rem;
}
.wo-dash-order-new-hint {
  margin: 0 0 0.65rem;
  font-size: 0.82rem;
  color: #475569;
}
.wo-dash-order-status-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
}
.wo-dash-order-status-row select {
  min-width: 200px;
  padding: 0.45rem 0.6rem;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
  font-size: 0.88rem;
}
.wo-dash-order-lines__thumb {
  width: 56px;
  vertical-align: middle;
}
.wo-dash-order-lines__thumb img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}
.wo-dash-order-lines__fallback {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #f1f5f9;
  color: #64748b;
  font-weight: 700;
}
.wo-dash-orders-table__link {
  font-weight: 700;
  color: var(--wo-brand-primary);
  text-decoration: none;
}
.wo-dash-orders-table__link:hover {
  text-decoration: underline;
}
tr.wo-dash-orders-table__row--new td:first-child {
  box-shadow: inset 3px 0 0 #f59e0b;
}

/* WhatsApp orders list: filters */
.wo-dash-orders-filter__title {
  margin-bottom: 0.75rem !important;
}
.wo-dash-orders-filter__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 0.85rem 1rem;
  align-items: end;
}
@media (min-width: 640px) {
  .wo-dash-orders-filter__field--grow {
    grid-column: span 2;
  }
}
.wo-dash-orders-filter__actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  padding-top: 0.35rem;
}
.wo-dash-orders-filter__label {
  display: block;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #64748b;
  margin-bottom: 0.3rem;
}
.wo-dash-orders-filter__control {
  width: 100%;
  padding: 0.45rem 0.55rem;
  border-radius: 10px;
  border: 1px solid #cbd5e1;
  font-size: 0.9rem;
  background: #fff;
}
.wo-dash-orders-filter__control:focus {
  outline: none;
  border-color: var(--wo-brand-accent-border);
  box-shadow: 0 0 0 3px rgba(var(--wo-brand-glow-rgb), 0.12);
}
.wo-dash-orders-filter__hint {
  font-size: 0.83rem;
  color: #64748b;
  flex: 1 1 200px;
}

/* Abandoned carts — filter card */
.wo-abandon-filter {
  margin: 0.65rem 0 1rem;
  padding: 1rem 1.1rem 1.05rem;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85) inset,
    0 2px 8px rgba(15, 23, 42, 0.04);
}
.wo-abandon-filter__head {
  margin: 0 0 0.95rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid #f1f5f9;
}
.wo-abandon-filter__title {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.02em;
}
.wo-abandon-filter__lead {
  margin: 0.35rem 0 0;
  font-size: 0.875rem;
  line-height: 1.45;
  color: #64748b;
}

.wo-dash-orders-pager {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem 1rem;
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid #e2e8f0;
  font-size: 0.9rem;
  color: #475569;
}
.wo-dash-orders-pager__summary {
  font-variant-numeric: tabular-nums;
}
.wo-dash-orders-pager__controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
}
.wo-dash-orders-pager__page {
  font-weight: 600;
  color: #334155;
}
.wo-dash-orders-pager__btn.wo-dash-orders-pager__btn--disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

/* Storefront checkout fees breakdown */
.wo-checkout-breakdown {
  margin: 0.65rem 0 0.35rem;
  padding-top: 0.5rem;
  border-top: 1px solid #e2e8f0;
  font-size: 0.92rem;
  color: #334155;
}
.wo-checkout-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
  margin: 0.3rem 0;
}
.wo-checkout-line--warn {
  color: #b45309;
}
.wo-checkout-line__label-group {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.wo-checkout-line--delivery {
  align-items: center;
}
.wo-checkout-line__free-tag {
  color: var(--wo-brand-primary-mid);
  font-weight: 800;
  font-size: 0.95rem;
}
.wo-checkout-info-btn {
  flex-shrink: 0;
  width: 1.35rem;
  height: 1.35rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: linear-gradient(145deg, #fee2e2, #fecaca);
  color: #b91c1c;
  font-size: 0.72rem;
  font-weight: 800;
  font-style: italic;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(185, 28, 28, 0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.wo-checkout-info-btn:hover {
  transform: scale(1.06);
  box-shadow: 0 2px 8px rgba(185, 28, 28, 0.3);
}
.wo-checkout-info-btn--slate {
  background: linear-gradient(145deg, #e0e7ff, #c7d2fe);
  color: #4338ca;
  box-shadow: 0 1px 3px rgba(67, 56, 202, 0.22);
}
.wo-checkout-info-btn--slate:hover {
  box-shadow: 0 2px 8px rgba(67, 56, 202, 0.28);
}
.wo-checkout-line--smallfee {
  align-items: center;
}
.wo-checkout-info-btn__glyph {
  display: block;
  transform: translateY(-0.05em);
}

dialog.wo-checkout-info-dialog {
  border: none;
  padding: 0;
  margin: auto;
  width: min(380px, calc(100vw - 2rem));
  max-width: 380px;
  border-radius: 18px;
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.2);
}
.wo-checkout-info-dialog::backdrop {
  background: rgba(15, 23, 42, 0.42);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.wo-checkout-info-dialog__panel {
  position: relative;
  padding: 1.35rem 1.35rem 1.15rem;
  background: #fff;
  border-radius: 18px;
  border: 1px solid #e2e8f0;
}
.wo-checkout-info-dialog__x {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  width: 2rem;
  height: 2rem;
  border: none;
  border-radius: 8px;
  background: #f1f5f9;
  color: #64748b;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
}
.wo-checkout-info-dialog__title {
  margin: 0 1.5rem 0.65rem 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
}
.wo-checkout-info-dialog__text {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #475569;
}
.wo-checkout-info-dialog__ok {
  width: 100%;
  margin: 0;
}

/* Cart: free delivery progress */
.wo-cart-fd {
  margin: 1rem 0 0;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  background: linear-gradient(135deg, #f0fdf4 0%, var(--wo-brand-surface-tint) 45%, #f8fafc 100%);
  border: 1px solid var(--wo-brand-mint-border);
  max-width: 40rem;
}
.wo-cart-fd--complete {
  display: none !important;
}
.wo-cart-fd__header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.35rem 0.75rem;
  margin-bottom: 0.65rem;
}
.wo-cart-fd__title {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--wo-brand-primary);
}
.wo-cart-fd__meta {
  font-size: 0.82rem;
  color: #64748b;
  font-variant-numeric: tabular-nums;
}
.wo-cart-fd__sep {
  margin: 0 0.25rem;
  opacity: 0.65;
}
.wo-cart-fd__need {
  font-weight: 600;
  color: #0f172a;
}
.wo-cart-fd__track {
  height: 10px;
  border-radius: 999px;
  background: #e2e8f0;
  overflow: hidden;
  margin-bottom: 0.65rem;
}
.wo-cart-fd__fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--wo-brand-gradient-start), var(--wo-brand-accent-bright));
  transition: width 0.25s ease;
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.35);
}
.wo-cart-fd__hint {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.5;
  color: #334155;
}
.wo-cart-fd__hint--ok {
  color: var(--wo-brand-primary);
  font-weight: 500;
}
.wo-cart-fd__sub {
  margin: 0.55rem 0 0;
  font-size: 0.82rem;
}
.wo-cart-fd__sub a {
  color: var(--wo-brand-primary-mid);
  font-weight: 600;
  text-decoration: none;
}
.wo-cart-fd__sub a:hover {
  text-decoration: underline;
}
.wo-cart-fees-note {
  font-size: 0.88rem;
  color: #64748b;
  margin: 0.4rem 0 0;
  max-width: 42rem;
  line-height: 1.45;
}
.wo-cart-fees-note__warn {
  color: #b45309;
  font-weight: 600;
}
/* WhatsApp store settings — pricing & rules (modern forms) */
.wo-store-settings-hero h1 {
  margin: 0 0 0.35rem;
  font-size: 1.55rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.03em;
}
.wo-store-settings-hero {
  margin-bottom: 1.25rem;
  max-width: 52rem;
}
.wo-store-settings-hero__lead {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #64748b;
}
.wo-store-settings-panel {
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
  overflow: hidden;
}
.wo-store-settings-panel--log {
  margin-top: 1rem;
}
.wo-store-settings-panel__head {
  margin: -0.25rem 0 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.wo-store-settings-panel__head h2 {
  margin: 0;
}
.wo-store-settings-panel__sub {
  margin: 0.45rem 0 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #64748b;
}
.wo-store-settings-currency {
  color: var(--wo-brand-primary-mid);
  font-weight: 800;
}
.wo-store-rules-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: 0.15rem 0 0.25rem;
}
@media (max-width: 900px) {
  .wo-store-rules-form {
    grid-template-columns: 1fr;
  }
}
.wo-store-rules-form .wo-store-rules-field {
  margin: 0;
  padding: 1rem 1.1rem;
  background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
  border: 1px solid #e8edf3;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease;
}
.wo-store-rules-form .wo-store-rules-field:focus-within {
  border-color: rgba(var(--wo-brand-glow-rgb), 0.45);
  box-shadow: 0 0 0 3px rgba(var(--wo-brand-glow-rgb), 0.1);
}
.wo-store-rules-form .wo-store-rules-field label {
  font-size: 0.82rem;
  font-weight: 700;
  color: #334155;
  letter-spacing: 0.01em;
}
.wo-store-rules-form .wo-store-rules-field input[type='number'] {
  width: 100%;
  max-width: 16rem;
  margin: 0;
  padding: 0.65rem 0.85rem;
  font-size: 1.05rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: #0f172a;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  background: #fff;
  font-family: inherit;
  box-sizing: border-box;
}
.wo-store-rules-form .wo-store-rules-field input[type='number']:focus {
  outline: none;
  border-color: var(--wo-brand-accent-border);
  box-shadow: 0 0 0 3px rgba(var(--wo-brand-glow-rgb), 0.18);
}
.wo-store-rules-form .wo-store-rules-field .wo-pricelist-name-input {
  width: 100%;
  max-width: 28rem;
  margin: 0;
  padding: 0.72rem 0.9rem;
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 1px 2px rgba(15, 23, 42, 0.04);
  font-family: inherit;
  box-sizing: border-box;
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease;
}
.wo-store-rules-form .wo-store-rules-field .wo-pricelist-name-input::placeholder {
  color: #94a3b8;
  font-weight: 500;
}
.wo-store-rules-form .wo-store-rules-field .wo-pricelist-name-input:focus {
  outline: none;
  border-color: var(--wo-brand-accent-border);
  background: #fff;
  box-shadow:
    0 0 0 3px rgba(var(--wo-brand-glow-rgb), 0.16),
    0 6px 16px rgba(var(--wo-brand-glow-rgb), 0.12);
}
.wo-store-rules-form .settings-field small {
  display: block;
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.45;
  color: #64748b;
}
.wo-store-rules-form__actions {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-top: 0.35rem;
}
.wo-store-rules-submit {
  min-width: 11rem;
  padding: 0.75rem 1.5rem !important;
  border-radius: 999px !important;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
  border: none !important;
  background: linear-gradient(180deg, var(--wo-brand-accent-bright) 0%, var(--wo-brand-accent-border) 100%) !important;
  color: #fff !important;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.2) inset,
    0 4px 14px rgba(var(--wo-brand-glow-rgb), 0.35);
  cursor: pointer;
  transition:
    transform 0.12s ease,
    box-shadow 0.15s ease;
}
.wo-store-rules-submit:hover {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.25) inset,
    0 6px 20px rgba(var(--wo-brand-glow-rgb), 0.42);
}
.wo-store-rules-submit:active {
  transform: scale(0.98);
}
.wo-store-settings-panel--log .wo-table-wrap {
  border-radius: 12px;
  border: 1px solid #e8edf3;
  background: #fafbfc;
  overflow: hidden;
}
.wo-store-settings-panel--log .wo-table {
  min-width: 0;
  background: #fff;
}
.wo-store-settings-panel--log .wo-table th {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 800;
  color: #64748b;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  padding: 0.65rem 0.85rem;
}
.wo-store-settings-panel--log .wo-table td {
  padding: 0.75rem 0.85rem;
  vertical-align: top;
  font-size: 0.9rem;
  color: #334155;
}
.wo-store-settings-panel--log .wo-table tbody tr:hover td {
  background: #f8fafc;
}
.wo-wa-settings-log-table td {
  vertical-align: top;
  font-size: 0.9rem;
}
.wo-wa-settings-log__when {
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  color: #475569;
  font-weight: 600;
}

/* Checkout: saved addresses & manual block */
.wo-checkout-signed-in {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  color: #475569;
  font-weight: 600;
}
.wo-checkout-address-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 0.65rem 0.75rem;
  margin-bottom: 0.5rem;
}
.wo-checkout-address-bar__select {
  flex: 1 1 12rem;
  min-width: 0;
}
.wo-checkout-address-bar__select label {
  font-weight: 700;
  color: #334155;
  font-size: 0.83rem;
}
.wo-checkout-address-bar__select select {
  width: 100%;
  margin-top: 0.35rem;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  padding: 0.55rem 0.65rem;
  font: inherit;
  background: #fff;
}
.wo-checkout-address-bar__select select:focus {
  outline: none;
  border-color: var(--wo-brand-accent-border);
  box-shadow: 0 0 0 3px rgba(var(--wo-brand-glow-rgb), 0.15);
}
.wo-checkout-address-hint {
  margin: 0 0 0.75rem;
  min-height: 1.2em;
}
.wo-manual-address-cta {
  margin: 0 0 1rem;
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  align-items: stretch;
}
.wo-manual-address-cta__hint {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
}
.wo-manual-delivery-dialog .wo-checkout-manual-address {
  margin-bottom: 0;
  border: none;
  padding: 0;
  background: transparent;
}
.wo-checkout-manual-address {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 0.75rem 0.85rem;
  background: #fafafa;
  margin-bottom: 0.85rem;
}
.wo-checkout-manual-address--muted {
  opacity: 0.58;
  pointer-events: none;
}
.wo-checkout-addr-grid {
  margin-top: 0;
}
.wo-checkout-subhead {
  margin: 0.85rem 0 0.5rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: #0f172a;
}
.wo-addr-label-row {
  margin-bottom: 0.65rem;
}
.wo-addr-label-row__hint {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: #64748b;
  margin-bottom: 0.35rem;
}
.wo-addr-label-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.wo-addr-label-pills__btn {
  border: 1px solid #cbd5e1;
  background: #fff;
  color: #334155;
  font: inherit;
  font-weight: 600;
  font-size: 0.82rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  cursor: pointer;
}
.wo-addr-label-pills__btn:hover {
  border-color: #94a3b8;
  background: #f8fafc;
}
.wo-addr-label-pills__btn.is-active {
  border-color: var(--wo-brand-accent-border);
  background: #f0fdf4;
  color: var(--wo-brand-primary);
}
.wo-phone-971 {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  padding: 0 0.55rem;
  background: #fff;
}
.wo-phone-971:focus-within {
  border-color: var(--wo-brand-accent-border);
  box-shadow: 0 0 0 3px rgba(var(--wo-brand-glow-rgb), 0.12);
}
.wo-phone-971__cc {
  font-weight: 700;
  color: #64748b;
  font-size: 0.9rem;
  white-space: nowrap;
}
.wo-phone-971__input {
  flex: 1;
  min-width: 0;
  border: none;
  padding: 0.5rem 0;
  margin: 0;
  font: inherit;
  background: transparent;
  outline: none;
}
dialog.wo-add-address-dialog {
  border: none;
  padding: 0;
  margin: auto;
  width: min(460px, calc(100vw - 1.5rem));
  max-height: calc(100vh - 2rem);
  overflow: auto;
  background: transparent;
}
.wo-add-address-dialog::backdrop {
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.wo-add-address-dialog__panel {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 1.1rem 1.15rem 1rem;
  box-shadow: 0 24px 48px -12px rgba(15, 23, 42, 0.2);
  border: 1px solid #e2e8f0;
}
.wo-add-address-dialog__x {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  border: none;
  background: #f1f5f9;
  width: 2rem;
  height: 2rem;
  border-radius: 8px;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  color: #475569;
}
.wo-add-address-dialog__x:hover {
  background: #e2e8f0;
}
.wo-add-address-dialog__title {
  margin: 0 0 1rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  padding-right: 2rem;
}
.wo-add-address-dialog__form .settings-field label {
  font-weight: 700;
  color: #334155;
  font-size: 0.83rem;
}
.wo-add-address-dialog__form .settings-field .optional {
  font-weight: 500;
  color: #94a3b8;
}
.wo-add-address-dialog__form input,
.wo-add-address-dialog__form textarea {
  margin-top: 0.35rem;
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  padding: 0.55rem 0.65rem;
  font: inherit;
  box-sizing: border-box;
}
.wo-add-address-dialog__form input:focus,
.wo-add-address-dialog__form textarea:focus {
  outline: none;
  border-color: var(--wo-brand-accent-border);
  box-shadow: 0 0 0 3px rgba(var(--wo-brand-glow-rgb), 0.15);
}
.wo-add-address-dialog__actions {
  margin-top: 1rem;
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
}

/* Checkout: order note (override .wo-filter-card label horizontal flex) */
.wo-filter-card label.wo-checkout-note-field {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.35rem;
  margin: 0.85rem 0 0;
}
.wo-checkout-note-field .settings-field__lbl {
  font-weight: 700;
  font-size: 0.83rem;
  color: #334155;
}
.wo-checkout-note-field input[name='customer_note'] {
  width: 100%;
  max-width: none;
  box-sizing: border-box;
  margin: 0;
  padding: 0.55rem 0.65rem;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  font: inherit;
  font-size: 0.95rem;
  background: #fff;
}
.wo-checkout-note-field input[name='customer_note']:focus {
  outline: none;
  border-color: var(--wo-brand-accent-border);
  box-shadow: 0 0 0 3px rgba(var(--wo-brand-glow-rgb), 0.15);
}

/* Checkout: minimum order modal */
.wo-checkout-min-banner {
  margin: 0.85rem 0 0.65rem;
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  background: #fff7ed;
  border: 1px solid #fdba74;
  color: #9a3412;
  font-size: 0.92rem;
  line-height: 1.45;
}
.wo-checkout-geo-banner {
  margin: 0 0 0.75rem;
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  background: #eff6ff;
  border: 1px solid #93c5fd;
  color: #1e3a8a;
  font-size: 0.92rem;
  line-height: 1.45;
}
.wo-checkout-geo-banner strong {
  font-weight: 700;
}
.wo-place-btn--warn-outline {
  width: 100%;
  margin-bottom: 0.55rem;
  background: #fff;
  border: 2px solid #ea580c;
  color: #c2410c;
}
.wo-place-btn--warn-outline:hover {
  background: #fff7ed;
}
body.wo-checkout--min-blocked .wo-place-btn[name="place_order"] {
  opacity: 0.55;
  cursor: not-allowed;
}

/* Order placed: success modal — modern card */
dialog.wo-order-success-dialog {
  border: none;
  padding: 0;
  margin: auto;
  overflow: visible;
  background: transparent;
  width: min(440px, calc(100vw - 1.5rem));
  max-width: 440px;
  box-sizing: border-box;
  font-family: 'DM Sans', system-ui, sans-serif;
}
.wo-order-success-dialog::backdrop {
  background: radial-gradient(ellipse 120% 80% at 50% 40%, rgba(var(--wo-brand-glow-rgb), 0.12), transparent 55%),
    rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
}
.wo-order-success-dialog__panel {
  position: relative;
  background: linear-gradient(180deg, #fafefa 0%, #ffffff 38%, #ffffff 100%);
  border-radius: 24px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.9) inset,
    0 1px 2px rgba(var(--wo-brand-glow-rgb), 0.06),
    0 24px 48px -12px rgba(15, 23, 42, 0.18),
    0 12px 24px -8px rgba(15, 23, 42, 0.1);
  overflow: hidden;
}
.wo-order-success-dialog__hero {
  position: relative;
  text-align: center;
  padding: 1.75rem 1.5rem 1.25rem;
}
.wo-order-success-dialog__glow {
  position: absolute;
  left: 50%;
  top: 0.5rem;
  transform: translateX(-50%);
  width: 200px;
  height: 120px;
  background: radial-gradient(ellipse closest-side, rgba(134, 239, 172, 0.45), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.wo-order-success-dialog__icon-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  margin-bottom: 0.25rem;
}
@media (prefers-reduced-motion: no-preference) {
  .wo-order-success-dialog__icon-wrap {
    animation: wo-success-icon-in 0.55s cubic-bezier(0.34, 1.3, 0.64, 1) both;
  }
  .wo-order-success-dialog__check-mark {
    animation: wo-success-draw 0.45s ease-out 0.2s both;
  }
}
@keyframes wo-success-icon-in {
  from {
    opacity: 0;
    transform: scale(0.88) translateY(6px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
@keyframes wo-success-draw {
  from {
    stroke-dashoffset: 40;
  }
  to {
    stroke-dashoffset: 0;
  }
}
.wo-order-success-dialog__icon {
  line-height: 0;
  filter: drop-shadow(0 8px 16px rgba(var(--wo-brand-glow-rgb), 0.2));
}
.wo-order-success-dialog__check-mark {
  stroke-dasharray: 40;
  stroke-dashoffset: 0;
}
@media (prefers-reduced-motion: reduce) {
  .wo-order-success-dialog__icon-wrap,
  .wo-order-success-dialog__check-mark {
    animation: none !important;
  }
  .wo-order-success-dialog__check-mark {
    stroke-dasharray: none;
  }
}
.wo-order-success-dialog__eyebrow {
  position: relative;
  z-index: 1;
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wo-brand-accent-bright);
}
.wo-order-success-dialog__title {
  position: relative;
  z-index: 1;
  margin: 0 0 1rem;
  font-size: clamp(1.35rem, 4vw, 1.55rem);
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.03em;
  line-height: 1.2;
}
.wo-order-success-dialog__ref-box {
  position: relative;
  z-index: 1;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 0.65rem 1rem 0.7rem;
  border-radius: 14px;
  background: rgba(240, 253, 244, 0.95);
  border: 1px solid rgba(187, 247, 208, 0.85);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}
.wo-order-success-dialog__ref-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wo-brand-primary-mid);
  opacity: 0.85;
}
.wo-order-success-dialog__ref {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--wo-brand-primary-dark);
  letter-spacing: -0.02em;
}
.wo-order-success-dialog__body {
  padding: 0 1.5rem 1.25rem;
  text-align: center;
  border-top: 1px solid rgba(241, 245, 249, 0.95);
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.5) 0%, transparent 100%);
}
.wo-order-success-dialog__text {
  margin: 1.1rem 0 0.5rem;
  font-size: 0.94rem;
  line-height: 1.6;
  color: #475569;
  max-width: 36ch;
  margin-left: auto;
  margin-right: auto;
}
.wo-order-success-dialog__micro {
  margin: 0;
  font-size: 0.8rem;
  color: #94a3b8;
  font-weight: 500;
}
.wo-order-success-dialog__actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 0 1.5rem 1.5rem;
  width: 100%;
  box-sizing: border-box;
}
@media (min-width: 360px) {
  .wo-order-success-dialog__actions {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
  }
  .wo-order-success-dialog__btn {
    flex: 1 1 0;
    min-width: 0;
    width: auto;
  }
}
.wo-order-success-dialog__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  min-height: 3rem;
  padding: 0.75rem 1rem;
  border-radius: 14px;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.2;
  font-family: inherit;
  text-decoration: none;
  text-align: center;
  border: none;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease;
  box-sizing: border-box;
}
.wo-order-success-dialog__btn:active {
  transform: scale(0.98);
}
.wo-order-success-dialog__btn--wa {
  background: linear-gradient(180deg, #25d366 0%, #128c7e 100%);
  color: #fff;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.22) inset,
    0 4px 14px rgba(37, 211, 102, 0.35);
}
.wo-order-success-dialog__btn--wa:hover {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.28) inset,
    0 6px 20px rgba(37, 211, 102, 0.42);
}
.wo-order-success-dialog__wa-glyph {
  display: block;
  flex-shrink: 0;
  opacity: 0.95;
}
.wo-order-success-dialog__wa-text {
  flex: 0 1 auto;
}
.wo-order-success-dialog__btn--ghost {
  background: #fff;
  color: #475569;
  border: 1.5px solid #e2e8f0;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}
.wo-order-success-dialog__btn--ghost:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
  color: #334155;
}

/* Minimum-order modal: standard width (400px cap), centered card layout */
dialog.wo-min-order-dialog {
  border: none;
  padding: 0;
  margin: auto;
  overflow: visible;
  background: transparent;
  /* Industry-standard alert width ~400px; never edge-to-edge on phones */
  width: min(400px, calc(100vw - 2rem));
  max-width: 400px;
  box-sizing: border-box;
}
.wo-min-order-dialog::backdrop {
  background: rgba(15, 23, 42, 0.48);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.wo-min-order-dialog__panel {
  position: relative;
  padding: 0;
  font-family: inherit;
  background: #fff;
  border-radius: 22px;
  border: 1px solid rgba(226, 232, 240, 0.98);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.75) inset,
    0 32px 64px -16px rgba(15, 23, 42, 0.28),
    0 16px 32px -12px rgba(15, 23, 42, 0.14);
}
.wo-min-order-dialog__panel::before {
  content: '';
  display: block;
  height: 5px;
  border-radius: 22px 22px 0 0;
  background: linear-gradient(90deg, #fdba74 0%, #fb923c 35%, #ea580c 100%);
}
.wo-min-order-dialog__panel-inner {
  padding: 2.35rem 1.75rem 1.25rem;
}
.wo-min-order-dialog__x {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  border-radius: 12px;
  background: #f1f5f9;
  color: #64748b;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, transform 0.15s ease;
  z-index: 2;
}
.wo-min-order-dialog__x:hover {
  background: #e2e8f0;
  color: #0f172a;
}
.wo-min-order-dialog__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.15rem;
  border-radius: 18px;
  background: linear-gradient(160deg, #fffbeb 0%, #ffedd5 100%);
  color: #ea580c;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 2px 8px rgba(234, 88, 12, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}
.wo-min-order-dialog__title {
  margin: 0 0 1rem;
  font-size: 1.28rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #0f172a;
  text-align: center;
  line-height: 1.28;
}
.wo-min-order-dialog__text {
  margin: 0 auto 0.75rem;
  max-width: 22rem;
  font-size: 0.94rem;
  line-height: 1.58;
  color: #64748b;
  text-align: center;
}
.wo-min-order-dialog__amount-row {
  margin: 0 0 0.85rem;
  text-align: center;
}
.wo-min-order-dialog__amount {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  padding: 0.55rem 1.15rem;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  color: #c2410c;
  background: linear-gradient(180deg, #fff7ed 0%, #ffedd5 100%);
  border: 1px solid #fdba74;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(234, 88, 12, 0.12);
}
.wo-min-order-dialog__footnote {
  margin: 0 0 1.35rem;
  font-size: 0.82rem;
  line-height: 1.45;
  color: #94a3b8;
  text-align: center;
}
.wo-min-order-dialog__tips {
  margin: 0 0 1.35rem;
  padding: 0.75rem 1rem;
  list-style: none;
  font-size: 0.81rem;
  color: #64748b;
  line-height: 1.52;
  background: #f8fafc;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
}
.wo-min-order-dialog__tips li {
  position: relative;
  padding-left: 1.15rem;
  margin: 0.4rem 0;
}
.wo-min-order-dialog__tips li:first-child {
  margin-top: 0;
}
.wo-min-order-dialog__tips li:last-child {
  margin-bottom: 0;
}
.wo-min-order-dialog__tips li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fb923c, #ea580c);
}
.wo-min-order-dialog__actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 1.15rem;
  margin-top: 0.15rem;
  border-top: 1px solid #f1f5f9;
}
@media (min-width: 380px) {
  .wo-min-order-dialog__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
    align-items: stretch;
  }
  .wo-min-order-dialog__actions .wo-place-btn {
    grid-column: 1 / -1;
    order: -1;
  }
}
.wo-min-order-dialog__actions .wo-place-btn,
.wo-min-order-dialog__actions .wo-add-btn {
  justify-content: center;
  text-align: center;
  text-decoration: none;
  width: 100%;
  box-sizing: border-box;
  border-radius: 14px;
  font-weight: 600;
  font-size: 0.94rem;
  padding: 0.72rem 1rem;
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.wo-min-order-dialog__actions .wo-add-btn {
  background: #fff;
  border: 1px solid #e2e8f0;
  color: #334155;
  cursor: pointer;
}
.wo-min-order-dialog__actions .wo-add-btn:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
  color: #0f172a;
}
.wo-min-order-dialog__actions .wo-min-order-dialog__ok {
  background: #f8fafc;
  border-color: #e2e8f0;
  color: #64748b;
  font-weight: 600;
}
.wo-min-order-dialog__actions .wo-min-order-dialog__ok:hover {
  background: #f1f5f9;
  color: #334155;
}

/* WhatsApp merchant order detail: toolbar & print/PDF */
.wo-wa-order-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  margin-bottom: 0.5rem;
}
.wo-wa-order-top .settings-lead {
  margin: 0;
}
.wo-dash-order-lines tfoot td {
  border-top: 2px solid #e2e8f0;
  font-weight: 600;
  background: #f8fafc;
}
.wo-dash-order-lines-total__label {
  text-align: right;
}
.wo-wa-status-log-table tbody td:first-child {
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
@media screen {
  .wo-order-print-sheet__meta strong {
    color: #0f172a;
  }
}
@media print {
  @page {
    margin: 12mm;
  }
  .wo-no-print,
  aside.dash-sidebar,
  .wo-wa-order-top {
    display: none !important;
  }
  body.dash-app.wo-wa-order-detail {
    background: #fff !important;
  }
  body.dash-app.wo-wa-order-detail .dash-body {
    display: block !important;
  }
  body.dash-app.wo-wa-order-detail .dash-main {
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .wo-order-print-sheet__h1 {
    font-size: 1.5rem !important;
    margin: 0 0 0.35rem !important;
    page-break-after: avoid;
  }
  .dash-panel {
    box-shadow: none !important;
    border: 1px solid #e2e8f0 !important;
    break-inside: avoid;
    page-break-inside: avoid;
    margin-bottom: 0.75rem !important;
  }
  .wo-dash-order-lines__thumb img,
  .wo-dash-order-lines__fallback {
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }
  table.wo-dash-order-lines .wo-dash-order-lines__thumb {
    width: 36px !important;
  }
  table.wo-dash-order-lines img {
    max-width: 32px !important;
    max-height: 32px !important;
  }
}

/* Merchant — coupon editor */
.wo-coupon-page-hero .wo-store-settings-hero__lead {
  max-width: 32rem;
}
.wo-coupon-editor {
  max-width: 40rem;
  margin: 0 0 2.5rem;
}
.wo-coupon-editor__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}
.wo-coupon-editor__back {
  font-size: 0.9rem;
  font-weight: 600;
  color: #475569;
  text-decoration: none;
}
.wo-coupon-editor__back:hover {
  color: #0f172a;
  text-decoration: underline;
}
.wo-coupon-editor__delete {
  font-size: 0.85rem;
  font-weight: 600;
  color: #b91c1c;
  text-decoration: none;
}
.wo-coupon-editor__delete:hover {
  text-decoration: underline;
}
.wo-coupon-editor__title {
  margin: 0 0 1.25rem;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0f172a;
  line-height: 1.2;
}
.wo-coupon-editor__card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 12px 40px rgba(15, 23, 42, 0.07);
}
.wo-coupon-editor__section {
  padding: 1.25rem 1.35rem 1.35rem;
  border-bottom: 1px solid #f1f5f9;
}
.wo-coupon-editor__section:last-of-type {
  border-bottom: none;
}
.wo-coupon-editor__section--muted {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}
.wo-coupon-editor__section--foot {
  padding-top: 1rem;
  padding-bottom: 1.25rem;
  background: #fff;
}
.wo-coupon-editor__section-head {
  margin-bottom: 0.9rem;
}
.wo-coupon-editor__section-title {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0f172a;
}
.wo-coupon-editor__section-lead {
  margin: 0.25rem 0 0;
  font-size: 0.84rem;
  line-height: 1.45;
  color: #64748b;
}
.wo-coupon-editor__field {
  margin: 0;
}
.wo-coupon-editor__field--spaced {
  margin-top: 1rem;
}
.wo-coupon-editor__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #64748b;
  margin: 0 0 0.4rem;
}
.wo-coupon-editor__optional {
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  color: #94a3b8;
}
.wo-coupon-editor__inline-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #64748b;
  margin: 0 0 0.45rem;
}
.wo-coupon-editor__input {
  width: 100%;
  box-sizing: border-box;
  font: inherit;
  font-size: 0.95rem;
  padding: 0.62rem 0.75rem;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  background: #fff;
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease;
}
.wo-coupon-editor__section--muted .wo-coupon-editor__input {
  background: #fff;
}
.wo-coupon-editor__input:hover {
  border-color: #94a3b8;
}
.wo-coupon-editor__input:focus {
  outline: none;
  border-color: var(--wo-brand-accent-bright);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.18);
}
.wo-coupon-editor__input--code {
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.wo-coupon-editor__input--amount {
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  max-width: 100%;
}
.wo-coupon-editor__code-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: stretch;
}
.wo-coupon-editor__code-toolbar .wo-coupon-editor__input--code {
  flex: 1 1 12rem;
  min-width: 0;
}
.wo-coupon-editor__code-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: stretch;
}
.wo-coupon-editor__btn-secondary {
  flex: 1 1 auto;
  min-width: 5.5rem;
  font: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.55rem 0.75rem;
  border-radius: 12px;
  border: 1px solid #cbd5e1;
  background: #fff;
  color: #334155;
  cursor: pointer;
  transition:
    border-color 0.15s ease,
    background 0.15s ease;
}
.wo-coupon-editor__btn-secondary:hover {
  border-color: #94a3b8;
  background: #f8fafc;
}
.wo-coupon-editor__discount-block {
  display: grid;
  grid-template-columns: 1fr minmax(7.5rem, 9.5rem);
  gap: 1rem 1.25rem;
  align-items: end;
}
.wo-coupon-editor__discount-block__modes {
  min-width: 0;
}
.wo-coupon-editor__discount-block__amt .wo-coupon-editor__label {
  margin-bottom: 0.4rem;
}
.wo-coupon-editor__segments {
  display: flex;
  padding: 4px;
  border-radius: 14px;
  background: #e2e8f0;
  gap: 4px;
}
.wo-coupon-editor__segment {
  flex: 1;
  text-align: center;
  cursor: pointer;
  margin: 0;
  position: relative;
}
.wo-coupon-editor__segment input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}
.wo-coupon-editor__segment span {
  display: block;
  padding: 0.52rem 0.5rem;
  border-radius: 10px;
  font-size: 0.86rem;
  font-weight: 700;
  color: #64748b;
  transition:
    background 0.15s ease,
    color 0.15s ease;
}
.wo-coupon-editor__segment input:checked + span {
  background: #fff;
  color: #0f172a;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.1);
}
.wo-coupon-editor__segment input:focus-visible + span {
  outline: 2px solid var(--wo-brand-accent-bright);
  outline-offset: 2px;
}
.wo-coupon-editor__pill-row {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.wo-coupon-editor__pill {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 0;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  background: #fafbfc;
  cursor: pointer;
  transition:
    border-color 0.15s ease,
    background 0.15s ease;
}
.wo-coupon-editor__pill:hover {
  border-color: #cbd5e1;
  background: #f8fafc;
}
.wo-coupon-editor__pill--solo {
  background: linear-gradient(135deg, #f0fdf4 0%, var(--wo-brand-surface-tint) 100%);
  border-color: var(--wo-brand-mint-border);
}
.wo-coupon-editor__pill input {
  margin-top: 0.2rem;
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
  accent-color: var(--wo-brand-accent-border);
}
.wo-coupon-editor__pill__text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}
.wo-coupon-editor__pill__text strong {
  font-size: 0.92rem;
  font-weight: 700;
  color: #0f172a;
}
.wo-coupon-editor__pill__text small {
  font-size: 0.8rem;
  line-height: 1.35;
  color: #64748b;
  font-weight: 500;
}
.wo-coupon-editor__grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.25rem;
}
.wo-coupon-editor__actions {
  margin-top: 1.25rem;
}
.wo-coupon-editor__submit {
  width: 100%;
  font: inherit;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.8rem 1rem;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(135deg, var(--wo-brand-accent-bright) 0%, var(--wo-brand-accent-border) 100%);
  box-shadow: 0 4px 16px rgba(var(--wo-brand-glow-rgb), 0.35);
  transition:
    transform 0.12s ease,
    box-shadow 0.12s ease;
}
.wo-coupon-editor__submit:hover {
  box-shadow: 0 8px 24px rgba(var(--wo-brand-glow-rgb), 0.42);
}
.wo-coupon-editor__submit:active {
  transform: scale(0.99);
}
@media (max-width: 640px) {
  .wo-coupon-editor {
    max-width: 100%;
  }
  .wo-coupon-editor__title {
    font-size: 1.3rem;
  }
  .wo-coupon-editor__card {
    border-radius: 16px;
  }
  .wo-coupon-editor__section {
    padding: 1.1rem 1rem 1.2rem;
  }
  .wo-coupon-editor__code-toolbar {
    flex-direction: column;
  }
  .wo-coupon-editor__code-actions {
    width: 100%;
  }
  .wo-coupon-editor__btn-secondary {
    flex: 1;
    min-width: 0;
  }
  .wo-coupon-editor__discount-block {
    grid-template-columns: 1fr;
  }
  .wo-coupon-editor__discount-block__amt .wo-coupon-editor__input--amount {
    max-width: 100%;
  }
  .wo-coupon-editor__grid-2 {
    grid-template-columns: 1fr;
  }
}

/* Discounts page: storefront offer countdown (merchant setup) */
.wo-store-settings-panel.wo-offer-countdown-admin {
  margin-top: 1.75rem;
  padding-inline: clamp(0.85rem, 2vw, 1.2rem);
  padding-bottom: 1.25rem;
}
.wo-store-settings-panel.wo-offer-countdown-admin > .wo-store-settings-panel__head {
  margin-inline: calc(-1 * clamp(0.85rem, 2vw, 1.2rem));
  padding-inline: clamp(0.85rem, 2vw, 1.2rem);
  padding-top: 0.95rem;
}
.wo-offer-countdown-admin__intro {
  margin: 0.35rem 0 1.05rem;
  max-width: 52rem;
  line-height: 1.55;
}
.wo-offer-countdown-admin__stats {
  display: block;
  margin-top: 0.65rem;
  font-size: 0.88rem;
  color: #475569;
}
.wo-offer-countdown-admin__stats strong {
  color: #0f172a;
  font-weight: 800;
}
.wo-offer-countdown-admin__input-code {
  font-weight: 700;
  letter-spacing: 0.06em;
  font-variant-numeric: tabular-nums;
}
.wo-offer-countdown-admin__card {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  padding: 1.25rem 1.2rem 1.3rem;
}
.wo-offer-countdown-admin__pill {
  cursor: pointer;
  align-self: flex-start;
}
.wo-offer-countdown-admin__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem 1.1rem;
  align-items: start;
}
.wo-offer-countdown-admin__full {
  grid-column: 1 / -1;
}
.wo-offer-countdown-admin__grid .settings-field {
  margin: 0;
  min-width: 0;
}
.wo-offer-countdown-admin__grid label {
  display: block;
  font-weight: 700;
  font-size: 0.83rem;
  color: #334155;
  margin-bottom: 0.35rem;
}
.wo-offer-countdown-admin__hint {
  font-weight: 500;
  color: #94a3b8;
  font-size: 0.78rem;
}
.wo-offer-countdown-admin__media {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(140px, 200px);
  gap: 1.15rem;
  padding: 1.08rem 1.12rem;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
  align-items: stretch;
}
.wo-offer-countdown-admin__media-fields {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-width: 0;
}
.wo-offer-countdown-admin__media-fields > label:first-of-type {
  display: block;
  font-weight: 700;
  font-size: 0.83rem;
  color: #334155;
}
.wo-offer-countdown-admin__media-title {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #64748b;
}
.wo-offer-countdown-admin__file-label {
  margin-top: 0.35rem;
  font-size: 0.83rem;
  font-weight: 700;
  color: #334155;
}
.wo-offer-countdown-admin__file-input {
  font-size: 0.82rem;
  width: 100%;
  box-sizing: border-box;
}
.wo-offer-countdown-admin__media-aside {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.55rem;
  padding: 0.75rem;
  border-radius: 12px;
  border: 1px dashed #cbd5e1;
  background: #fff;
  min-height: 148px;
}
.wo-offer-countdown-admin__media-aside--has-preview {
  border-style: solid;
  border-color: #e2e8f0;
}
.wo-offer-countdown-admin__preview-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #64748b;
}
.wo-offer-countdown-admin__preview {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
}
.wo-offer-countdown-admin__preview img {
  display: block;
  width: 112px;
  height: 112px;
  object-fit: cover;
}
.wo-offer-countdown-admin__clear {
  font-size: 0.82rem;
  font-weight: 600;
  color: #475569;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.wo-offer-countdown-admin__preview-placeholder {
  color: #94a3b8;
  font-size: 0.85rem;
  line-height: 1.45;
}
.wo-offer-countdown-admin__preview-placeholder small {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.78rem;
}
.wo-offer-countdown-admin__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  padding-top: 0.05rem;
}
.wo-offer-countdown-admin__submit {
  min-width: min(14rem, 100%);
}

@media (max-width: 760px) {
  .wo-offer-countdown-admin__grid {
    grid-template-columns: 1fr;
  }
  .wo-offer-countdown-admin__media {
    grid-template-columns: 1fr;
  }
  .wo-offer-countdown-admin__media-aside {
    min-height: auto;
    padding: 1rem;
  }
}

.wo-wa-coupon-expiry--past {
  color: #b91c1c;
  font-weight: 600;
}

.wo-coupon-filters {
  margin: 0 0 1.25rem;
  padding: 1rem 1.05rem;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 42%);
}
.wo-coupon-filters__fields {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  align-items: flex-end;
}
.wo-coupon-filters__field {
  flex: 1 1 8rem;
  min-width: 0;
  max-width: 12rem;
}
.wo-coupon-filters__field--type {
  flex: 1 1 10rem;
  max-width: 14rem;
}
.wo-coupon-filters__field label {
  display: block;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748b;
  margin-bottom: 0.35rem;
}
.wo-coupon-filters__field input[type='date'],
.wo-coupon-filters__field select {
  width: 100%;
  box-sizing: border-box;
  font: inherit;
  font-size: 0.92rem;
  padding: 0.5rem 0.55rem;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  background: #fff;
}
.wo-coupon-filters__field input[type='date']:focus,
.wo-coupon-filters__field select:focus {
  outline: none;
  border-color: var(--wo-brand-accent-bright);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.15);
}
.wo-coupon-filters__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1rem;
}
.wo-coupon-filters__clear {
  font-size: 0.88rem;
  font-weight: 600;
  color: #475569;
  text-decoration: none;
}
.wo-coupon-filters__clear:hover {
  text-decoration: underline;
  color: #0f172a;
}
.wo-coupon-filters__hint {
  margin: 0.65rem 0 0;
  font-size: 0.82rem;
  line-height: 1.45;
  color: #64748b;
}

.wo-wa-coupon-list-actions {
  white-space: nowrap;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  justify-content: flex-end;
}
.wo-wa-coupon-list-actions .wo-cart-remove-row {
  display: inline-block;
}

/* Storefront — cart coupon */
.wo-cart-coupon {
  margin: 0.85rem 0;
  padding: 0.75rem 1rem;
  border: 1px solid #dce3ec;
  border-radius: 12px;
  background: #f8fafc;
}
.wo-cart-coupon__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}
.wo-cart-coupon__input {
  flex: 1 1 10rem;
  min-width: 0;
  font: inherit;
  padding: 0.55rem 0.65rem;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
}
.wo-cart-coupon-banner {
  font-size: 0.82rem;
  color: #64748b;
  margin-bottom: 0.45rem;
}
.wo-cart-coupon-chips strong {
  color: #0f766e;
}

/* Storefront limited-offer countdown — centered modal (home store only) */
.wo-offer-countdown-modal {
  position: fixed;
  inset: 0;
  z-index: 100050;
  display: grid;
  place-items: center;
  padding: max(1rem, env(safe-area-inset-top)) max(1rem, env(safe-area-inset-right))
    max(1rem, env(safe-area-inset-bottom)) max(1rem, env(safe-area-inset-left));
  pointer-events: none;
  animation: wo-oc-backdrop-in 0.38s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes wo-oc-backdrop-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.wo-offer-countdown-modal__backdrop {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  cursor: pointer;
  pointer-events: auto;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.wo-offer-countdown-modal__panel {
  pointer-events: auto;
  position: relative;
  width: min(440px, calc(100vw - 2rem));
  max-height: min(90vh, 720px);
  overflow: auto;
  margin: 0;
  padding: 1.35rem 1.35rem 1.45rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.97) 55%, rgba(241, 245, 249, 0.94) 100%);
  box-shadow:
    0 0 0 1px rgba(15, 23, 42, 0.06),
    0 28px 70px rgba(15, 23, 42, 0.28),
    0 12px 28px rgba(var(--wo-brand-primary-rgb), 0.12);
  animation: wo-oc-panel-in 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes wo-oc-panel-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@media (prefers-reduced-motion: reduce) {
  .wo-offer-countdown-modal,
  .wo-offer-countdown-modal__panel {
    animation: none;
  }
}
.wo-offer-countdown__close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  width: 2.35rem;
  height: 2.35rem;
  border: none;
  border-radius: 999px;
  background: rgba(241, 245, 249, 0.95);
  color: #475569;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition:
    background 0.15s ease,
    color 0.15s ease,
    transform 0.12s ease;
  z-index: 2;
}
.wo-offer-countdown__close:hover {
  background: #e2e8f0;
  color: #0f172a;
}
.wo-offer-countdown__close:active {
  transform: scale(0.96);
}
.wo-offer-countdown__close svg {
  display: block;
}
.wo-offer-countdown__inner {
  display: flex;
  gap: 1rem;
  align-items: stretch;
  padding-right: 1.75rem;
}
.wo-offer-countdown__thumb {
  flex: 0 0 104px;
  width: 104px;
  min-height: 104px;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(145deg, var(--wo-brand-surface-tint, #ecfdf5), #f1f5f9);
  border: 1px solid rgba(var(--wo-brand-primary-rgb), 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}
.wo-offer-countdown__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.wo-offer-countdown__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.wo-offer-countdown__title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0f172a;
  line-height: 1.25;
}
.wo-offer-countdown__desc {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #475569;
}
.wo-offer-countdown__timer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.2rem 0;
}
.wo-offer-countdown__unit {
  flex: 1 1 0;
  min-width: 3.1rem;
  text-align: center;
  padding: 0.48rem 0.28rem 0.42rem;
  border-radius: 12px;
  background: linear-gradient(180deg, var(--wo-brand-primary, #166534) 0%, color-mix(in srgb, var(--wo-brand-primary, #166534) 88%, #000) 100%);
  color: #fff;
  box-sizing: border-box;
  box-shadow: 0 4px 14px rgba(var(--wo-brand-primary-rgb), 0.28);
}
@supports not (color: color-mix(in srgb, black, white)) {
  .wo-offer-countdown__unit {
    background: var(--wo-brand-primary, #166534);
  }
}
.wo-offer-countdown__num {
  display: block;
  font-size: 1.12rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.wo-offer-countdown__lbl {
  display: block;
  margin-top: 0.18rem;
  font-size: 0.56rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  opacity: 0.92;
}
.wo-offer-countdown__coupon-row {
  margin: 0.35rem 0 0.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.wo-offer-countdown__coupon-kicker {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #64748b;
}
.wo-offer-countdown__coupon-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.65rem;
  border-radius: 14px;
  border: 2px dashed rgba(var(--wo-brand-primary-rgb), 0.45);
  background: linear-gradient(
    135deg,
    rgba(var(--wo-brand-primary-rgb), 0.09) 0%,
    rgba(248, 250, 252, 0.98) 55%
  );
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}
.wo-offer-countdown__coupon-code {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  font-variant-numeric: tabular-nums;
  color: var(--wo-brand-primary, #166534);
  word-break: break-all;
}
.wo-offer-countdown__copy {
  flex: 0 0 auto;
  margin: 0;
  padding: 0.38rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(var(--wo-brand-primary-rgb), 0.35);
  background: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--wo-brand-primary, #166534);
  cursor: pointer;
  transition:
    background 0.15s ease,
    transform 0.12s ease;
}
.wo-offer-countdown__copy:hover {
  background: rgba(var(--wo-brand-primary-rgb), 0.08);
}
.wo-offer-countdown__copy:active {
  transform: scale(0.97);
}
.wo-offer-countdown__highlight {
  margin: 0.15rem 0 0;
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--wo-brand-primary, #166534);
  line-height: 1.25;
}
.wo-offer-countdown__cta {
  align-self: stretch;
  margin-top: 0.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.15rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  text-decoration: none;
  color: #fff !important;
  background: linear-gradient(180deg, var(--wo-brand-primary, #166534), color-mix(in srgb, var(--wo-brand-primary, #166534) 82%, #000));
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(var(--wo-brand-primary-rgb), 0.32);
  transition:
    filter 0.15s ease,
    transform 0.12s ease;
}
@supports not (color: color-mix(in srgb, black, white)) {
  .wo-offer-countdown__cta {
    background: var(--wo-brand-primary, #166534);
  }
}
.wo-offer-countdown__cta:hover {
  filter: brightness(1.06);
}
.wo-offer-countdown__cta:active {
  transform: scale(0.99);
}
@media (max-width: 520px) {
  .wo-offer-countdown-modal__panel {
    width: min(100vw - 1.25rem, 440px);
    padding: 1.15rem 1rem 1.25rem;
    border-radius: 18px;
  }
  .wo-offer-countdown__inner {
    flex-direction: column;
    padding-right: 0;
  }
  .wo-offer-countdown__thumb {
    flex-basis: auto;
    width: 100%;
    max-height: 160px;
    min-height: 0;
  }
}

/* Product detail page (storefront PDP) — same shell as store: .wo-store-main + .wo-store-container.wo-pdp */
.wo-pdp-page .wo-store-container.wo-pdp {
  padding-bottom: 2.5rem;
}
.wo-pdp__breadcrumb {
  padding: 1rem 0 0.25rem;
}
.wo-pdp__breadcrumb a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--wo-brand-primary, #166534);
  text-decoration: none;
}
.wo-pdp__breadcrumb a:hover {
  text-decoration: underline;
}
.wo-pdp__article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.25rem, 4vw, 2.5rem);
  align-items: start;
  margin-top: 0.5rem;
}
.wo-pdp__gallery {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.wo-pdp__hero-wrap {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  aspect-ratio: 1;
  max-height: min(92vw, 520px);
}
.wo-pdp__hero {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #fff;
}
.wo-pdp__hero--placeholder {
  min-height: 280px;
  background: linear-gradient(145deg, #f1f5f9, #e2e8f0);
}
.wo-pdp__thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.wo-pdp__thumb {
  padding: 0;
  border: 2px solid transparent;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  background: #fff;
  line-height: 0;
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease;
}
.wo-pdp__thumb img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  display: block;
}
.wo-pdp__thumb.is-active {
  border-color: var(--wo-brand-primary, #166534);
  box-shadow: 0 0 0 2px rgba(var(--wo-brand-primary-rgb), 0.2);
}
.wo-pdp__summary {
  padding-top: 0.25rem;
}
.wo-pdp__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #64748b;
}
.wo-pdp__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #0f172a;
}
.wo-pdp__meta {
  margin: 0 0 0.85rem;
  font-size: 0.92rem;
  color: #64748b;
  line-height: 1.45;
}
.wo-pdp__price {
  margin: 0 0 0.65rem;
  font-size: 1.35rem;
  font-weight: 800;
}
.wo-pdp__price-old {
  text-decoration: line-through;
  color: #94a3b8;
  font-weight: 600;
  font-size: 0.95em;
  margin-right: 0.5rem;
}
.wo-pdp__price-offer,
.wo-pdp__price-current {
  color: var(--wo-brand-primary, #166534);
}
.wo-pdp__stock {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: #475569;
}
.wo-pdp__specs {
  margin: 0 0 1.25rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
}
.wo-pdp__specs div {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 0.5rem;
  font-size: 0.88rem;
}
.wo-pdp__specs dt {
  margin: 0;
  color: #64748b;
  font-weight: 600;
}
.wo-pdp__specs dd {
  margin: 0;
  color: #0f172a;
  font-weight: 600;
  word-break: break-word;
}
.wo-pdp__buy {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.wo-pdp__cart-form--inline {
  margin: 0;
}
.wo-pdp__add-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 22rem;
  padding: 0.85rem 1.25rem;
  border: none;
  border-radius: 14px;
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  color: #fff;
  background: var(--wo-brand-primary, #166534);
  box-shadow: 0 10px 28px rgba(var(--wo-brand-primary-rgb), 0.28);
}
.wo-pdp__add-btn:hover {
  filter: brightness(1.05);
}
.wo-pdp__in-cart {
  margin: 0;
  font-size: 0.88rem;
  color: #475569;
}
.wo-pdp__unavailable {
  margin: 0;
  font-weight: 700;
  color: #b91c1c;
}
.wo-pdp__tabs-wrap {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid #e2e8f0;
}
.wo-pdp__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.wo-pdp__tab {
  font: inherit;
  font-size: 0.86rem;
  font-weight: 600;
  color: #334155;
  background: #fff;
  border: 1px solid #cbd5e1;
  border-radius: 999px;
  padding: 0.45rem 0.95rem;
  cursor: pointer;
  transition:
    background 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease;
}
.wo-pdp__tab:hover {
  border-color: var(--wo-brand-mint-strong, #86efac);
  color: var(--wo-brand-primary-dark, #14532d);
}
.wo-pdp__tab.is-active {
  color: #fff;
  background: var(--wo-brand-primary, #166534);
  border-color: var(--wo-brand-primary, #166534);
}
.wo-pdp__tab-panels {
  border-top: 1px solid #e8edf0;
  padding-top: 1.1rem;
}
.wo-pdp__tab-panel.is-hidden {
  display: none;
}
.wo-pdp__tab-heading {
  margin: 0 0 0.75rem;
  font-size: 1.08rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
}
.wo-pdp__tab-muted {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: #64748b;
}
.wo-pdp__description {
  margin-top: 2.25rem;
  padding-top: 1.75rem;
  border-top: 1px solid #e2e8f0;
  grid-column: 1 / -1;
}
.wo-pdp__description h2 {
  margin: 0 0 0.85rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
}
.wo-pdp__description-body {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #334155;
}
@media (max-width: 768px) {
  .wo-pdp__article {
    grid-template-columns: 1fr;
  }
  .wo-pdp__specs div {
    grid-template-columns: 1fr;
  }
}

.wo-product-modal__more-wrap {
  margin: 0.65rem 0 0;
}
.wo-product-modal__more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--wo-brand-primary, #166534);
  text-decoration: none;
  border-bottom: 2px solid rgba(var(--wo-brand-primary-rgb), 0.35);
  padding-bottom: 0.1rem;
}
.wo-product-modal__more:hover {
  border-bottom-color: var(--wo-brand-primary, #166534);
}
