/* ═══════════════════════════════════════════════════════
   VERDECRAFT — Brand: #41B121 | #000 | #fff
   ═══════════════════════════════════════════════════════ */
:root {
  --brand:    #41B121;
  --brand-dk: #339018;
  --brand-lt: #edfce8;
  --black:    #000000;
  --white:    #ffffff;
  --bg:       #f4f5f7;
  --card:     #ffffff;
  --text:     #000000;
  --muted:    #555555;
  --border:   #e0e0e0;
  --danger:   #e53e3e;
  --header-h: 72px;
}

[hidden] { display: none !important; }
* { box-sizing: border-box; }
html, body {
  padding: 0; margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

/* ══════════════════════════════════
   HEADER (unchanged)
   ══════════════════════════════════ */
.container { max-width: 100%; margin: 0; padding: 0; }

/* Sticky wrapper around the header container */
.header-sticky-wrap {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 2px solid var(--brand);
}

.header-grid {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  background: transparent;
  border-bottom: none;
  max-width: 1400px;
  margin: 0 auto;
}
.logo img { height: 44px; object-fit: contain; }

.search-wrap input[type="search"] {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 14px;
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
}
.search-wrap input[type="search"]:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(65,177,33,.15);
}

.cart-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1.5px solid var(--brand);
  background: var(--white);
  color: var(--black);
  padding: 7px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
}
.cart-button:hover { background: var(--brand-lt); }
.cart-badge {
  background: var(--brand);
  color: var(--white);
  font-weight: 700;
  font-size: 12px;
  padding: 2px 7px;
  border-radius: 999px;
}

/* ══════════════════════════════════
   BANNER — full width, above layout
   ══════════════════════════════════ */
.banner { margin: 0 0 0; width: 100%; }
.banner img { width: 100%; height: auto; display: block; }

/* ══════════════════════════════════
   3-COLUMN DESKTOP LAYOUT
   col 1: categories sidebar
   col 2: product list
   col 3: cart panel
   ══════════════════════════════════ */
.layout {
  display: grid;
  grid-template-columns: 220px 1fr 370px;
  gap: 0;
  align-items: start;
  padding: 0 20px;
}

/* ── Col 1: Category sidebar ── */
.sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  border-right: 1px solid var(--border);
  background: var(--white);
  padding: 0;
}
.side-inner {
  padding: 14px 12px;
}
.side-title {
  font-weight: 700;
  font-size: 13px;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 10px;
  padding: 14px 12px 10px;
  border-bottom: 2px solid var(--brand);
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 1;
}
.category-list {
  list-style: none;
  padding: 8px 12px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.cat-item {
  display: flex;
  align-items: center;
  border-radius: 8px;
  border: none;
  padding: 10px 12px;
  background: transparent;
  color: var(--black);
  cursor: pointer;
  font-size: 13.5px;
  font-weight: 500;
  transition: background .15s, color .15s;
}
.cat-item:hover {
  background: var(--brand-lt);
  color: var(--brand-dk);
}
.cat-item.active {
  background: var(--brand);
  color: var(--white);
  font-weight: 700;
}

/* ── Col 2: Product list ── */
.content {
  min-width: 0;
  border-right: 1px solid var(--border);
  background: var(--bg);
}

/* Desktop: product-card-top-row spans image+info columns, inline-row is action col */
.product-card-top-row {
  display: contents; /* children participate directly in parent grid */
}

/* 1 product per row */
.product-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
}

.product-card {
  background: var(--card);
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  padding: 14px 20px;
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 16px;
  align-items: center;
  transition: background .15s;
}
.product-card:hover { background: #fafffe; }
.product-card.out { opacity: .7; }
.product-card:first-child { border-top: 1px solid var(--border); }

/* Col 1: image */
.product-img {
  width: 100px;
  height: 100px;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  background: #fafafa;
  flex-shrink: 0;
}
.product-img img { width: 100%; height: 100%; object-fit: contain; }

/* Col 2: info */
.product-top {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.product-top > * { width: 100%; }

/* Col 3: action (qty + button stacked, right-aligned) */
.product-inline-row {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  flex-shrink: 0;
  min-width: 160px;
}
.product-inline-row .qty-row {
  width: 100%;
}
.product-inline-row .qty-row .qty-input {
  flex: 1;
  width: auto;
}
.product-inline-row .quote-btn {
  width: 100%;
  white-space: nowrap;
  text-align: center;
}
.product-inline-row .qty-error { margin: 0; font-size: 11px; }

.product-name {
  font-size: 15px;
  font-weight: 700;
  margin: 0;
  color: var(--black);
  line-height: 1.35;
}
.product-price {
  font-size: 15px;
  font-weight: 700;
  color: var(--brand-dk);
  margin: 0;
}
.product-min {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
}

.status {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  color: var(--danger);
  background: #fee2e2;
  border: 1px solid #fecaca;
  border-radius: 6px;
  padding: 3px 7px;
}

/* product-action wrapper (desktop: 3rd grid col, mobile: stacked) */
.product-action { display: contents; }

/* ── Qty row ── */
.qty-row {
  display: flex;
  align-items: center;
  gap: 6px;
}
.qty-btn {
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--black);
  width: 32px; height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 16px; font-weight: 700;
  transition: background .15s, border-color .15s;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}
.qty-btn:hover:not(:disabled) {
  border-color: var(--brand);
  background: var(--brand-lt);
  color: var(--brand-dk);
}
.qty-btn:disabled { opacity: .35; cursor: not-allowed; }
.qty-input {
  width: 64px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 6px 8px;
  text-align: center;
  font-size: 15px; font-weight: 600; color: var(--black);
}
.qty-input:focus { outline: none; border-color: var(--brand); }

/* ── ADD TO QUOTE ── */
.quote-btn {
  white-space: nowrap;
  border: 2px solid #41B121;
  background: #41B121;
  color: #ffffff;
  padding: 9px 16px;
  border-radius: 8px;
  font-weight: 700; font-size: 13px;
  cursor: pointer;
  transition: background .15s, border-color .15s;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  width: 100%;
}
.quote-btn:hover:not(:disabled) {
  background: #339018;
  border-color: #339018;
}
.quote-btn.disabled, .quote-btn:disabled { opacity: .4; cursor: not-allowed; }

/* ── Qty error ── */
.qty-error {
  color: var(--danger); font-size: 12px; font-weight: 500;
  margin: 2px 0 0; padding: 4px 8px;
  background: #fff5f5; border: 1px solid #fed7d7;
  border-radius: 4px; text-align: center;
}

.empty, .error {
  text-align: center; color: var(--muted); padding: 40px 20px;
}

/* ══════════════════════════════════
   COL 3: INLINE CART PANEL (desktop)
   ══════════════════════════════════ */
.cart-panel {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--white);
  overflow: hidden;
}

.cart-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px 12px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.cart-panel-title {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
}
.cart-clear-btn {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 13px;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}
.cart-clear-btn:hover { color: var(--danger); }

.cart-items {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cart-item {
  border-bottom: 1px solid var(--border);
  padding-bottom: 12px;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 10px;
  align-items: start;
}
.cart-item:last-child { border-bottom: none; }

.cart-item .product-img {
  width: 56px;
  height: 56px;
  border-radius: 6px;
}

.cart-item-info { display: flex; flex-direction: column; gap: 4px; }
.cart-item-name { font-size: 13px; font-weight: 600; line-height: 1.3; color: var(--black); }
.cart-item-price { font-size: 13px; color: var(--muted); }

.cart-item-qty-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  margin-top: 6px;
  flex-wrap: nowrap;
  min-width: 0;
}
.cart-item-qty-controls {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.cart-item-total {
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  flex-shrink: 0;
  text-align: right;
  min-width: 0;
  word-break: break-all;
}
.cart-item .qty-btn { width: 26px; height: 26px; font-size: 14px; }
/* Wider qty input in cart so large numbers show */
.cart-item .qty-input { width: 60px; font-size: 13px; padding: 4px 6px; }

.cart-footer {
  border-top: 2px solid var(--border);
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
  background: var(--white);
}
.cart-subtotal {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-subtotal-label { font-size: 14px; color: var(--muted); }
.cart-subtotal-value { font-size: 18px; font-weight: 800; color: var(--black); }

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--brand);
  color: var(--white);
  text-decoration: none;
  padding: 13px 16px;
  border-radius: 10px;
  font-weight: 700; font-size: 15px;
  transition: background .15s;
}
.whatsapp-btn:hover { background: var(--brand-dk); }

/* empty cart state */
.cart-empty {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
  padding: 20px;
}


/* ══════════════════════════════════
   DESKTOP CART POPUP (header button)
   ══════════════════════════════════ */
.cart-popup-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.35);
  z-index: 490;
  display: none;
}
.cart-popup-overlay.open { display: block; }

.cart-popup {
  position: fixed;
  top: 0; right: 0;
  width: 380px; height: 100%;
  background: var(--white);
  box-shadow: -4px 0 24px rgba(0,0,0,.18);
  z-index: 500;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform .25s ease;
}
.cart-popup.open { transform: translateX(0); }

.cart-popup-header {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--brand); color: var(--white);
  padding: 14px 18px; font-weight: 700; font-size: 16px;
  flex-shrink: 0;
}
.cart-popup-close {
  border: none; background: transparent; color: var(--white);
  font-size: 20px; cursor: pointer; line-height: 1;
}
.cart-popup .cart-items {
  flex: 1; overflow-y: auto; overflow-x: hidden;
  padding: 14px 16px;
  display: flex; flex-direction: column; gap: 12px;
}
.cart-popup .cart-footer {
  border-top: 2px solid var(--border);
  padding: 14px 18px;
  display: flex; flex-direction: column; gap: 10px;
  flex-shrink: 0;
}
.cart-popup .cart-subtotal {
  display: flex; align-items: center; justify-content: space-between;
}
.cart-popup .cart-subtotal-label { font-size: 14px; color: var(--muted); }
.cart-popup .cart-subtotal-value { font-size: 18px; font-weight: 800; }
/* ══════════════════════════════════
   OVERLAY (mobile only)
   ══════════════════════════════════ */
.overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(2px);
  z-index: 490;
  display: none;
}
.overlay.active { display: block; }

/* ══════════════════════════════════
   MOBILE CART DRAWER (hidden on desktop)
   ══════════════════════════════════ */
.cart-drawer {
  position: fixed; top: 0; right: 0;
  width: min(420px, 100%); height: 100%;
  background: var(--white);
  box-shadow: -4px 0 20px rgba(0,0,0,.18);
  display: none;
  flex-direction: column;
  z-index: 500;
}
.cart-drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--brand); color: var(--white);
  padding: 14px 18px; font-weight: 700; font-size: 16px;
  flex-shrink: 0;
  min-height: 56px;
}
.cart-close {
  border: 2px solid rgba(255,255,255,.6);
  background: rgba(255,255,255,.15);
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
  line-height: 1;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  touch-action: manipulation;
}

/* ── FAB ── */
.fab {
  position: fixed; bottom: 24px; right: 24px;
  width: 56px; height: 56px; border-radius: 50%;
  border: none; background: var(--brand); color: var(--white);
  font-size: 22px; display: none;
  align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(65,177,33,.45);
  cursor: pointer; z-index: 99;
}

/* ── Cat drawer (mobile) ── */
.cat-drawer {
  position: fixed; left: 0; right: 0; bottom: 0;
  height: 65%; background: var(--white);
  box-shadow: 0 -4px 20px rgba(0,0,0,.18);
  display: none;
  flex-direction: column;
  z-index: 500; border-radius: 16px 16px 0 0;
}
@media (max-width: 768px) {
  .cat-drawer:not([hidden]) { display: flex; }
}
.cat-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px; font-weight: 700; font-size: 16px;
  border-bottom: 2px solid var(--brand);
  background: var(--white); border-radius: 16px 16px 0 0;
  flex-shrink: 0;
}
.cat-header .cart-close { color: var(--black); }
#catDrawerList {
  flex: 1; overflow-y: auto;
  padding: 12px 16px;
  display: flex; flex-direction: column; gap: 6px;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
#catDrawerList .cat-item { flex-shrink: 0; }

/* ── Mobile horizontal cats bar ── */
.mobile-cats-wrap { display: none; }

/* ══════════════════════════════════
   TABLET  ≤ 1100px
   ══════════════════════════════════ */
@media (max-width: 1100px) {
  .layout { grid-template-columns: 200px 1fr 320px; }
}

/* ══════════════════════════════════
   MOBILE  ≤ 768px
   ══════════════════════════════════ */
@media (max-width: 768px) {
  /* Header */
  .header-grid {
    grid-template-columns: auto 1fr auto;
    gap: 8px; padding: 8px 12px;
  }
  .logo img { height: 28px; }
  .search-wrap { width: 100%; min-width: 0; }
  .search-wrap input[type="search"] { padding: 8px 10px; font-size: 13px; }

  /* Banner: hidden on mobile */
  .banner { display: block; }

  /* Layout: single column, no sidebar, no cart panel */
  .layout { grid-template-columns: 1fr; padding: 0; gap: 0; }
  .sidebar { display: none; }
  .cart-panel { display: none; }   /* replaced by mobile drawer */
  .content { border-right: none; padding: 0 12px; }

  /* Top row becomes real flex row on mobile */
  .product-card-top-row {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: flex-start;
  }

  /* ── Mobile product card: flex column layout ── */
  .product-card {
    /* Switch from 3-col grid to flex column for clean stacking */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 14px;
    margin: 8px 0;
    border-radius: 14px;
    border: 1.5px solid var(--border);
    border-bottom: 1.5px solid var(--border);
    box-shadow: 0 2px 10px rgba(0,0,0,.07);
  }
  .product-card:first-child { border-top: 1.5px solid var(--border); }

  /* Top row: image + info side by side */
  .product-card .product-img {
    width: 90px; height: 90px;
    border-radius: 10px;
    flex-shrink: 0;
  }
  .product-card .product-top {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
  }
  /* Info text next to image */
  .product-card .product-top > a,
  .product-card .product-top > p {
    flex: 1;
  }
  /* Re-wrap product-top as row containing image + text block */
  /* We restructure via CSS: image floats left, text fills right */

  /* Actually re-do: product-top row = horizontal flex */
  /* Wrap image + text info together */
  .product-card-top-row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
  }
  .product-card-top-row .product-img {
    width: 90px; height: 90px;
    border-radius: 10px;
    flex-shrink: 0;
  }
  .product-card-top-row .product-top {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .product-name { font-size: 14px; line-height: 1.3; word-break: break-word; }
  .product-price { font-size: 14px; }
  .product-min { font-size: 12px; }

  /* Qty row: full width */
  .product-inline-row {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    width: 100%;
    min-width: unset;
    margin-top: 0;
  }
  .product-inline-row .qty-row {
    display: flex; align-items: center; width: 100%;
  }
  .product-inline-row .qty-row .qty-input { flex: 1; width: auto; }
  .product-inline-row .qty-btn { width: 40px; height: 40px; font-size: 18px; flex-shrink: 0; }
  .product-inline-row .qty-error { display: none; }

  /* ADD TO QUOTE: full-width green */
  .product-inline-row .quote-btn {
    width: 100%;
    background: var(--brand);
    color: var(--white);
    border-color: var(--brand);
    padding: 13px;
    font-size: 14px;
    letter-spacing: .05em;
    text-transform: uppercase;
    font-weight: 800;
    justify-content: center;
    text-align: center;
    border-radius: 10px;
  }
  .product-inline-row .quote-btn::after { display: none; }

  /* Show FAB + mobile cat drawer */
  .fab { display: inline-flex; }

  /* Horizontal category scroll strip */
  .mobile-cats-wrap {
    overflow-x: auto; white-space: nowrap;
    padding: 10px 12px 6px;
    display: flex; gap: 8px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .mobile-cats-wrap::-webkit-scrollbar { display: none; }
  .mobile-cats-wrap .cat-item {
    display: inline-flex; flex-shrink: 0;
    border-radius: 999px; padding: 7px 14px;
    font-size: 13px; white-space: nowrap;
    border: 1.5px solid var(--border);
  }

  /* Mobile cart drawer */
  .cart-drawer { display: none; flex-direction: column; }
  .cart-drawer.open { display: flex; }
  .cart-drawer .cart-items {
    flex: 1; overflow: auto; padding: 16px;
    display: flex; flex-direction: column; gap: 12px;
  }
  .cart-drawer .cart-item {
    border-bottom: 1px solid var(--border);
    padding-bottom: 12px;
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 10px;
  }
  .cart-drawer .cart-footer {
    border-top: 2px solid var(--border);
    padding: 12px 18px;
    display: flex; flex-direction: column; gap: 10px;
  }
  .cart-drawer .cart-totals .row {
    display: flex; justify-content: space-between;
    padding: 5px 0; font-size: 14px;
  }
  .cart-drawer .cart-totals .row:last-child {
    font-weight: 700; font-size: 16px;
    border-top: 1px solid var(--border); padding-top: 8px;
  }

  /* Overlay active on mobile */
  .overlay.active { display: block; }
}

/* ── Product card: Add to Quote toggle UI ── */
.product-qty-selector {
  display: none;
  align-items: center;
  gap: 0;
  border: 1.5px solid var(--brand);
  border-radius: 8px;
  overflow: hidden;
  width: fit-content;
}
.product-qty-selector.visible { display: inline-flex; }

.pqs-del {
  border: none;
  background: var(--brand);
  color: var(--white);
  height: 42px;
  padding: 0 14px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  border-right: 1.5px solid rgba(255,255,255,.3);
  flex-shrink: 0;
  font-family: sans-serif;
}

.pqs-display {
  min-width: 48px;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  padding: 0 10px;
  line-height: 38px;
  user-select: none;
  border-right: 1.5px solid var(--border);
}

.pqs-plus {
  border: none;
  background: var(--brand);
  color: var(--white);
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 22px; font-weight: 700;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  flex-shrink: 0;
}
/* no hover effect on plus */

/* selector border matches green */
.product-qty-selector {
  border-color: var(--brand);
}

/* quote-btn: shown by default, hidden when selector visible */
.quote-btn-wrap { display: flex; }
.quote-btn-wrap.hidden { display: none; }

/* Add to Quote button style matches screenshot: outlined, not filled */
.quote-btn-outline {
  border: 1.5px solid var(--brand);
  background: var(--white);
  color: var(--brand-dk);
  padding: 8px 18px;
  border-radius: 8px;
  font-weight: 600; font-size: 13px;
  cursor: pointer;
  display: flex; align-items: center; gap: 6px;
  white-space: nowrap;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: background .15s, color .15s;
}
.quote-btn-outline:hover { background: var(--brand); color: var(--white); }
.quote-btn-outline::after { content: '+'; font-size: 16px; font-weight: 900; }

/* Mobile: full-width green for quote btn */
@media (max-width: 768px) {
  .quote-btn-outline {
    width: 100%;
    background: var(--brand);
    color: var(--white);
    border-color: var(--brand);
    padding: 13px;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: .04em;
    justify-content: center;
    border-radius: 10px;
  }
  .quote-btn-outline::after { display: none; }
  .product-qty-selector { width: 100%; border-radius: 10px; }
  .pqs-display { flex: 1; }
}
