/* Cart Icon Styles */
.cart-icon {
  position: relative;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background: #ee3e4f;
  color: white;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.cart-icon:hover {
  background: #cf2a3b;
  transform: scale(1.1);
}

.cart-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #333;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: bold;
}

/* Add to Cart Button */
.add-to-cart-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  background: rgba(238,62,79, 0.95);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s ease;
  opacity: 0;
  z-index: 10;
}

.item:hover .add-to-cart-btn {
  opacity: 1;
}

.add-to-cart-btn:hover {
  background: #cf2a3b;
  transform: scale(1.1);
}

.add-to-cart-btn.added {
  background: #cf2a3b;
}

/* Tooltip */
.tooltip-cart {
  position: absolute;
  background: #333;
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.tooltip-cart::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #333;
}

.add-to-cart-btn:hover .tooltip-cart {
  opacity: 1;
}

/* Cart Popup */
.cart-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 380px;
  max-height: 500px;
  background: white;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  z-index: 9999;
  transform: translateY(600px);
  transition: transform 0.3s ease;
}

.cart-popup.show {
  transform: translateY(0);
}

.cart-header {
  background: #ee3e4f;
  color: white;
  padding: 15px 20px;
  border-radius: 10px 10px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-header h3 {
  margin: 0;
  font-size: 18px;
}

.close-cart {
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-items {
  max-height: 300px;
  overflow-y: auto;
  padding: 15px;
}

.cart-item {
  display: flex;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item-image {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 5px;
}

.cart-item-details {
  flex: 1;
}

.cart-item-name {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 5px;
}

.cart-item-price {
  color: #ee3e4f;
  font-weight: 500;
  font-size: 13px;
}

.cart-item-remove {
  background: none;
  border: none;
  color: #999;
  cursor: pointer;
  font-size: 18px;
  padding: 0 10px;
}

.cart-item-remove:hover {
  color: #ee3e4f;
}

.cart-empty {
  text-align: center;
  padding: 40px 20px;
  color: #999;
}

.cart-footer {
  padding: 15px 20px;
  border-top: 2px solid #eee;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
}

.checkout-btn {
  width: 100%;
  background: #ee3e4f;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.checkout-btn:hover {
  background: #cf2a3b;
}

/* Item position relative for absolute button */
.item {
  position: relative;
}

/* ── Equal-height product cards ──────────────────────────────────────────
   Product photos are on white backgrounds, so object-fit: contain letterboxes
   cleanly. Titles/descriptions clamp to 2 lines and the price pins to the
   card bottom so every card in a row is the same height. */
.grid_item,
.item.menu_item_grid {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.grid_item figure,
.item.menu_item_grid .item-img {
  aspect-ratio: 4 / 3;
  background: #fff;
}

.grid_item figure img,
.item.menu_item_grid .item-img > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.grid_item a h3,
.item.menu_item_grid h3 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.6em;
}

.item.menu_item_grid p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.6em;
}

.grid_item .price-tag,
.item.menu_item_grid .price_box {
  margin-top: auto;
}

/* Row gap lives on the column — a height:100% card would swallow its own
   bottom margin and let rows touch. */
.products-strip > [class*="col-"],
#mlati-products .row > [class*="col-"],
.magnific-gallery > [class*="col-"] {
  margin-bottom: 28px;
}
.grid_item,
.item.menu_item_grid {
  margin-bottom: 0;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .cart-popup {
    width: calc(100% - 40px);
    right: 20px;
  }
}

/* Quantity Popup Styles */
.quantity-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.quantity-popup.show {
  display: flex;
}

.quantity-popup-content {
  background: white;
  padding: 30px;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.close-popup {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #666;
}

.close-popup:hover {
  color: #333;
}

.quantity-popup h3 {
  margin-bottom: 20px;
  text-align: center;
  color: #333;
}

.product-info {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.popup-image {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  margin-right: 15px;
}

.product-details h4 {
  margin: 0 0 5px 0;
  color: #333;
}

.price-display {
  color: #666;
  font-weight: bold;
}

.quantity-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 25px 0;
  gap: 10px;
}

.quantity-btn {
  width: 40px;
  height: 40px;
  border: 1px solid #ddd;
  background: #f8f8f8;
  border-radius: 5px;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quantity-btn:hover {
  background: #e8e8e8;
}

.quantity-input {
  width: 80px;
  height: 40px;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
}

.quantity-unit {
  margin-left: 5px;
  font-weight: bold;
  color: #666;
}

.total-price {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  margin: 20px 0;
  color: #333;
}

.confirm-btn {
  width: 100%;
  padding: 15px;
  background: #ee3e4f;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.confirm-btn:hover {
  background: #cf2a3b;
}

.confirm-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
}

/* ─────────────────────────────────────────────────────────────────────────
   Brand-align Bootstrap semantic utilities to the site's taupe theme.
   The modals (customer_form.js, confirm/checkout pages) use Bootstrap's
   `success` (green) and `primary` (blue) helpers, which clash with the
   #ee3e4f brand. Remap those to the brand; leave `danger` (red) and
   `secondary` (grey) alone — they carry meaningful error/neutral semantics.
   ───────────────────────────────────────────────────────────────────────── */
.bg-success { background-color: #ee3e4f !important; }
.text-success { color: #ee3e4f !important; }
.btn-success {
  background-color: #ee3e4f !important;
  border-color: #ee3e4f !important;
}
.btn-success:hover,
.btn-success:focus {
  background-color: #cf2a3b !important;
  border-color: #cf2a3b !important;
}

.bg-primary { background-color: #ee3e4f !important; }
.text-primary { color: #ee3e4f !important; }
.btn-primary {
  background-color: #ee3e4f !important;
  border-color: #ee3e4f !important;
}
.btn-primary:hover,
.btn-primary:focus {
  background-color: #cf2a3b !important;
  border-color: #cf2a3b !important;
}

/* ─────────────────────────────────────────────────────────────────────────
   Remove focus rings / outlines on all interactive controls.
   The visible "ring" is the box-shadow glow from Bootstrap and the theme
   (e.g. .form-control:focus in style.css, .accordion-button/.btn in
   Bootstrap). This strips the outline + focus box-shadow on buttons, form
   fields, selects, checkboxes/radios, collapsibles/accordions, tabs and
   links, while leaving hover/active colour changes intact.
   ───────────────────────────────────────────────────────────────────────── */
button:focus,
button:focus-visible,
.btn:focus,
.btn:focus-visible,
.btn-check:focus + .btn,
[class*="btn_"]:focus,
[class*="btn_"]:focus-visible,
a:focus,
a:focus-visible,
input:focus,
input:focus-visible,
select:focus,
select:focus-visible,
textarea:focus,
textarea:focus-visible,
.form-control:focus,
.form-select:focus,
.form-check-input:focus,
.accordion-button:focus,
.accordion-button:not(.collapsed),
.nav-link:focus,
.nav-tabs .nav-link:focus,
.page-link:focus,
[data-bs-toggle]:focus,
[contenteditable]:focus,
summary:focus {
  outline: none !important;
  box-shadow: none !important;
}

/* ─────────────────────────────────────────────────────────────────────────
   Cookie consent (js/cookie-consent.js) — brand-themed (#ee3e4f).
   ───────────────────────────────────────────────────────────────────────── */
.mlati-cc-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 10000;
  background: #fff;
  color: #333;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  border-top: 4px solid #ee3e4f;
}
.mlati-cc-text { flex: 1 1 320px; min-width: 260px; }
.mlati-cc-text strong { display: block; font-size: 15px; margin-bottom: 4px; color: #262626; }
.mlati-cc-text p { margin: 0; font-size: 13px; line-height: 1.5; color: #666; }
.mlati-cc-actions { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }

.mlati-cc-btn {
  border: 1px solid #ee3e4f;
  border-radius: 6px;
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  line-height: 1;
}
.mlati-cc-btn.solid { background: #ee3e4f; color: #fff; }
.mlati-cc-btn.solid:hover { background: #cf2a3b; border-color: #cf2a3b; }
.mlati-cc-btn.ghost { background: transparent; color: #cf2a3b; }
.mlati-cc-btn.ghost:hover { background: #fdeef0; }

/* Preferences modal */
.mlati-cc-modal {
  position: fixed;
  inset: 0;
  z-index: 10001;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.mlati-cc-modal-card {
  background: #fff;
  border-radius: 12px;
  max-width: 520px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 26px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}
.mlati-cc-modal-card h3 { margin: 0 0 16px; color: #262626; font-size: 20px; }
.mlati-cc-close {
  position: absolute; top: 14px; right: 16px;
  background: none; border: none; font-size: 26px; line-height: 1;
  cursor: pointer; color: #999;
}
.mlati-cc-close:hover { color: #333; }
.mlati-cc-row {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 16px;
  padding: 14px 0; border-bottom: 1px solid #eee;
}
.mlati-cc-row strong { display: block; font-size: 14px; color: #262626; }
.mlati-cc-row p { margin: 4px 0 0; font-size: 12.5px; color: #777; line-height: 1.45; }
.mlati-cc-modal-actions { display: flex; justify-content: flex-end; gap: 10px; margin-top: 20px; }

/* Toggle switch */
.mlati-cc-switch { position: relative; display: inline-block; width: 44px; height: 24px; flex: 0 0 auto; margin-top: 2px; }
.mlati-cc-switch input { opacity: 0; width: 0; height: 0; }
.mlati-cc-switch::after {
  content: ""; position: absolute; inset: 0; border-radius: 24px;
  background: #ccc; transition: background 0.2s ease;
}
.mlati-cc-switch::before {
  content: ""; position: absolute; z-index: 1; height: 18px; width: 18px; left: 3px; top: 3px;
  background: #fff; border-radius: 50%; transition: transform 0.2s ease;
}
.mlati-cc-switch:has(input:checked)::after { background: #ee3e4f; }
.mlati-cc-switch:has(input:checked)::before { transform: translateX(20px); }
.mlati-cc-switch:has(input:disabled)::after { background: #ee3e4f; opacity: 0.55; }

@media (max-width: 600px) {
  .mlati-cc-banner { left: 10px; right: 10px; bottom: 10px; padding: 16px; }
  .mlati-cc-actions { width: 100%; }
  .mlati-cc-btn { flex: 1 1 auto; text-align: center; }
}

/* ─────────────────────────────────────────────────────────────────────────
   Form dialogs (js/become-customer-modal.js) — brand-themed (#ee3e4f).
   Replaces old dead links (reservations.html / leave-review.html).
   ───────────────────────────────────────────────────────────────────────── */
.mlati-modal {
  position: fixed;
  inset: 0;
  z-index: 10002;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.mlati-modal-card {
  background: #fff;
  border-radius: 12px;
  max-width: 480px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  padding: 28px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  border-top: 4px solid #ee3e4f;
}
.mlati-modal-card h3 { margin: 0 0 6px; color: #262626; font-size: 21px; }
.mlati-modal-sub { margin: 0 0 18px; font-size: 13.5px; color: #777; line-height: 1.5; }
.mlati-modal-close {
  position: absolute; top: 14px; right: 16px;
  background: none; border: none; font-size: 26px; line-height: 1;
  cursor: pointer; color: #999;
}
.mlati-modal-close:hover { color: #333; }
.mlati-field { margin-bottom: 14px; }
.mlati-field label { display: block; font-size: 12.5px; font-weight: 600; color: #555; margin-bottom: 5px; }
.mlati-field input,
.mlati-field select,
.mlati-field textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ecc4c9;
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  color: #333;
  background: #fff;
}
.mlati-field input:focus,
.mlati-field select:focus,
.mlati-field textarea:focus { border-color: #ee3e4f; }
.mlati-modal-msg { min-height: 18px; font-size: 13px; margin: 4px 0 8px; }
.mlati-modal-actions { display: flex; justify-content: flex-end; gap: 10px; margin-top: 10px; }
.mlati-modal-success { text-align: center; padding: 6px 0 4px; }
.mlati-modal-success h3 { color: #ee3e4f; }
.mlati-modal-success p { color: #666; font-size: 14px; margin: 8px 0; }
.mlati-modal-success a { color: #ee3e4f; font-weight: 600; }
.mlati-modal-success .mlati-cc-btn { margin-top: 12px; }

/* ─────────────────────────────────────────────────────────────────────────
   Address autocomplete dropdown (js/address-autocomplete.js) — brand-themed.
   ───────────────────────────────────────────────────────────────────────── */
.mlati-addr-dropdown {
  position: absolute;
  z-index: 10050;
  background: #fff;
  border: 1px solid #f0d4d8;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  max-height: 260px;
  overflow-y: auto;
  font-size: 14px;
}
.mlati-addr-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  cursor: pointer;
  color: #333;
  border-bottom: 1px solid #f7e6e9;
}
.mlati-addr-item:last-child { border-bottom: none; }
.mlati-addr-item:hover,
.mlati-addr-item.active { background: #fdeef0; }
.mlati-addr-pin { font-style: normal; opacity: 0.7; }

/* ─────────────────────────────────────────────────────────────────────────
   Campaign / promo dialog (js/campaign-modal.js) — image on top, promo text,
   single CTA at the bottom. Reuses the .mlati-modal overlay + brand palette.
   Compact by design (max 400px): not too big, not too small.
   ───────────────────────────────────────────────────────────────────────── */
.mlati-campaign-card {
  max-width: 400px;
  padding: 0;            /* image sits flush to the card edges */
  overflow: hidden;
  animation: mlatiCampaignIn 0.28s ease-out;
}
@keyframes mlatiCampaignIn {
  from { opacity: 0; transform: translateY(14px) scale(0.98); }
  to   { opacity: 1; transform: none; }
}
.mlati-campaign-img {
  width: 100%;
  height: 200px;
  background-color: #fdeef0;
  background-size: cover;
  background-position: center;
}
.mlati-campaign-body { padding: 22px 24px 24px; }
.mlati-campaign-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ee3e4f;
  background: #fdeef0;
  padding: 4px 11px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.mlati-campaign-body h3 { margin: 0 0 8px; color: #262626; font-size: 20px; line-height: 1.25; }
.mlati-campaign-body p { margin: 0 0 20px; color: #666; font-size: 14px; line-height: 1.55; }
.mlati-campaign-cta {
  display: inline-block;
  text-decoration: none;
  padding: 11px 22px;
  font-size: 14px;
}
.mlati-campaign-cta:hover { text-decoration: none; color: #fff; }
/* Float the close control over the image so it stays visible on the photo. */
.mlati-campaign-card .mlati-modal-close {
  top: 12px;
  right: 12px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.mlati-campaign-card .mlati-modal-close:hover { background: #fff; color: #000; }

/* ─────────────────────────────────────────────────────────────────────────
   Promo Zone page (promo-zone.html / js/promo-zone.js) — grid of all active
   campaigns. Reuses .mlati-campaign-img/-body/-badge/-cta card parts.
   ───────────────────────────────────────────────────────────────────────── */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}
.promo-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border-top: 4px solid #ee3e4f;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}
.promo-card .mlati-campaign-img { height: 180px; }
.promo-empty { text-align: center; padding: 20px 0; color: #777; }

/* Services page (services.html) — icon-font glyphs inside .box_how cards. */
.box_how figure i {
  display: inline-block;
  font-size: 68px;
  line-height: 110px;
  color: #ee3e4f;
}
@media (max-width: 991px) {
  .box_how figure i { font-size: 52px; line-height: 80px; }
}

/* ─────────────────────────────────────────────────────────────────────────
   Top Categories strip (index.html) — horizontal circular category chips
   below the hero slider, in the brand palette (#ee3e4f tan, white inner ring).
   ───────────────────────────────────────────────────────────────────────── */
.top-cats { padding: 40px 0 30px; background: #fff; }
.top-cats h2 {
  font-size: 20px;
  font-weight: 600;
  color: #262626;
  margin: 0 0 18px;
  text-align: center;
}
.top-cats-wrap { position: relative; }
.top-cats-scroller {
  display: flex;
  gap: 28px;
  justify-content: safe center;       /* centred when it fits, scrolls when not */
  overflow-x: auto;
  padding: 6px 4px 10px;
  scroll-snap-type: x proximity;
  scrollbar-width: none;              /* Firefox */
  -ms-overflow-style: none;           /* IE/Edge */
}
.top-cats-scroller::-webkit-scrollbar { display: none; }
.top-cat {
  flex: 0 0 auto;
  width: 112px;
  text-align: center;
  text-decoration: none;
  scroll-snap-align: start;
}
.top-cat-circle {
  display: block;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: #ee3e4f;
  padding: 5px;
  transition: transform 0.2s ease, background-color 0.2s ease;
}
.top-cat-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #fff;
}
.top-cat:hover .top-cat-circle { background: #cf2a3b; transform: scale(1.05); }
.top-cat-label {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #262626;
}
.top-cat:hover .top-cat-label { color: #ee3e4f; }
.top-cats-nav {
  position: absolute;
  top: 56px;                          /* centre on the circle row */
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: #ee3e4f;
  font-size: 18px;
  line-height: 1;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  z-index: 2;
}
.top-cats-nav:hover { background: #ee3e4f; color: #fff; }
.top-cats-nav.prev { left: -14px; }
.top-cats-nav.next { right: -14px; }
@media (max-width: 767px) {
  .top-cats { padding: 28px 0 20px; }
  .top-cat { width: 88px; }
  .top-cat-circle { width: 88px; height: 88px; padding: 4px; }
  .top-cat-circle img { border-width: 3px; }
  .top-cats-nav { display: none; }    /* touch swipe instead */
}

/* Home product grid — single horizontally-scrollable row (6 cards on xl,
   swipe/scroll on smaller screens). Same idea as .top-cats-scroller. */
.products-strip {
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.products-strip::-webkit-scrollbar { display: none; }
.products-strip > [class*="col-"] { flex-shrink: 0; }

/* Shop pagination (shop.html / js/shop-filters.js) — disabled arrow state. */
.pagination_fg a.disabled { opacity: 0.35; pointer-events: none; }

/* Empty state inside a facet group that has no values in the catalogue yet. */
.shop-facet-empty {
  list-style: none;
  color: #999;
  font-size: 13px;
  font-style: italic;
  padding: 2px 0;
}

/* Shop sidebar (shop.html) — CSS sticky replaces theiaStickySidebar: the extra
   filter groups made the column taller than the viewport, which broke the
   plugin. The aside itself sticks under the header (it must be the flex item —
   sticky on the inner .filter_col can't travel because the aside shrinks to
   content height). The list scrolls internally when taller than the screen. */
@media (min-width: 992px) {
  #sidebar_fixed {
    position: sticky;
    position: -webkit-sticky;
    top: 110px;
    align-self: flex-start;
  }
  #sidebar_fixed .filter_col {
    max-height: calc(100vh - 130px);
    overflow-y: auto;
  }
}

/* ==========================================================================
   PRICE TAG COMPONENT  (index.html featured cards + shop/our-products grid)
   Four states modelled on IKEA's pricing language, in Mlati's palette:
     .price-tag--standard  → plain everyday price
     .price-tag--trade     → amber "value" flag
     .price-tag--bulk      → per-quantity deal (R x /N units + saving)
     .price-tag--drop      → permanent "we've lowered the price" reduction
   Rendered statically in index.html and by js/products_func.js on the shop.
   ========================================================================== */
.price-tag {
  display: flex;              /* block-level: always takes its own line */
  flex-direction: column;
  align-items: center;
  gap: 4px;
  line-height: 1.2;
}
.price-tag__amount {
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 0.95;
  font-variant-numeric: tabular-nums;
  color: #222;
}
.price-tag__cur {
  font-size: 0.5em;
  font-weight: 800;
  transform: translateY(-0.15em);
}
.price-tag__int { font-size: 1.9rem; }
.price-tag__frac { font-size: 0.9rem; font-weight: 800; }
.price-tag__row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}
.price-tag__unit {
  font-size: 0.85rem;
  font-weight: 600;
  color: #6f685d;
}
.price-tag__meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.price-tag__old {
  text-decoration: line-through;
  color: #9a9183;
  font-weight: 600;
  font-size: 0.82rem;
  font-variant-numeric: tabular-nums;
}
.price-tag__save {
  background: #ee3e4f;
  color: #fff;
  font-weight: 800;
  font-size: 0.72rem;
  padding: 2px 7px;
  border-radius: 5px;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.price-tag__more {
  font-size: 0.74rem;
  color: #978667;
  font-weight: 600;
}

/* Standard — no extra treatment (uses base styles). */

/* Trade — amber value flag */
.price-tag--trade .price-tag__flag {
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
  background: #ffc107;
  color: #1c1a17;
  padding: 7px 15px 7px 13px;
  border-radius: 3px;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.12);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}
.price-tag--trade .price-tag__amount,
.price-tag--trade .price-tag__cur { color: #1c1a17; }

/* Bulk — per-N-units deal */
.price-tag--bulk .price-tag__amount { color: #ee3e4f; }
.price-tag--bulk .price-tag__unit { color: #ee3e4f; font-weight: 700; }

/* Drop — permanent lowered price */
.price-tag--drop .price-tag__banner {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #ee3e4f;
  font-weight: 800;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.price-tag--drop .price-tag__banner svg { width: 13px; height: 13px; display: block; }
.price-tag--drop .price-tag__amount { color: #ee3e4f; }
.price-tag--drop .price-tag__prev { font-size: 0.78rem; color: #6f685d; font-weight: 500; }
.price-tag--drop .price-tag__prev s { color: #9a9183; font-variant-numeric: tabular-nums; }

/* Amber ribbon variant to pair with a trade-price product image
   (extends the existing .ribbon in style.css). */
.ribbon.trade { background-color: #ffc107; color: #1c1a17; }

/* Anchor the corner ribbon inside the shop / our-products card image
   (.item-img is position:relative; the base .ribbon has no positioning). */
.item-img .ribbon { position: absolute; top: 12px; left: 12px; z-index: 2; }

/* ==========================================================================
   DESKTOP NAV LAYOUT  (≥992px)
   Nav items sit on the left, right next to the logo; only FAQs + cart are
   pushed to the far right:  [logo] [Home … Application] ⟶ [FAQs] [cart]
   Overrides the template's #logo{float:left} / .main-menu{float:right}.
   Mobile (<992px) keeps the slide-in hamburger menu untouched.
   ========================================================================== */
@media (min-width: 992px) {
  header.header .container {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
  }
  header.header #logo {
    float: none;
    flex: 0 0 auto;
    margin-right: 28px;
  }
  header.header .main-menu {
    float: none;
    flex: 1 1 auto;
    width: auto;
  }
  header.header .main-menu > ul {
    display: flex;
    align-items: center;
    width: 100%;
    margin: 0;
  }
  /* FAQs (marked .nav-right) and everything after it (the cart) go right. */
  header.header .main-menu > ul > li.nav-right {
    margin-left: auto;
  }
}
