/* ==========================================================================
   SuperCoinsy — new layout (2026)
   Header sections only: #top-bar, #cart-bar, #nav, #mobile-nav.

   MOBILE FIRST: base rules describe the phone. Desktop is layered on in the
   single `@media (min-width: 769px)` block at the bottom. The reference
   template was written desktop-first; it is inverted here so the common case
   needs no overrides.

   Loaded standalone (not part of the all.css bundle) via htmlheader.blade.php.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   Names match the reference template so later sections port over verbatim.
   -------------------------------------------------------------------------- */
:root {
  --black: #1a1a1a;
  --dark: #252627;
  --gold: #f0a500;
  --gold-dark: #d4920a;
  --gold-light: #f5c842;
  --gray: #e0e0e0;
  --gray-text: #666;
  --green: #27ae60;
  --blue: #4a9eff;

  --nl-max: 1280px;   /* content width, shared by all three bars */
  --nl-pad: 12px;     /* gutter (mobile; widened on desktop) */
  --nl-line: #2a2a2a; /* divider on dark surfaces */
}

/* --------------------------------------------------------------------------
   2. Scoped reset
   Deliberately NOT a global `*` reset — the rest of the site still runs on
   the legacy grid, and zeroing its margins would wreck it.
   -------------------------------------------------------------------------- */
/* :where() keeps this at ZERO specificity. With a plain `#cart-bar *` selector
   the reset scores 1,0,0 and silently beats every class rule below it, so
   things like .cb-panel / .dropbtn padding would never apply. */
:where(#top-bar, #cart-bar, #nav, #mobile-nav),
:where(#top-bar, #cart-bar, #nav, #mobile-nav) * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
/* Also :where() — a plain `#cart-bar a` (1,0,1) would beat component rules like
   `.cb-doladuj { color:#000 }` (0,1,0), so links would ignore their own colour. */
:where(#top-bar, #cart-bar, #nav, #mobile-nav) a {
  text-decoration: none;
  color: inherit;
}
:where(#top-bar, #cart-bar, #nav, #mobile-nav) ul { list-style: none; }

/* --------------------------------------------------------------------------
   3. Shared primitives
   The one rule that would otherwise be copy-pasted into all three bars.
   -------------------------------------------------------------------------- */
#top-bar .inner,
#cart-bar .inner,
#nav .inner {
  max-width: var(--nl-max);
  margin: 0 auto;
  padding: 0 var(--nl-pad);
  display: flex;
  align-items: center;
}

/* Gold pill button — used by DOŁADUJ, SPRAWDŹ and the categories trigger */
.nl-btn {
  background: var(--gold);
  color: #000;
  border: none;
  border-radius: 5px;
  padding: 7px 16px;
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .5px;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: background .2s;
}
.nl-btn:hover { background: var(--gold-dark); }

/* --------------------------------------------------------------------------
   4. #top-bar — logo, e-mail, language + currency
   -------------------------------------------------------------------------- */
#top-bar {
  background: #fff;
  border-bottom: 1px solid var(--gray);
  padding: 8px 0;
  position: relative;
  z-index: 1000;
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
}
#top-bar .inner { justify-content: space-between; flex-wrap: nowrap; gap: 8px; }
#top-bar .logo { flex-shrink: 0; }
#top-bar .logo a { display: flex; align-items: center; gap: 8px; }
/* mobile: compact square icon only (frees space for the full language label) */
#top-bar .logo-icon { display: block; height: 34px; width: 34px; }
#top-bar .logo-full { display: none; }
#top-bar .top-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

/* e-mail is noise on a phone — desktop re-enables it */
#top-bar .mail { display: none; color: var(--gray-text); align-items: center; gap: 5px; }
#top-bar .mail:hover { color: var(--gold); }

.lang-curr { display: flex; gap: 8px; }
.dropdown { position: relative; }
.dropbtn {
  background: var(--dark);
  border: 1px solid var(--dark);
  border-radius: 4px;
  padding: 5px 10px;
  color: #fff;
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.dropbtn:hover { border-color: var(--gold); background: #111; }
/* The country-flag sprite (.dropbtn .flag) comes from responsive.css at
   30x15 !important. Trim it a touch so it isn't oversized next to the label;
   background-size stays 85% so the sprite positions remain valid. */
#top-bar .dropbtn .flag { width: 22px !important; height: 14px !important; }
.dropbtn-txt { white-space: nowrap; }

#top-bar .dropdown-content {
  display: none;
  position: absolute;
  right: 0;                /* anchored right so it can't overflow the viewport */
  top: calc(100% + 4px);
  background: var(--dark);
  border: 1px solid #444;
  border-radius: 6px;
  min-width: 150px;
  max-height: 60vh;
  overflow-y: auto;
  z-index: 9999;
  box-shadow: 0 8px 24px rgba(0,0,0,.6);
}
/* hover-bridge so the menu survives the gap between button and panel */
#top-bar .dropdown-content::before {
  content: '';
  position: absolute;
  top: -8px; left: 0; right: 0;
  height: 8px;
}
#top-bar .dropdown-content a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  font-size: 13px;
  color: #fff;
}
#top-bar .dropdown-content a:hover { background: #333; }
#top-bar .dropdown-content a.current { color: var(--gold); font-weight: 700; }
#top-bar .dropdown:hover .dropdown-content,
#top-bar .dropdown:focus-within .dropdown-content { display: block; }

/* --------------------------------------------------------------------------
   5. #cart-bar
   Mobile shows only the compact .mob-bar (hamburger + SCP).
   The three .cb-panel widgets and .cart-account are desktop-only.
   -------------------------------------------------------------------------- */
#cart-bar {
  background: linear-gradient(to bottom, var(--dark) 0%, var(--black) 100%);
  border-bottom: 1px solid rgba(255,255,255,.06);
  font-family: 'Barlow', sans-serif;
}
#cart-bar .inner { padding: 0; align-items: stretch; }

/* Sticky wrapper (body-level, so its containing block spans the page). Holds
   #cart-bar; on scroll the top bar scrolls away and this pins to the top.
   On desktop it releases and #nav does the pinning instead. */
#sticky-header {
  position: sticky;
  top: 0;
  z-index: 900;
}

.cb-panel, .cart-account { display: none; }

/* -- compact mobile bar -- */
.mob-bar {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 46px;
  background: #2a2a2b;
}
.mob-all-cats {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--gold);
  border: none;
  border-radius: 6px;
  padding: 7px 12px;
  margin-left: 8px;
  cursor: pointer;
  /* the "Wszystkie kategorie" label is required, so this keeps its full width;
     the SCP block yields instead */
  flex-shrink: 0;
}
.mob-all-cats-ic { font-size: 16px; color: #000; }
.mob-all-cats-lb {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 800;
  color: #000;
  text-transform: uppercase;
  letter-spacing: .3px;
  white-space: nowrap;
}
.mob-sep { width: 1px; height: 26px; background: rgba(255,255,255,.1); flex-shrink: 0; margin: 0 8px; }
/* SCP block absorbs the remaining width and shrinks before the categories button */
.mob-scp { display: flex; align-items: center; gap: 8px; flex: 1 1 auto; min-width: 0; padding-right: 8px; }
.mob-scp-badge {
  width: 30px;
  height: 30px;
  background: var(--gold);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mob-scp-badge img { width: 26px; height: 26px; object-fit: contain; }
.mob-scp-info { display: flex; flex-direction: column; flex-shrink: 0; min-width: 0; }
.mob-scp-title {
  font-size: 8px;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .3px;
  line-height: 1.15;
  white-space: nowrap;
}
.mob-scp-val {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  white-space: nowrap;
  flex-shrink: 0;   /* never truncate the balance */
}
.mob-scp-btn {
  background: var(--gold);
  color: #000;
  font-size: 9px;
  font-weight: 800;
  padding: 4px 9px;
  border-radius: 4px;
  text-transform: uppercase;
  white-space: nowrap;
  margin-left: auto;
  flex-shrink: 0;
}
/* Phones: tighten spacing so the full "Wszystkie kategorie" label + SCP
   title + balance + recharge all stay on one row. */
@media (max-width: 430px) {
  .mob-all-cats { padding: 6px 9px; gap: 5px; margin-left: 6px; }
  .mob-all-cats-lb { font-size: 11px; letter-spacing: .2px; }
  .mob-all-cats-ic { font-size: 15px; }
  .mob-sep { margin: 0 5px; }
  .mob-scp { gap: 6px; padding-right: 6px; }
  .mob-scp-btn { padding: 4px 7px; }
}
/* Compact Android widths (~360): shave a few more px so everything still fits. */
@media (max-width: 374px) {
  .mob-all-cats-lb { letter-spacing: 0; }
  .mob-all-cats { padding: 6px 8px; gap: 4px; }
  .mob-scp { gap: 5px; }
  .mob-scp-btn { padding: 4px 6px; }
}
/* Very narrow (iPhone-SE class): the recharge CTA yields last — still reachable
   via the SCP badge link and inside the menu. */
@media (max-width: 344px) {
  .mob-scp-btn { display: none; }
}

/* -- desktop panel internals (inert until the panels are shown) -- */
.cb-panel {
  align-items: center;
  gap: 10px;
  padding: 0 12px;
  border-right: 1px solid var(--nl-line);
  position: relative;
  /* shrinkable by default: at 769-1099px the three panels plus the account
     block are wider than the viewport, so they must be able to give way */
  min-width: 0;
}
.cb-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
}
.cb-panel-scp::before { background: var(--gold); }
.cb-panel-time::before { background: var(--green); }
.cb-panel-status::before { background: var(--blue); }
.cb-panel-status { flex: 1; border-right: none; }
.cb-panel:first-child { padding-left: 0; }

.cb-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.cb-icon-wrap img { width: 34px; height: 34px; object-fit: contain; }
.cb-icon-gold { background: rgba(240,165,0,.15); }
.cb-icon-green { background: rgba(39,174,96,.15); }
.cb-icon-blue { background: rgba(74,158,255,.15); }

.cb-info { display: flex; flex-direction: column; gap: 1px; min-width: 0; overflow: hidden; }
.cb-info > * { overflow: hidden; text-overflow: ellipsis; }
.cb-title {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,.75);
  text-transform: uppercase;
  letter-spacing: .5px;
}
.cb-main {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  white-space: nowrap;
}
.cb-main strong { color: var(--gold); }
.cb-sub { font-size: 12px; color: rgba(255,255,255,.75); white-space: nowrap; }
.cb-sub strong { color: var(--green); }

/* delivery-time rotator: one item visible at a time */
.cb-delivery-slide { position: relative; }
.cb-delivery-item { display: none; flex-direction: column; gap: 1px; }
.cb-delivery-item.active { display: flex; }

.cb-doladuj {
  background: linear-gradient(to bottom, var(--gold) 0%, var(--gold-dark) 100%);
  color: #000;
  font-size: 11px;
  font-weight: 800;
  padding: 7px 16px;
  border-radius: 5px;
  letter-spacing: .5px;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
  border: none;
  cursor: pointer;
  transition: all .3s ease;
}
.cb-doladuj:hover {
  background: linear-gradient(to bottom, #f5b020 0%, #e09810 100%);
  transform: scale(1.02);
  box-shadow: 0 0 20px rgba(240,165,0,.4);
}

.cb-status-inner { display: flex; align-items: center; gap: 8px; flex: 1; }
.cb-status-inner input {
  flex: 1;
  min-width: 0;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 5px;
  padding: 5px 10px;
  color: rgba(255,255,255,.7);
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  outline: none;
}
.cb-status-inner input:focus { border-color: var(--gold); color: #fff; }

.cart-account { align-items: center; margin-left: auto; gap: 24px; padding: 8px 0 8px 20px; }
.cart-account-item { display: flex; align-items: center; gap: 8px; }
.cart-account-item .ic { font-size: 20px; }
.cart-account-item .label { font-size: 11px; color: rgba(255,255,255,.65); }
.cart-account-item .value { font-size: 13px; font-weight: 700; color: #fff; }
.cart-account-item:hover .value { color: var(--gold); }

/* --------------------------------------------------------------------------
   6. #nav — desktop only; the phone uses #mobile-nav instead
   -------------------------------------------------------------------------- */
#nav { display: none; background: var(--dark); font-family: 'Barlow', sans-serif; }

.all-categories {
  background: var(--gold);
  color: #000;
  font-weight: 700;
  font-size: 13px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
  transition: background .2s;
}
.all-categories:hover { background: var(--gold-dark); }
.all-categories .hamburger { display: flex; flex-direction: column; gap: 4px; }
.all-categories .hamburger span {
  width: 16px;
  height: 2px;
  background: #000;
  border-radius: 1px;
  display: block;
}

.mega-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--dark);
  border: 1px solid #333;
  border-top: 3px solid var(--gold);
  border-radius: 0 0 10px 10px;
  z-index: 300;
  box-shadow: 0 12px 40px rgba(0,0,0,.4);
  width: 780px;
  padding: 10px 18px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}
.mega-cat-group { margin-bottom: 8px; }
.mega-supercat {
  font-size: 12px;
  font-weight: 800;
  color: rgba(255,255,255,.9);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 5px 10px;
  background: rgba(255,255,255,.06);
  border-left: 3px solid var(--gold);
  border-radius: 0 4px 4px 0;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mega-cat-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .8px;
  padding: 6px 0 4px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.mega-cat-title a { color: var(--gold); font-weight: 800; }
.mega-cat-title a:hover { color: #fff; }
.mega-sub-link {
  display: block;
  padding: 3px 0 3px 16px;
  font-size: 13px;
  line-height: 1.4;
  color: rgba(255,255,255,.65);
  border-left: 2px solid transparent;
  transition: color .15s, padding-left .15s;
}
.mega-sub-link:hover { color: #fff; padding-left: 20px; border-left-color: var(--gold); }

nav#cssmenu { display: flex; align-items: stretch; min-width: 0; }
nav#cssmenu > ul { display: flex; align-items: stretch; flex-wrap: wrap; }
nav#cssmenu > ul > li { position: relative; }
nav#cssmenu > ul > li > a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
  height: 46px;
  color: #ddd;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: color .2s, background .2s;
}
nav#cssmenu > ul > li > a img.icon { max-height: 18px; }
nav#cssmenu > ul > li:hover > a { color: var(--gold); background: rgba(255,255,255,.05); }
nav#cssmenu > ul > li > a.active { color: var(--gold); }

#nav .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--dark);
  border: 1px solid #333;
  border-top: 3px solid var(--gold);
  border-radius: 0 0 8px 8px;
  min-width: 220px;
  z-index: 200;
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
}
#nav .sub-menu li a {
  display: block;
  padding: 9px 16px;
  font-size: 13px;
  color: #ccc;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background .15s, color .15s;
}
#nav .sub-menu li a:hover { background: rgba(255,255,255,.06); color: var(--gold); }

/* --------------------------------------------------------------------------
   7. #mobile-nav — full-screen overlay
   -------------------------------------------------------------------------- */
#mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  width: 100vw;
  max-width: 100vw;
  background: #111;
  z-index: 99999;
  overflow-y: auto;
  overflow-x: hidden;
  flex-direction: column;
  font-family: 'Barlow', sans-serif;
}
#mobile-nav.open { display: flex; }

.mnav-header {
  background: var(--dark);
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 2px solid var(--gold);
  position: sticky;
  top: 0;
  z-index: 10;
  width: 100%;
}
.mnav-header img { height: 30px; }
.mnav-header .logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--gold);
}
.mnav-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 26px;
  line-height: 1;
  padding: 0 4px;
  margin-left: auto;
  cursor: pointer;
}
.mnav-body { padding: 12px 0; flex: 1; width: 100%; overflow-x: hidden; }

.mnav-group { border-bottom: 1px solid rgba(255,255,255,.07); width: 100%; }
.mnav-group-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  min-height: 56px;      /* comfortable touch target */
  cursor: pointer;
  transition: background .15s;
}
.mnav-group-header:hover { background: rgba(255,255,255,.04); }
.mnav-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mnav-icon { font-size: 22px; width: 30px; text-align: center; flex-shrink: 0; }
.mnav-icon img { max-width: 22px; max-height: 22px; }
.mnav-arrow { font-size: 16px; color: rgba(255,255,255,.4); transition: transform .25s; }
.mnav-group.open .mnav-arrow { transform: rotate(90deg); }

.mnav-subs { display: none; background: rgba(255,255,255,.03); padding: 4px 0 8px; }
.mnav-group.open .mnav-subs { display: block; }
.mnav-sub-link {
  display: flex;
  align-items: center;
  padding: 14px 20px 14px 60px;
  min-height: 48px;
  font-size: 15px;
  color: rgba(255,255,255,.7);
  border-bottom: 1px solid rgba(255,255,255,.04);
  transition: color .15s, background .15s;
}
.mnav-sub-link:hover { color: var(--gold); background: rgba(255,255,255,.04); }

.mnav-direct-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  min-height: 56px;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: background .15s;
}
.mnav-direct-link:hover { background: rgba(255,255,255,.04); color: var(--gold); }

/* account / login rows sit visually below the catalogue */
.mnav-direct-link.is-account { font-size: 15px; font-weight: 600; color: rgba(255,255,255,.8); }

/* --------------------------------------------------------------------------
   8. Desktop (>= 769px)
   Everything above this line is the phone layout.
   -------------------------------------------------------------------------- */
@media (min-width: 769px) {
  :root { --nl-pad: 20px; }

  #top-bar { font-size: 13px; }
  #top-bar .logo-icon { display: none; }
  #top-bar .logo-full { display: block; height: 34px; }
  #top-bar .top-right { gap: 20px; }
  #top-bar .mail { display: flex; }

  /* desktop: the wrapper releases and #nav becomes the sticky element */
  #sticky-header { position: static; z-index: auto; }
  #cart-bar .inner { min-height: 66px; padding: 0 var(--nl-pad); }
  .mob-bar { display: none; }
  .cb-panel { display: flex; }
  .cart-account { display: flex; }

  #nav { display: block; position: sticky; top: 0; z-index: 100; }
  #nav .inner { align-items: stretch; }
  .all-categories:hover .mega-dropdown,
  .mega-dropdown:hover {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px 22px;
  }
  nav#cssmenu > ul > li:hover .sub-menu,
  #nav .sub-menu:hover { display: block; }
}

/* --------------------------------------------------------------------------
   9. Wide desktop (>= 1100px)
   Only here is there room to give the cart-bar panels their full width.
   -------------------------------------------------------------------------- */
@media (min-width: 1100px) {
  .cb-panel { min-width: 200px; padding: 0 20px; }
  .cb-panel:first-child { padding-left: 0; }
}

/* --------------------------------------------------------------------------
   10. Main content zone — light-grey backdrop (matches the reference #f0f0f0)
   Scoped to #main so only the shop content zone changes, not body site-wide.
   Also sets the base typography for the content zone; descendants with their
   own font/size/colour rules still win (these are inherited defaults only).
   -------------------------------------------------------------------------- */
#main {
  background: #f0f0f0;
  font-family: 'Barlow', sans-serif;
  color: var(--black);
  font-size: 14px;
}

/* --------------------------------------------------------------------------
   11. Footer — dark, aligned to the new design
   New markup (.footer-inner / .footer-grid / .footer-col) means the legacy
   #footer #top / #bottom rules no longer match; these own the footer now.
   Footer is outside the header reset scope, so margins/lists are set here.
   -------------------------------------------------------------------------- */
#footer {
  background: var(--dark);
  color: #aaa;
  padding: 36px 0 16px;
  margin-top: 8px;
  font-family: 'Barlow', sans-serif;
  width: 100%;
}
/* :where() keeps this at 0 specificity so .footer-col link colours + hovers win */
:where(#footer) a { color: inherit; text-decoration: none; }
.footer-inner { max-width: var(--nl-max); margin: 0 auto; padding: 0 var(--nl-pad); }

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;   /* mobile: single column */
  gap: 24px;
  margin-bottom: 24px;
}

.footer-brand .footer-logo img { height: 34px; display: block; margin-bottom: 10px; }
.footer-brand p { font-size: 12px; line-height: 1.6; margin: 0 0 12px; color: #999; }
.social-links { display: flex; gap: 8px; flex-wrap: wrap; }
.social-link {
  background: rgba(255,255,255,.1);
  color: #ddd;
  border-radius: 6px;
  padding: 7px 11px;
  font-size: 11px;
  font-weight: 700;
  transition: background .2s, color .2s;
}
.social-link:hover { background: var(--gold); color: #000; }

.footer-col h4 {
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 12px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col ul li { margin-bottom: 7px; }
.footer-col ul li a { color: #888; font-size: 12px; transition: color .2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-hours { font-size: 11px; color: #888; line-height: 1.7; margin-top: 10px; }

.footer-disclaimer {
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.07);
  margin-top: 8px;
}
.footer-disclaimer, .footer-disclaimer p {
  font-size: 11px;
  color: rgba(255,255,255,.35);
  line-height: 1.6;
}
.footer-disclaimer p { margin: 0 0 8px; }
.footer-disclaimer p:last-child { margin-bottom: 0; }
.footer-disclaimer strong { color: rgba(255,255,255,.55); font-weight: 700; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 11px;
}
.footer-credits { color: rgba(255,255,255,.35); }
.footer-credits a { color: var(--gold); }
.footer-copy { color: rgba(255,255,255,.5); }

@media (min-width: 769px) {
  #footer { padding: 36px 0 16px; }
  /* brand column is wider than the four link columns */
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 28px; }
}

/* --------------------------------------------------------------------------
   12. Homepage hero zone — banners (left) + loyalty (right)
   Mobile-first: single column; two-column from 1025px up.
   -------------------------------------------------------------------------- */
.hero-zone {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 12px 0;
}
.hero-left { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.hero-right { display: flex; flex-direction: column; gap: 8px; min-width: 0; }

/* keep the existing bxSlider banners, just round them to the new look */
.hero-left .slim-slider,
.hero-left .slider {
  border-radius: 10px;
  overflow: hidden;
  margin: 0;
  position: relative;
}
/* Only the single (non-bxSlider) slim banner image needs sizing — bxSlider
   handles its own slide images via `.bx-wrapper img`. Deliberately NOT a broad
   `.slider img`, which would also hit `.slide-icon` and the control arrows,
   forcing them visible and stretching them to full width. */
.hero-left .slim-slider > a img,
.hero-left .slim-slider > img { display: block; width: 100%; height: auto; }

@media (min-width: 1025px) {
  .hero-zone {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 16px;
    margin: 16px 0;
    align-items: stretch;
  }
}

/* --------------------------------------------------------------------------
   13. Loyalty banner (hero-right)
   -------------------------------------------------------------------------- */
.loyalty-banner {
  background: linear-gradient(145deg, #252627 0%, #1a1a1a 100%);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  overflow: hidden;
  font-family: 'Barlow', sans-serif;
}
.loyalty-prog { display: flex; flex-direction: column; }
.loyalty-prog .lb-head {
  background: #111;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.loyalty-prog .lb-head span {
  font-size: 12px;
  font-weight: 800;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.loyalty-prog .lb-body { padding: 12px 14px; display: flex; flex-direction: column; gap: 10px; }

.lb-prog-row { display: flex; align-items: center; gap: 8px; }
.lb-lvl-pill {
  background: var(--gold);
  color: #000;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
}
.lb-bar { height: 6px; background: rgba(255,255,255,.1); border-radius: 3px; overflow: hidden; }
.lb-bar-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--green), var(--gold));
  width: 0;
  transition: width 1s ease;
}
.lb-missing { font-size: 10px; color: rgba(255,255,255,.4); white-space: nowrap; }

.lb-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.lb-card {
  background: #1a1a2e;
  border-radius: 6px;
  border: 1.5px solid rgba(255,255,255,.08);
  padding: 8px 6px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  min-width: 0;
}
.lb-card-current { border-color: var(--gold); background: rgba(240,165,0,.08); }
.lb-cn-lvl {
  font-size: 9px;
  color: rgba(255,255,255,.35);
  text-transform: uppercase;
  letter-spacing: .3px;
}
.lb-cn-icon { font-size: 18px; line-height: 1; }
.lb-cn-icon img { width: 26px; height: 26px; object-fit: contain; display: block; }
.lb-cn-val {
  font-size: 10px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1.2;
  text-align: center;
  flex: 1;
  /* reward text can be long — clamp inside the small card */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.lb-cn-white { color: #fff; }
.lb-cn-bottom {
  font-size: 9px;
  font-weight: 800;
  padding: 2px 5px;
  border-radius: 3px;
  white-space: nowrap;
  margin-top: 1px;
}
.lb-cn-now { background: var(--gold); color: #000; }
.lb-cn-cost { color: rgba(255,255,255,.55); }

.lb-cta {
  display: block;
  text-align: center;
  background: #000;
  color: var(--gold);
  border: none;
  border-radius: 6px;
  padding: 8px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .5px;
  transition: background .2s, color .2s;
}
.lb-cta:hover { background: #111; color: var(--gold-light); }

/* --------------------------------------------------------------------------
   13B. Quick-buy widget (hero-right, above the loyalty banner)
   Slimmed-down packet order form: platform + amount -> live price -> submit.
   -------------------------------------------------------------------------- */
.quick-buy {
  background: linear-gradient(145deg, #252627 0%, #1a1a1a 100%);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  font-family: 'Barlow', sans-serif;
}
.qb-header {
  background: #111;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.qb-header h3 {
  color: var(--gold);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}
.qb-badge {
  background: var(--gold);
  color: #000;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 3px;
  margin-left: auto;
}
.qb-body { padding: 10px 12px; display: flex; flex-direction: column; gap: 10px; margin: 0; }
.qb-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: rgba(255,255,255,.5);
}

/* Platform tiles */
.platform-tiles { display: flex; gap: 6px; flex-wrap: wrap; }
.platform-tile {
  border: 2px solid rgba(255,255,255,.15);
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s;
  text-align: center;
  flex: 1;
  min-width: 60px;
  color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.04);
}
.platform-tile:hover { border-color: rgba(240,165,0,0.6); color: var(--gold); background: rgba(0,0,0,0.3); }
.platform-tile.selected {
  border-color: var(--gold);
  background: #000;
  color: var(--gold);
  box-shadow: 0 4px 12px rgba(240,165,0,0.25);
}

/* Amount presets */
.qb-amount-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; }
.amount-btn {
  border: 1.5px solid rgba(255,255,255,.15);
  border-radius: 5px;
  padding: 5px 8px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.7);
  transition: all .2s;
  text-align: center;
  font-family: 'Barlow', sans-serif;
}
.amount-btn:hover { border-color: var(--gold); color: var(--gold); }
.amount-btn.selected { border-color: var(--gold); background: #000; color: var(--gold); }

/* Manual entry */
.qb-manual-row { display: flex; align-items: center; gap: 5px; }
.qb-step {
  width: 30px; height: 30px;
  background: var(--gold);
  border: none;
  border-radius: 5px;
  color: #000;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  flex-shrink: 0;
  line-height: 1;
}
.qb-step:hover { background: var(--gold-light); }
.qb-qty-input {
  flex: 1;
  min-width: 0;
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,255,255,.12);
  border-radius: 5px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  padding: 5px 6px;
  font-family: 'Barlow Condensed', sans-serif;
  outline: none;
}
.qb-qty-input:focus { border-color: var(--gold); }

/* Summary */
.qb-price-row { display: flex; flex-direction: column; overflow: hidden; border-radius: 8px; }
.qb-pr-header {
  background: #000;
  padding: 5px 12px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  text-align: center;
}
.qb-pr-header span {
  font-size: 10px;
  font-weight: 800;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Barlow Condensed', sans-serif;
}
.qb-pr-suma {
  background: rgba(255,255,255,.07);
  padding: 6px 12px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.qb-pr-lbl {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
  letter-spacing: .5px;
}
.qb-price {
  font-size: 30px;
  font-weight: 800;
  font-family: 'Barlow Condensed', sans-serif;
  color: #fff;
  line-height: 1;
  white-space: nowrap;
}
.qb-price .qb-cur { font-size: 18px; }
.qb-pr-unit {
  background: rgba(240,165,0,.08);
  padding: 5px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.qb-pr-sublbl { font-size: 10px; color: rgba(255,255,255,.4); }
.qb-pr-unitval { font-size: 12px; font-weight: 800; color: var(--gold); white-space: nowrap; }
.qb-pr-safe {
  background: rgba(39,174,96,.07);
  padding: 5px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}
.qb-pr-safe span:first-child { font-size: 10px; color: var(--green); font-weight: 700; }
.qb-pr-min { font-size: 10px; color: rgba(255,255,255,.45); text-align: right; }

/* Footer / CTA */
.qb-footer { padding: 6px 12px 10px; display: flex; flex-direction: column; gap: 5px; }
.qb-cta {
  display: block;
  background: #000;
  color: var(--gold);
  text-align: center;
  padding: 9px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 14px;
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background .2s, transform .1s;
  width: 100%;
  border: none;
  cursor: pointer;
}
.qb-cta:hover { background: #111; transform: scale(1.01); }
.qb-cta:disabled { opacity: .5; cursor: not-allowed; transform: none; }
.qb-trust {
  text-align: center;
  font-size: 10px;
  color: rgba(255,255,255,.45);
}

/* order total under the platform minimum — flag the min line */
.qb-below-min .qb-pr-min { color: var(--red, #e74c3c); font-weight: 700; }

/* --------------------------------------------------------------------------
   13C. Trust icons + category tiles (admin-managed HTML from settings)
   Full markup lives in the settings table; these rules style the classes it
   uses. Mobile-first: 2 cols on phones -> 3 on tablets -> 6 on desktop.
   -------------------------------------------------------------------------- */
.trust-title { margin-top: 20px; }

.trust-icons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--gray);
  border: 1px solid var(--gray);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}
.trust-icon-item {
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px 8px;
  text-align: center;
  gap: 6px;
  border-radius: 10px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.trust-icon-item:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,0.15); }
.trust-icon-item .ti-icon { font-size: 22px; }
.trust-icon-item .ti-main {
  font-weight: 800;
  font-size: 13px;
  color: var(--dark);
  font-family: 'Barlow Condensed', sans-serif;
}
.trust-icon-item .ti-sub { font-size: 11px; color: var(--gray-text); line-height: 1.3; }

.category-tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.cat-tile {
  background: #fff;
  border-radius: 10px;
  border: 2px solid transparent;
  overflow: hidden;
  text-align: center;
  transition: border-color .2s, transform .2s, box-shadow .2s;
  cursor: pointer;
  display: block;
  text-decoration: none;
  color: var(--dark);
}
.cat-tile:hover,
.cat-tile:focus {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,.1);
  text-decoration: none;
}
.cat-tile-img {
  background: var(--dark);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  position: relative;
  overflow: hidden;
}
.cat-tile-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s; }
.cat-tile:hover .cat-tile-img img { transform: scale(1.05); }
.cat-tile-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(240,165,0,.1), transparent);
  pointer-events: none;
}
.cat-tile-label { padding: 8px 6px; font-weight: 700; font-size: 12px; line-height: 1.3; color: var(--dark); }

@media (min-width: 481px) {
  .trust-icons { grid-template-columns: repeat(3, 1fr); }
  .category-tiles { grid-template-columns: repeat(3, 1fr); gap: 10px; }
}
@media (min-width: 1025px) {
  .trust-icons { grid-template-columns: repeat(6, 1fr); }
  .category-tiles { grid-template-columns: repeat(6, 1fr); }
}

/* --------------------------------------------------------------------------
   13D. USPs section (admin-managed HTML from settings)
   Dark "why choose us" card; 2-up on phones -> 4-up on desktop.
   -------------------------------------------------------------------------- */
.usps-section {
  background: linear-gradient(145deg, #2a2a2b 0%, #1a1a1a 100%);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 24px;
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}
.usps-section .section-title { margin-bottom: 16px; color: #fff; border-left-color: var(--gold); }
.usps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.usp-item {
  text-align: center;
  padding: 16px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: transform .25s ease, box-shadow .25s ease, border-color .2s;
}
.usp-item:hover { border-color: var(--gold); box-shadow: 0 4px 16px rgba(240,165,0,.1); }
.usp-icon { font-size: 28px; margin-bottom: 8px; }
.usp-title {
  font-weight: 800;
  font-size: 13px;
  color: #fff;
  margin-bottom: 4px;
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.usp-desc { font-size: 12px; color: rgba(255,255,255,.55); line-height: 1.4; }

@media (min-width: 769px) {
  .usps-section { padding: 24px 28px; }
  .usps-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
}

/* --------------------------------------------------------------------------
   14. Section title + recommended-products row (.index-blade-promoted-slider)
   Horizontal scrolling product cards, aligned to the new design.
   -------------------------------------------------------------------------- */
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--dark);
  border-left: 4px solid var(--gold);
  padding-left: 12px;
  margin: 8px 0 14px;
}

.products-wrapper { position: relative; overflow-x: clip; overflow-y: visible; }
.products-row {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  overflow-y: visible;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 8px 0 4px;
  margin-top: -8px;
}
.products-row::-webkit-scrollbar { display: none; }

.product-card {
  background: #fff;
  border-radius: 12px;
  flex: 0 0 170px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: transform .25s ease, box-shadow .25s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--dark);
}
.product-card:hover,
.product-card:focus { text-decoration: none; transform: translateY(-5px); box-shadow: 0 8px 24px rgba(0,0,0,0.12), 0 0 0 2px var(--gold); }

.product-img {
  aspect-ratio: 1;
  background: var(--dark);
  overflow: hidden;
  position: relative;
  border-radius: 12px 12px 0 0;
}
.product-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.product-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: #555; font-size: 28px;
}
.product-badge {
  position: absolute;
  top: 8px; left: 8px;
  background: var(--gold);
  color: #000;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: .3px;
  z-index: 2;
  font-family: 'Barlow', sans-serif;
}

.product-info { padding: 10px; background: #fff; flex: 1; display: flex; flex-direction: column; }
.product-name {
  font-weight: 700;
  font-size: 12px;
  line-height: 1.4;
  color: var(--dark);
  margin-bottom: 4px;
  /* keep long names from blowing up the card */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-platform {
  font-size: 11px;
  color: var(--gray-text);
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--dark);
  margin-top: auto;
}
.product-cta {
  display: block;
  background: var(--dark);
  color: var(--gold);
  text-align: center;
  padding: 7px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 0 0 12px 12px;
  border-top: 1px solid rgba(255,255,255,.08);
  transition: background .2s, color .2s;
}
.product-card:hover .product-cta { background: var(--gold); color: #fff; }

.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.95);
  border: 1px solid var(--gray);
  border-radius: 50%;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 10;
  font-size: 16px;
  color: var(--dark);
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
  transition: background .2s, color .2s, border-color .2s;
}
.scroll-btn:hover { background: var(--gold); color: #fff; border-color: var(--gold); }
.scroll-btn.left { left: 0; }
.scroll-btn.right { right: 0; }

/* touch devices swipe instead — hide the arrows and give a small side gutter */
@media (max-width: 768px) {
  .products-row { gap: 8px; }
  .product-card { flex: 0 0 150px; }
  .scroll-btn { display: none; }
}

/* --------------------------------------------------------------------------
   15. Articles / blog section (.articles-section — homepage .texts)
   3-column grid on desktop, horizontal snap-scroll on mobile.
   -------------------------------------------------------------------------- */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.article-card {
  background: linear-gradient(145deg, #ffffff 0%, #f9f9f7 100%);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  transition: box-shadow .25s ease, transform .25s ease;
  text-decoration: none;
  color: var(--dark);
}
.article-card:hover,
.article-card:focus {
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  transform: translateY(-3px);
  outline: 2px solid var(--gold);
  outline-offset: -2px;
}
.article-img { aspect-ratio: 2; background: var(--dark); overflow: hidden; }
.article-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.article-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 36px;
}
.article-body { padding: 14px; display: flex; flex-direction: column; }
.article-date { font-size: 11px; color: var(--gray-text); margin-bottom: 4px; }
.article-title {
  font-weight: 800;
  font-size: 14px;
  color: var(--dark);
  line-height: 1.4;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.article-excerpt {
  font-size: 12px;
  color: var(--gray-text);
  line-height: 1.5;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.article-btn {
  align-self: flex-start;
  background: var(--dark);
  color: #fff;
  padding: 6px 14px;
  border-radius: 5px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  transition: background .2s;
}
.article-card:hover .article-btn { background: var(--gold); }

@media (max-width: 768px) {
  /* horizontal snap-scroll on phones */
  .articles-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    gap: 12px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
  }
  .articles-grid::-webkit-scrollbar { display: none; }
  .article-card { flex: 0 0 75vw; max-width: 280px; scroll-snap-align: start; }
}

/* --------------------------------------------------------------------------
   16. Section head (title + "see all" link) and hero-slider pager
   -------------------------------------------------------------------------- */
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.section-head .section-title { margin-bottom: 0; }
.section-see-all {
  background: var(--gold);
  color: #000;
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 800;
  padding: 7px 16px;
  border-radius: 5px;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: .5px;
  text-transform: uppercase;
  transition: background .2s;
}
.section-see-all:hover { background: var(--gold-dark); color: #000; text-decoration: none; }

/* the hero banner auto-rotates — hide bxSlider's pager dots + reserved gap */
.hero-left .slider .bx-wrapper { margin-bottom: 0 !important; }
.hero-left .slider .bx-pager,
.hero-left .slider .bx-controls-auto { display: none !important; }

/* --------------------------------------------------------------------------
   17. Security / trust section (copied from the design, text translated)
   -------------------------------------------------------------------------- */
.security-section {
  background: var(--dark);
  border-radius: 12px;
  overflow: hidden;
  color: #fff;
  font-family: 'Barlow', sans-serif;
}
.security-top { display: grid; grid-template-columns: 180px 1fr 220px; }
.security-shield-col {
  background: #111;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-right: 1px solid rgba(255,255,255,.08);
}
.shield-wrap { position: relative; width: 100px; height: 100px; display: flex; align-items: center; justify-content: center; }
.pulse-ring {
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  animation: secPulse 2s ease-out infinite;
  opacity: 0;
}
.pulse-ring:nth-child(2) { animation-delay: .7s; }
@keyframes secPulse {
  0%  { transform: scale(.7); opacity: .7; }
  100% { transform: scale(1.5); opacity: 0; }
}
.security-pct {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.security-pct-sub { font-size: 10px; color: rgba(255,255,255,.5); text-align: center; line-height: 1.4; }

.security-content { padding: 24px 28px; display: flex; flex-direction: column; justify-content: center; gap: 10px; }
.security-content h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  margin: 0;
}
.security-content p { font-size: 13px; color: rgba(255,255,255,.75); line-height: 1.6; margin: 0; }

.w2-list { display: flex; flex-direction: column; gap: 6px; }
.w2-item { display: flex; align-items: flex-start; gap: 8px; }
.w2-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; flex-shrink: 0; margin-top: 5px; }
.w2-txt { font-size: 12px; color: rgba(255,255,255,.7); line-height: 1.5; }
.w2-txt strong { color: #fff; }
.w2-cta-box {
  background: rgba(240,165,0,.08);
  border: 1px solid rgba(240,165,0,.2);
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 12px;
  color: rgba(255,255,255,.75);
  line-height: 1.5;
  margin-top: 2px;
}
.w2-cta-box strong { color: var(--gold); }

.security-badge-col {
  background: #111;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-left: 1px solid rgba(255,255,255,.08);
}
/* text badge in place of the baked-in Polish image, so it translates */
.security-years { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.security-years-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 64px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.security-years-lbl {
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}
.security-badge-sub {
  font-size: 10px;
  color: rgba(255,255,255,.5);
  text-align: center;
  line-height: 1.5;
  padding: 0 8px;
}

@media (max-width: 768px) {
  .security-top { grid-template-columns: 1fr; }
  .security-badge-col { display: none; }
  .security-shield-col {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.08);
    flex-direction: row;
    gap: 16px;
    padding: 16px 20px;
  }
}

/* --------------------------------------------------------------------------
   18. Reviews section (dynamic $reviews rendered as .review-card)
   -------------------------------------------------------------------------- */
.reviews-box {
  border: 1.5px solid var(--gray);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}
.reviews-top-belt { display: grid; grid-template-columns: 1fr 1fr; }
.reviews-tp-panel { background: var(--dark); padding: 22px 26px; }
.tp-logo { display: block; font-weight: 800; font-size: 20px; color: #00b67a; margin-bottom: 8px; }
.reviews-tp-row { display: flex; align-items: flex-end; gap: 16px; margin-bottom: 14px; }
.tp-score { font-family: 'Barlow Condensed', sans-serif; font-size: 52px; font-weight: 800; color: #fff; line-height: 1; }
.tp-detail .tp-stars { display: block; color: #00b67a; font-size: 16px; letter-spacing: 2px; margin-bottom: 4px; }
.tp-detail .tp-stars .tp-star-empty { color: rgba(255,255,255,.25); }
.tp-detail .tp-basis { font-size: 11px; color: #aaa; margin-bottom: 3px; }
.tp-detail .tp-tag { font-size: 11px; color: #00b67a; }
.tp-link {
  display: inline-block;
  border: 1.5px solid #00b67a;
  color: #00b67a;
  border-radius: 6px;
  padding: 7px 14px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  text-decoration: none;
  transition: background .2s, color .2s;
}
.tp-link:hover { background: #00b67a; color: #fff; text-decoration: none; }

.reviews-base-panel {
  background: var(--green);
  padding: 22px 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.reviews-base-panel .base-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,.7);
  margin-bottom: 6px;
}
.reviews-base-panel .base-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 52px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}
.reviews-base-panel .base-sub { font-size: 13px; color: rgba(255,255,255,.85); }

.reviews-cards-belt {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1.5px solid var(--gray);
}
.review-card {
  padding: 16px;
  border-right: 1.5px solid var(--gray);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.review-card:last-child { border-right: none; }
.review-positive {
  display: inline-block;
  width: fit-content;
  background: #e8f5e9;
  color: var(--green);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 4px;
  text-transform: uppercase;
}
.review-positive.review-negative { background: #fdecea; color: var(--red); }
.review-text { font-size: 12px; color: #333; font-style: italic; line-height: 1.5; flex: 1; }
.review-product { font-weight: 700; font-size: 11px; color: var(--gold); }
.review-meta { font-size: 11px; color: var(--gray-text); word-break: break-word; }
.review-date { font-size: 10px; color: #bbb; }

/* --------------------------------------------------------------------------
   19. Payment section (.payment-section — .pay-chip grid)
   -------------------------------------------------------------------------- */
.payment-section {
  background: linear-gradient(145deg, #2a2a2b 0%, #1a1a1a 100%);
  border-radius: 12px;
  padding: 20px 28px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  font-family: 'Barlow', sans-serif;
}
.payment-left h3 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 4px;
}
.payment-left h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 8px;
}
.payment-left p { font-size: 12px; color: rgba(255,255,255,.55); line-height: 1.5; }

.payment-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; }
.pay-chip {
  background: #fff;
  border: 1.5px solid #e8e8e8;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 8px;
  min-height: 92px;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.pay-chip:hover { border-color: var(--gold); box-shadow: 0 2px 8px rgba(240,165,0,.2); transform: translateY(-1px); }
.pay-chip img { width: 100%; height: 46px; object-fit: contain; display: block; }
.pay-chip .chip-name {
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: #999;
  text-align: center;
}

/* desktop: arrows unused (contents), grid wraps */
.pay-scroll-wrap { display: contents; }
.pay-arr { display: none; }

@media (max-width: 768px) {
  /* reviews stack; payment chips become a horizontal snap-scroll */
  .reviews-top-belt { grid-template-columns: 1fr; }
  .reviews-base-panel { border-top: 1.5px solid var(--gray); }
  .reviews-cards-belt { grid-template-columns: 1fr; }
  .review-card { border-right: none; border-bottom: 1.5px solid var(--gray); }
  .review-card:last-child { border-bottom: none; }

  .payment-section { display: flex; flex-direction: column; gap: 16px; padding: 16px; }
  .pay-scroll-wrap { display: flex; align-items: center; gap: 6px; width: 100%; min-width: 0; }
  .pay-arr {
    display: flex;
    flex-shrink: 0;
    width: 30px; height: 30px;
    background: #252627;
    border: 1px solid #444;
    border-radius: 50%;
    color: var(--gold);
    font-size: 18px;
    font-weight: 800;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  .payment-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    gap: 8px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
    flex: 1;
    min-width: 0;
  }
  .payment-grid::-webkit-scrollbar { display: none; }
  .pay-chip { flex: 0 0 26vw; max-width: 110px; scroll-snap-align: start; }
}

/* --------------------------------------------------------------------------
   20. Global form fields — white background site-wide.
   Element-level (0,0,1) on purpose: dark themed fields (.qb-qty-input,
   .cb-status-inner input, …) carry class selectors that outrank this and keep
   their own background. Buttons, checkboxes and radios are excluded so this
   only touches fillable fields.
   -------------------------------------------------------------------------- */
input:where(:not([type="submit"]):not([type="button"]):not([type="reset"]):not([type="image"]):not([type="checkbox"]):not([type="radio"]):not([type="range"]):not([type="color"])),
select,
textarea {
  background-color: #fff;
}

/* --------------------------------------------------------------------------
   21. Product listing rows (.product-list) — light card look.
   Loads after all.css, so these override the legacy #eaeaea border. Promoted
   rows keep their gold border via the more specific .promoted selector.
   -------------------------------------------------------------------------- */
#main .content .product-list ul li { border-color: #ddd; }
#main .content .product-list ul li .content { background: #fff; }
