/* ==========================================
   RESTART BURGER — SITE DO CLIENTE
   Cores: #C90000 | #FFF9E5 | #1f1f1f
   ========================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red: #C90000;
  --red-dark: #a80000;
  --beige: #FFF9E5;
  --dark: #1f1f1f;
  --gray: #666;
  --light-gray: #f5f5f5;
  --border: #e0e0e0;
  --white: #fff;
  --shadow: 0 2px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
  --radius: 12px;
  --nav-h: 56px;
  --header-h: 70px;
}

html { scroll-behavior: smooth; }
body { font-family: 'Montserrat', sans-serif; background: var(--beige); color: var(--dark); min-height: 100vh; }

/* ==========================================
   HEADER
   ========================================== */
.header {
  background: var(--dark);
  height: var(--header-h);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.header-inner {
  max-width: 680px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
}
.header-logo { display: flex; align-items: center; }
.logo-img { height: 44px; object-fit: contain; }
.logo-fallback {
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--white);
  text-transform: uppercase;
}
.logo-fallback span { color: var(--red); }

.header-info { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; }
.store-status { display: flex; align-items: center; gap: 6px; }
.status-dot { width: 9px; height: 9px; border-radius: 50%; background: #aaa; }
.store-status.open .status-dot { background: #4caf50; box-shadow: 0 0 6px #4caf5099; }
.store-status.closed .status-dot { background: #f44336; }
.status-text { font-size: 0.75rem; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 0.5px; }
.header-meta { font-size: 0.7rem; color: #bbb; display: flex; gap: 6px; }
.delivery-time, .min-order { font-weight: 600; }

/* ==========================================
   CATEGORIES NAV
   ========================================== */
.categories-nav {
  background: var(--white);
  position: sticky;
  top: var(--header-h);
  z-index: 99;
  border-bottom: 2px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.categories-inner {
  display: flex;
  gap: 0;
  overflow-x: auto;
  padding: 0 8px;
  max-width: 680px;
  margin: 0 auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.categories-inner::-webkit-scrollbar { display: none; }
.cat-btn {
  white-space: nowrap;
  padding: 14px 16px;
  border: none;
  background: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gray);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: all 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.cat-btn:hover { color: var(--red); }
.cat-btn.active { color: var(--red); border-bottom-color: var(--red); }

/* ==========================================
   MAIN / MENU
   ========================================== */
.main { max-width: 680px; margin: 0 auto; padding: 0 0 120px; }

.store-closed-banner {
  margin: 16px;
  background: #1f1f1f;
  border-radius: var(--radius);
  padding: 16px 20px;
}
.closed-inner { display: flex; flex-direction: column; gap: 4px; }
.closed-inner strong { color: var(--red); font-size: 1rem; }
.closed-inner span { color: #aaa; font-size: 0.85rem; }

.category-section { padding: 8px 0 4px; }
.category-title {
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--dark);
  padding: 20px 16px 12px;
  border-top: 4px solid var(--red);
  margin-top: 8px;
}
.category-title:first-child { border-top: none; margin-top: 0; }

.products-list { display: flex; flex-direction: column; }
.product-card {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background 0.15s;
  padding: 0;
  position: relative;
}
.product-card:hover { background: #fafafa; }
.product-card:active { background: #f0f0f0; }

.product-info { flex: 1; padding: 16px; min-width: 0; }
.product-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.product-desc {
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 8px;
}
.product-price {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--red);
}
.product-thumb {
  width: 100px;
  height: 100px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--light-gray);
}
.product-add-btn {
  position: absolute;
  bottom: 12px;
  right: 108px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--red);
  color: white;
  border: none;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(201,0,0,0.4);
}

.destaque-badge {
  background: var(--red);
  color: white;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
  display: inline-block;
}

/* ==========================================
   CART FLOAT
   ========================================== */
.cart-float {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  cursor: pointer;
  animation: slideUp 0.3s ease;
  width: calc(100% - 32px);
  max-width: 648px;
}
@keyframes slideUp { from { transform: translateX(-50%) translateY(80px); opacity:0; } to { transform: translateX(-50%) translateY(0); opacity:1; } }
.cart-float-inner {
  background: var(--red);
  color: white;
  border-radius: 14px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 20px rgba(201,0,0,0.5);
}
.cart-icon-wrap { position: relative; }
.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: white;
  color: var(--red);
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 0.65rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-label { flex: 1; font-size: 0.9rem; font-weight: 700; }
.cart-total { font-size: 1rem; font-weight: 800; }

/* ==========================================
   MODALS
   ========================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 300;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  animation: fadeIn 0.2s ease;
}
@keyframes fadeIn { from { opacity: 0; } }
.modal-box {
  background: var(--white);
  border-radius: 20px 20px 0 0;
  width: 100%;
  max-width: 680px;
  max-height: 92vh;
  overflow-y: auto;
  animation: slideUp2 0.3s ease;
  position: relative;
}
@keyframes slideUp2 { from { transform: translateY(100%); } to { transform: translateY(0); } }
.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  background: rgba(0,0,0,0.55);
  border: none;
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-img-wrap { width: 100%; height: 220px; background: #ddd; overflow: hidden; }
.modal-img { width: 100%; height: 100%; object-fit: cover; }
.modal-content { padding: 20px 16px 100px; }
.modal-name { font-size: 1.25rem; font-weight: 800; text-transform: uppercase; margin-bottom: 8px; }
.modal-desc { font-size: 0.85rem; color: var(--gray); line-height: 1.6; margin-bottom: 12px; }
.modal-price-main { font-size: 1.3rem; font-weight: 900; color: var(--red); margin-bottom: 20px; }

.modal-section { margin-bottom: 20px; border-top: 1px solid var(--border); padding-top: 16px; }
.section-title {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.required-badge { background: var(--red); color: white; font-size: 0.65rem; padding: 2px 7px; border-radius: 4px; font-weight: 700; }
.optional-badge { background: #eee; color: #666; font-size: 0.65rem; padding: 2px 7px; border-radius: 4px; font-weight: 700; }

.radio-group, .check-group { display: flex; flex-direction: column; gap: 2px; }
.radio-opt, .check-opt {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s;
}
.radio-opt:hover, .check-opt:hover { background: var(--light-gray); }
.radio-opt input, .check-opt input { accent-color: var(--red); width: 18px; height: 18px; flex-shrink: 0; }
.radio-opt span, .check-name { flex: 1; font-size: 0.9rem; font-weight: 500; }
.check-price { font-size: 0.85rem; font-weight: 700; color: var(--red); }

.obs-input {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  resize: none;
  height: 70px;
  color: var(--dark);
  outline: none;
}
.obs-input:focus { border-color: var(--red); }

.modal-footer {
  position: sticky;
  bottom: 0;
  background: white;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border);
  margin: 0 -16px;
}
.qty-ctrl { display: flex; align-items: center; gap: 12px; }
.qty-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--red);
  background: none;
  color: var(--red);
  font-size: 1.4rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.qty-val { font-size: 1.1rem; font-weight: 800; min-width: 24px; text-align: center; }
.add-cart-btn {
  flex: 1;
  background: var(--red);
  color: white;
  border: none;
  border-radius: 10px;
  padding: 14px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.add-cart-btn:hover { background: var(--red-dark); }

/* ==========================================
   CART MODAL
   ========================================== */
.cart-modal-box { border-radius: 20px 20px 0 0; }
.cart-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 16px 12px;
  border-bottom: 1px solid var(--border);
}
.cart-modal-header h2 { font-size: 1.1rem; font-weight: 800; text-transform: uppercase; }
.cart-items { padding: 0 0 8px; }
.cart-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
}
.cart-item-qty {
  background: var(--red);
  color: white;
  border-radius: 6px;
  width: 26px;
  height: 26px;
  font-size: 0.8rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cart-item-info { flex: 1; }
.cart-item-name { font-size: 0.9rem; font-weight: 700; margin-bottom: 2px; }
.cart-item-extras { font-size: 0.75rem; color: var(--gray); line-height: 1.5; }
.cart-item-price { font-size: 0.95rem; font-weight: 800; color: var(--red); white-space: nowrap; }
.cart-item-remove {
  background: none;
  border: none;
  cursor: pointer;
  color: #aaa;
  padding: 2px;
  font-size: 0.8rem;
}
.cart-item-remove:hover { color: var(--red); }

.cart-coupon { padding: 12px 16px; }
.coupon-row { display: flex; gap: 8px; }
.coupon-input {
  flex: 1;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 10px 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  outline: none;
}
.coupon-input:focus { border-color: var(--red); }
.coupon-btn {
  background: var(--dark);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 10px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
}
.coupon-msg { font-size: 0.8rem; margin-top: 6px; font-weight: 600; }
.coupon-msg.ok { color: #4caf50; }
.coupon-msg.err { color: var(--red); }

.cart-summary { padding: 8px 16px 16px; border-top: 1px solid var(--border); }
.summary-row { display: flex; justify-content: space-between; padding: 6px 0; font-size: 0.9rem; }
.discount-row span { color: #4caf50; }
.discount-val { color: #4caf50 !important; font-weight: 700; }
.total-row { border-top: 2px solid var(--dark); margin-top: 8px; padding-top: 10px; font-size: 1.1rem; font-weight: 800; }

.checkout-btn {
  display: block;
  width: calc(100% - 32px);
  margin: 0 16px 16px;
  background: var(--red);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background 0.2s;
}
.checkout-btn:hover { background: var(--red-dark); }
.checkout-btn:disabled { background: #ccc; cursor: not-allowed; }

/* ==========================================
   CHECKOUT MODAL
   ========================================== */
.checkout-modal-box { max-height: 95vh; border-radius: 20px 20px 0 0; }
.checkout-steps {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  justify-content: center;
}
.step { font-size: 0.75rem; font-weight: 600; color: #aaa; }
.step.active { color: var(--red); font-weight: 800; }
.step-sep { color: #ddd; font-size: 0.8rem; }

.step-title {
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 16px 16px 12px;
  border-bottom: 1px solid var(--border);
}
.form-row { padding: 10px 16px 0; }
.form-row label { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--gray); display: block; margin-bottom: 6px; }
.form-input {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 11px 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  outline: none;
  color: var(--dark);
  background: white;
  transition: border-color 0.2s;
}
.form-input:focus { border-color: var(--red); }
.form-input.error { border-color: var(--red); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.cep-row { display: flex; gap: 8px; }
.cep-btn {
  background: var(--dark);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 0 14px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}
.frete-info {
  margin: 10px 16px 0;
  background: #f0fff0;
  border: 1px solid #4caf50;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #2e7d32;
  display: none;
}
.frete-info.visible { display: block; }
.frete-gratis-banner {
  margin: 6px 0 2px;
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  border: 1px solid #4caf50;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #2e7d32;
  text-align: center;
}
.optional-label { font-weight: 400; font-size: 0.75rem; color: #aaa; text-transform: none; }

/* ==========================================
   BANNER CEP ENTRADA
   ========================================== */
.cep-entry-banner {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a1000 100%);
  padding: 16px 16px 14px;
}
.cep-entry-inner { max-width: 600px; margin: 0 auto; }
.cep-entry-title {
  color: var(--beige);
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 2px;
}
.cep-entry-sub {
  color: #999;
  font-size: 0.78rem;
  margin-bottom: 10px;
}
.cep-entry-form { display: flex; gap: 8px; }
.cep-entry-input {
  flex: 1;
  padding: 11px 14px;
  border-radius: 8px;
  border: 1.5px solid #444;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  background: #2a2a2a;
  color: #fff;
  outline: none;
  min-width: 0;
  letter-spacing: 1px;
}
.cep-entry-input:focus { border-color: var(--red); }
.cep-entry-input::placeholder { color: #555; letter-spacing: 0; font-weight: 400; }
.cep-entry-btn {
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 11px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s;
}
.cep-entry-btn:hover { background: var(--red-dark); }
.cep-entry-btn:disabled { opacity: 0.6; cursor: default; }
.cep-entry-result {
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 0.83rem;
  font-weight: 600;
  line-height: 1.4;
}
.cep-entry-result.ok   { background: #1a3300; color: #8fff72; border: 1px solid #3a6600; }
.cep-entry-result.free { background: #0d2e00; color: #b8ff80; border: 1px solid #4a8800; }
.cep-entry-result.no   { background: #2e0a0a; color: #ff9a9a; border: 1px solid #660000; }

.step-nav {
  display: flex;
  gap: 10px;
  padding: 12px 16px 20px;
}
.back-btn {
  background: none;
  border: 2px solid var(--border);
  border-radius: 10px;
  padding: 14px 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  color: var(--gray);
}
.step-nav .checkout-btn { flex: 1; margin: 0; display: block; }

/* Pagamento */
.payment-opts { display: flex; flex-direction: column; gap: 2px; padding: 8px 16px; }
.pay-opt {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border: 2px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.15s;
}
.pay-opt:has(input:checked) { border-color: var(--red); background: #fff5f5; }
.pay-opt input { display: none; }
.pay-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 900;
  color: var(--dark);
  flex-shrink: 0;
}
.pay-opt span { font-size: 0.9rem; font-weight: 700; display: flex; flex-direction: column; }
.pay-opt span small { font-size: 0.75rem; font-weight: 400; color: var(--gray); margin-top: 2px; }
.pay-opt-disabled { opacity: 0.45; pointer-events: none; cursor: default; }

.pix-section { margin: 12px 16px; background: var(--beige); border-radius: 10px; padding: 16px; }
.pix-instruction { font-size: 0.82rem; color: var(--gray); margin-bottom: 12px; line-height: 1.5; }
.pix-box { display: flex; gap: 16px; align-items: flex-start; flex-wrap: wrap; }
.pix-qr-container { border-radius: 8px; border: 2px solid var(--border); overflow: hidden; flex-shrink: 0; }
.pix-qr-container img { display: block; }
.pix-info { flex: 1; min-width: 160px; }
.pix-info p { font-size: 0.82rem; margin-bottom: 6px; color: var(--dark); }
.pix-valor { color: var(--red); font-weight: 800; }
.copy-pix-btn {
  margin-top: 8px;
  background: var(--dark);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 8px 14px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
}
.pix-aviso {
  margin-top: 10px;
  font-size: 0.75rem;
  color: var(--gray);
  line-height: 1.5;
  background: rgba(0,0,0,0.04);
  border-radius: 6px;
  padding: 8px 10px;
}

.troco-section { padding: 0 16px 4px; }
.troco-section label { display: block; font-size: 0.8rem; font-weight: 700; color: var(--gray); margin-bottom: 6px; }
.troco-input { max-width: 160px; }

.order-summary-final {
  margin: 12px 16px;
  background: var(--light-gray);
  border-radius: 10px;
  padding: 14px;
  font-size: 0.82rem;
  color: var(--gray);
}
.order-summary-final .sum-line { display: flex; justify-content: space-between; padding: 3px 0; }
.order-summary-final .sum-total { font-size: 1rem; font-weight: 800; color: var(--dark); border-top: 1px solid var(--border); margin-top: 8px; padding-top: 8px; display: flex; justify-content: space-between; }
.confirm-btn { background: #25d366 !important; }
.confirm-btn:hover { background: #1eb850 !important; }

/* ==========================================
   LOADING
   ========================================== */
.loading { display: flex; justify-content: center; padding: 48px 0; }
.spinner { width: 36px; height: 36px; border: 3px solid var(--border); border-top-color: var(--red); border-radius: 50%; animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ==========================================
   EMPTY CART
   ========================================== */
.empty-cart { text-align: center; padding: 48px 16px; color: var(--gray); }
.empty-cart svg { margin-bottom: 12px; opacity: 0.4; }
.empty-cart p { font-size: 0.9rem; font-weight: 600; }

/* ==========================================
   SCROLLBAR
   ========================================== */
.modal-box::-webkit-scrollbar { width: 4px; }
.modal-box::-webkit-scrollbar-track { background: transparent; }
.modal-box::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

/* ==========================================
   BANNER STICKY ENTREGA GRÁTIS
   ========================================== */
.sticky-entrega-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 42px;
  z-index: 500;
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px 0 16px;
  font-size: 0.82rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
  letter-spacing: 0.01em;
}
.sticky-entrega-banner.gratis { background: #2e7d32; }
.sticky-banner-text { text-align: center; }
.sticky-banner-close {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
}
.sticky-banner-close:hover { color: #fff; }

html.has-sticky-banner body { padding-top: 42px; }
html.has-sticky-banner .header { top: 42px; }
html.has-sticky-banner .categories-nav { top: calc(var(--header-h) + 42px); }
