/* styles.css 0ea5e9*/
:root{
  --bg:#ffffff;
  --brand: #4FA3D1;
  --brand2: #7BC6F0;
  --brand3: #1E40AF;
  --text: #2F3438;
  --muted: #7A868F;
  --line: #E6E1DA;
  --card: #F9F6F2;
  --ok: #E67E5A; 
  --instock:#16a34a;
  --warn:#f59e0b;
  --danger:#ef4444;
  --shadow: 0 10px 25px rgba(0,0,0,.08);
  --radius:16px;
  --radius2:22px;
  --container: 1220px;
  --topbar-h: 40px;
  --header-h: 63px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background:var(--bg);
}
a{ color:inherit; text-decoration:none; }
button, input{ font:inherit; }

.container{
  margin-inline:auto;width:93%;
}
.header .container,.stripMenu .container{}
/* small icon blocks for demo width:min(var(--container), calc(100% - 32px));*/
.icon{
  width:18px; height:18px;
  display:inline-block;
  border-radius:4px;
  background:linear-gradient(135deg,var(--brand),var(--brand2));
}
.icon.gray{ background:#d1d5db; }
.icon.ok{ background:linear-gradient(135deg,#22c55e,#16a34a); }
.icon.warn{ background:linear-gradient(135deg,#f59e0b,#f97316); }

.badge{
  font-size:12px;
  padding:2px 8px;
  border-radius:999px;
  background:#eef2ff;
  color:#4338ca;
}

/* TOP BAR (not sticky) */
.topbar{
  height:var(--topbar-h);
  border-bottom:1px solid var(--line);
  background:#fff;
}
.topbar .row{
  height:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  color:var(--muted);
  font-size:13px;
}
.topbar .left, .topbar .right{ display:flex; align-items:center; gap:14px; }
.topbar a{ color:var(--muted); }
.topbar a:hover{ color:#111827; }

/* STICKY HEADER (only this) */
.header{
  position:sticky;
  top:0;
  z-index:50;
  background:#fff;padding:0.25em 0.1em;
  border-bottom:1px solid var(--line);
}
.header .row{
  height:var(--header-h);
  display:grid;
  grid-template-columns: 210px 1fr 360px;
  align-items:center;
  gap:16px;
}
.logo{
  display:flex;
  align-items:center;
  gap:8px;
  font-weight:900;
  letter-spacing:-.3px;
}
.logoMark{
  width:36px;height:36px;border-radius:12px;
  background:linear-gradient(135deg,var(--brand),var(--brand2));
}

.search{
  display:flex;
  gap:10px;
  align-items:center;
}
.search .inputWrap{
  flex:1;
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border:1px solid var(--line);
  border-radius:10px; /* closer to strip-style rather than pills */
  background:#fff;
}
.search input{
  width:100%;
  border:0;
  outline:none;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:10px 14px;
  border:1px solid var(--line);
  border-radius:10px;
  background:#fff;
  cursor:pointer;
  transition:.15s transform, .15s box-shadow, .15s background;
}
.btn:hover{ box-shadow:var(--shadow); }
.btn.primary{
  border-color:transparent;
  background:linear-gradient(135deg,var(--brand),var(--brand2));
  color:white;
}
.btn.link{
  border:0;
  padding:0;
  background:transparent;
  border-radius:0;
  color:var(--muted);
}
.btn.link:hover{ box-shadow:none; transform:none; color:#111827; }

.headerActions{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:10px;
  flex-wrap:wrap;
}
.cartMini{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border:1px solid var(--line);
  border-radius:10px;
}
.cartCount{
  min-width:22px;height:22px;
  display:inline-grid;
  place-items:center;
  border-radius:999px;
  background:var(--brand);
  color:#fff;
  font-size:12px;
  padding:0 6px;
}

/* STRIP MENU (NOT sticky) */

.catBtn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border:1px solid var(--line);
  border-radius:10px;
  background:#fff;
  cursor:pointer;
}
.catPanel{
  position:relative;
}
.catDropdown{
  position:absolute;
  left:0;
  top:calc(100% + 8px);
  width:340px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  box-shadow:var(--shadow);
  padding:10px;
  display:none;
  z-index:60;
}
.catDropdown.open{ display:block; }
.catDropdown a{
  display:flex;
  justify-content:space-between;
  padding:10px 10px;
  border-radius:12px;
  color:#111827;
  text-transform: capitalize;
}
.catDropdown a:hover{ background:rgba(14,165,233,.08); }
.catDropdown .muted{ color:var(--muted); font-size:12px; }

/* Announcement bars like p */
.annBar{
  border-bottom:1px solid var(--line);
  background:linear-gradient(90deg, rgba(14,165,233,.12), rgba(6,182,212,.08));
    margin-top:1em;
}
.annBar .row{
  padding:10px 0;
  display:flex;
  gap:12px;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  font-size:14px;
}
.annBar b{ color:#0b4a6f; }
.saleBar{
  border-bottom:1px solid var(--line);
  background:rgba(239,68,68,.06);
  margin-top:1em;
}
.saleBar .row{
  padding:10px 0;
  display:flex;
  gap:12px;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
}
.saleBar .cta{
  color:#b91c1c;
  font-weight:900;
}
.saleBar a:hover{ text-decoration:underline; text-underline-offset:3px; }

/* Hero similar density */
.hero{
  padding:18px 0 12px;margin-top:0.5em;
}
.heroGrid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:16px;
}
.heroMain{
  border-radius:var(--radius2);
  padding:22px;
  color:#fff;
  min-height:300px;
  background:
    radial-gradient(1000px 300px at 30% 20%, rgba(255,255,255,.25), transparent 55%),
    linear-gradient(135deg, #0ea5e9, #06b6d4, #22c55e);
  box-shadow:var(--shadow);
  position:relative;
  overflow:hidden;
}
.heroMain h1{ margin:0 0 10px; font-size:30px; letter-spacing:-.5px; }
.heroMain p{ margin:0 0 16px; opacity:.92; max-width:60ch; }
.heroMain .ctaRow{ display:flex; gap:10px; flex-wrap:wrap; }
.heroSide{ display:grid; gap:16px; }
.promoCard{
  border:1px solid var(--line);
  border-radius:var(--radius2);
  background:#fff;
  box-shadow:var(--shadow);
  padding:18px;
  min-height:140px;
  position:relative;
  overflow:hidden;
}
.promoCard .kicker{ color:var(--muted); font-size:13px; }
.promoCard h3{ margin:8px 0 10px; font-size:18px; }
.promoCard .mini{ color:var(--muted); font-size:13px; }
.promoCard .corner{
  position:absolute; right:-20px; bottom:-30px;
  width:140px;height:140px;border-radius:999px;
  background:linear-gradient(135deg, rgba(14,165,233,.18), rgba(6,182,212,.18));
}

/* USP tiles (same) */
.usps{ padding:10px 0 18px; }
.uspsGrid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:12px;
}
.usp{
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:14px;
  background:#fff;
  display:flex;
  gap:12px;
  align-items:flex-start;
}
.usp b{ display:block; margin-bottom:2px; }
.usp small{ color:var(--muted); display:block; line-height:1.35; }

/* Category tiles row */
.index section{margin-top:.1em;}
.catTiles{
  padding:8px 0 4px;
}
.catTilesGrid{
  display:grid;
  grid-template-columns: repeat(6, 1fr);
  gap:12px;
}
.catTile{
  border:1px solid var(--line);
  border-radius:18px;
  background:#fff;
  box-shadow:var(--shadow);
  padding:14px;
  display:flex;
  gap:12px;
  align-items:center;
  min-height:70px;
}
.catTile b{ display:block; }
.catTile small{ color:var(--muted); display:block; margin-top:2px; }

/* Sections */
.section{ padding:18px 0; }
.sectionTitle{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:14px;
  margin-bottom:5px;
}
.sectionTitle h2,.left h2{ 
margin:0; font-size:20px; letter-spacing:-.3px;
text-transform: uppercase;
}
.left h2{ padding-bottom:1.1em;}
.sectionTitle .muted{ 
color:var(--muted); font-size:13px;text-transform: capitalize; }

/* Carousels */
.carousel{ position:relative; }
.carouselHeader{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:10px;
}
.carouselHeader .left{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}
.promoFlag{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background:#fff;
}
.promoFlag.sale{ border-color:rgba(239,68,68,.35); background:rgba(239,68,68,.06); color:#b91c1c; font-weight:800; }
.promoFlag.free{ border-color:rgba(14,165,233,.35); background:rgba(14,165,233,.07); color:#0b4a6f; font-weight:800; }
.promoFlag.cash{ border-color:rgba(34,197,94,.35); background:rgba(34,197,94,.07); color:#14532d; font-weight:800; }

.carouselTrack{
  display:flex;
  gap:12px;
  overflow:auto;
  scroll-snap-type:x mandatory;
  padding-bottom:6px;
}
.card{
  scroll-snap-align:start;
  flex:0 0 230px;
  border:1px solid var(--line);
  border-radius:18px;
  background:#fff;
  box-shadow:var(--shadow);
  overflow:hidden;
}
.card .img{
  height:160px;
  background:linear-gradient(135deg, rgba(14,165,233,.18), rgba(6,182,212,.18));
}
.card img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.card .body{
  padding:12px;
  display:grid;
  gap:8px;
}
.tag{
  display:inline-flex; align-items:center; gap:6px;
  font-size:12px; padding:5px 9px;
  border-radius:999px; border:1px solid var(--line);
  color:#111827;
  width:max-content;
}
.tag.sale{ border-color:rgba(239,68,68,.35); background:rgba(239,68,68,.06); color:#b91c1c; font-weight:800; }
.tag.free{ border-color:rgba(14,165,233,.35); background:rgba(14,165,233,.07); color:#0b4a6f; font-weight:800; }

.priceRow{ display:flex; align-items:baseline; gap:8px; flex-wrap:wrap; }
.price{ font-weight:900; }
.oldPrice{ color:var(--muted); text-decoration:line-through; font-size:13px; }
.unit{ color:var(--muted); font-size:12px; }

.cardActions{ display:flex; gap:10px; flex-wrap:wrap; margin-top:4px; }

/* Testimonials */
.testimonials{
  border:1px solid var(--line);
  border-radius:var(--radius2);
  background:#fff;
  box-shadow:var(--shadow);
  padding:16px;
}
.testRow{ display:flex; gap:12px; align-items:flex-start; }
.avatar{
  width:44px;height:44px;border-radius:16px;
  background:linear-gradient(135deg, rgba(14,165,233,.25), rgba(6,182,212,.25));
  flex:0 0 auto;
}
.quote{ margin:0; color:#111827; line-height:1.45; }
.quote small{ display:block; margin-top:8px; color:var(--muted); }
.sliderControls{ display:flex; gap:10px; margin-top:12px; }

/* Footer */
.footer{
  border-top:1px solid var(--line);
  margin-top:27px;padding-top:1em;
  font-style: italic;
}
.footer .grid{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap:16px;
  padding:22px 0;
}
.footer h4{ margin:0 0 10px; }
.footer a{ color:var(--muted); display:block; padding:5px 0; font-size:17px; }
.footer a:hover{ color:#111827; text-decoration:underline; text-underline-offset:3px; }
.footer .note{ color:var(--muted); font-size:13px; line-height:1.45; }
.footerBottom{
  border-top:1px solid var(--line);
  padding:12px 0;
  color:var(--muted);
  font-size:13px;
  display:flex;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
}

/* PRODUCT PAGE */
.breadcrumbs{
  color:var(--muted);
  font-size:13px;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  align-items:center;
  padding:14px 0 6px;
}
.breadcrumbs a{ color:var(--muted); }
.breadcrumbs a:hover{ color:#111827; text-decoration:underline; text-underline-offset:3px; }
.breadcrumbs .sep{ opacity:.6; }

.productGrid{
  display:grid;
  grid-template-columns: 1.08fr .92fr;
  gap:18px;
  padding:10px 0 18px;
  margin-top:0.11em
}
.panel{
  border:1px solid var(--line);
  border-radius:var(--radius2);
  background:#fff;
  box-shadow:var(--shadow);
}

/* Left: gallery + below content (no blank) display:grid;  */
.pdLeft{ gap:14px; }
.pdGallery{ padding:14px; }

.galleryTop{
  position:relative;
  border-radius:18px;
  overflow:hidden;
  border:1px solid var(--line);
  background:linear-gradient(135deg, rgba(14,165,233,.12), rgba(6,182,212,.12));
  height:420px;
  cursor:zoom-in;
}
.galleryTop img{
  width:100%; height:100%;
  object-fit:contain;
  display:block;
  transition: transform .12s ease-out;
  transform: scale(1);
  will-change: transform;
}
.galleryTop.zooming img{
  transform: scale(1.9);
}

.zoomHint{
  position:absolute;
  left:10px; bottom:10px;
  background:rgba(17,24,39,.75);
  color:#fff;
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  display:flex;
  align-items:center;
  gap:8px;
}

.galleryThumbs{
  display:flex;
  gap:10px;
  margin-top:12px;
  overflow:auto;
  padding-bottom:4px;
}
.thumb{
  width:76px; height:76px;
  border-radius:16px;
  border:1px solid var(--line);
  background:#fff;
  overflow:hidden;
  cursor:pointer;
  flex:0 0 auto;
}
.thumb img{ width:100%; height:100%; object-fit:cover; display:block; }
.thumb.active{ outline:3px solid rgba(14,165,233,.45); border-color:transparent; }

/* Left column blocks under gallery */
.leftBlock{ padding:14px;margin-top:1.61em; }
.leftBlock h3{ margin:0 0 10px; font-size:16px; }
.attrList{
  display:grid;
  gap:10px;
}
.attr{
  border:1px solid var(--line);
  border-radius:16px;
  padding:10px 12px;
  display:flex;
  justify-content:space-between;
  gap:12px;
  color:#111827;
}
.attr span{ color:var(--muted); }

/* Right: product info */
.pdInfo{ padding:16px 16px 14px; }
.pdTitle{
  margin:0 0 6px;
  font-size:22px;
  letter-spacing:-.3px;
}
.stockRow{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:3px;font-style:italic;
  flex-wrap:wrap;
  margin-top:14px;
}
.stock{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:var(--instock);
  font-weight:700; 
  text-transform: uppercase;
}
.points{
  color:#4338ca;
  background:#eef2ff;
  border-radius:999px;
  padding:6px 10px;
  font-size:12px;
}
.ratingRow{
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--muted);
  font-size:13px;
}
.stars{ display:inline-flex; gap:3px; }
.star{
  width:14px; height:14px;
  background:linear-gradient(135deg,#f59e0b,#f97316);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.hr{ height:1px; background:var(--line); margin:3px 0; border:0; }

.priceBlock{ display:grid; gap:6px; }
.priceBig{
  display:flex;
  align-items:baseline;
  gap:9px;padding:3px 7px;
  flex-wrap:wrap;
}
.priceBig .new{
  font-size:28px;
  font-weight:950;
  letter-spacing:-.6px;
}
.priceBig .old{
  color:var(--muted);
  text-decoration:line-through;
}
.kv{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  color:var(--muted);
  font-size:13px;
}
.kv b{ color:#111827; }
.kv .save{ color:#b91c1c; font-weight:900; }
.promoDates{ color:var(--muted); font-size:13px; }

.buyRow{
  display:flex;
  gap:9px;
  flex-wrap:wrap;
  margin-top:3px;
}
.qty{
  display:inline-flex;
  border:1px solid var(--line);
  border-radius:10px;
  overflow:hidden;
}
.qty button{
  width:42px;
  border:0;
  background:#fff;
  cursor:pointer;
}
.qty input{
  width:60px;
  border:0;
  text-align:center;
  outline:none;
}
.cta{ flex:1; min-width:180px; }

.freeShipCallout{
  margin-top:12px;
  border:1px dashed rgba(14,165,233,.5);
  background:rgba(14,165,233,.06);
  padding:12px;
  border-radius:18px;
  color:#0b4a6f;
  font-size:13px;
  line-height:1.35;
}

.badgeRow{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:5px;
}
.trustBadge{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border:1px solid var(--line);
  border-radius:18px;
  background:#fff;
  font-size:13px;
  color:var(--muted);
}
.trustBadge b{ color:#111827; }

.shareRow{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:12px;
  justify-content: flex-end;
}
.shareBtn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border:1px solid var(--line);
  border-radius:18px;
  background:#fff;
  cursor:pointer;
}
.shareBtn:hover{ box-shadow:var(--shadow); }

.videoPlaceholder{
  border:1px solid var(--line);
  border-radius:18px;
  background:linear-gradient(135deg, rgba(17,24,39,.06), rgba(17,24,39,.02));
  padding:14px;
  display:flex;
  gap:12px;
  align-items:center;
}
.play{
  width:44px;height:44px;border-radius:16px;
  display:grid; place-items:center;
  background:linear-gradient(135deg,var(--brand),var(--brand2));
  color:white;
  font-weight:950;
}

/* Tabs under the two columns */
.tabsWrap{
  margin-top:14px;
}
.tabs{
  border:1px solid var(--line);
  border-radius:var(--radius2);
  background:#fff;
  box-shadow:var(--shadow);
  padding:14px;
}
.tabHeaders{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  padding:0 0 10px;
}
.tabHeaders button{
  border:1px solid var(--line);
  background:#fff;
  border-radius:10px;
  padding:10px 12px;
  cursor:pointer;
}
.tabHeaders button.active{
  border-color:transparent;
  background:linear-gradient(135deg, rgba(14,165,233,.18), rgba(6,182,212,.18));
  font-weight:900;
}
.tabPanel{
  display:none;
  border-top:1px solid var(--line);
  padding-top:14px;
  color:#111827;
}
.tabPanel.active{ display:block; }
.tabPanel p{ color:#111827; line-height:1.55; }
.tabPanel .muted{ color:var(--muted); }

.table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:18px;
}
.table td{
  padding:12px;
  border-bottom:1px solid var(--line);
  vertical-align:top;
}
.table tr:last-child td{ border-bottom:0; }
.table td:first-child{ width:34%; color:var(--muted); }

/* Newsletter */
.newsletter{
  border:1px solid var(--line);
  border-radius:var(--radius2);
  background:#fff;
  box-shadow:var(--shadow);
  padding:27px;
  display:grid;
  grid-template-columns: 1fr auto;
  align-items:center;
  gap:16px;
}

.newsletter .copy{
  max-width:none;
}

.newsletter form{
  justify-self:end;
  display:flex;
  gap:10px;
  flex-wrap:nowrap;
}

.newsletter input{
  min-width:280px;
  border:1px solid var(--line);
  border-radius:11px;
  padding:10px 12px;
  outline:none;
  min-width:240px;
}
.newsletter small{ color:var(--muted); display:block; margin-top:6px; }


/* LIGHTBOX */

.lbNav{
  position:absolute;
  inset:0;
  display:flex;
  justify-content:space-between;
  align-items:center;
  pointer-events:none;
}
.lbNav button{
  pointer-events:auto;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(0,0,0,.25);
  color:#fff;
  border-radius:999px;
  width:44px;height:44px;
  cursor:pointer;
  margin:0 10px;
}

/* LIGHTBOX (fixed overflow/clipping) */
.lightbox{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.72);
  display:none;
  z-index:1000;

  /* key: allow overlay to scroll if content is taller than viewport */
  overflow:auto;

  /* better on mobile */
  padding: 16px;
}

.lightbox.open{ display:block; }

/* inner modal should never exceed viewport height */
.lbInner{
  width:min(1100px, calc(100% - 0px));
  margin:auto;                 /* centers within scrolling overlay */
  background:#0b0f19;
  border:1px solid rgba(255,255,255,.12);
  border-radius:22px;
  box-shadow: 0 30px 80px rgba(0,0,0,.45);
  overflow:hidden;

  /* key: clamp height */
  max-height: calc(100vh - 32px);

  display:flex;
  flex-direction:column;
}

/* top bar stays visible; body scrolls inside modal if needed */
.lbTop{
  flex: 0 0 auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:12px;
  color:#fff;
}

/* image area should fit within available height */
.lbMain{
  border-radius:18px;
  background:#0b0f19;
  border:1px solid rgba(255,255,255,.10);
  display:grid;
  place-items:center;
  position:relative;

  /* key: prevent it from forcing modal taller */
  min-height: 320px;
  height: 100%;
}

.lbMain img{
  width:100%;
  height:100%;
  object-fit:contain;
  display:block;
}



/* responsive: stack layout */
@media (max-width: 980px){
  .lbBody{
    grid-template-columns: 1fr;
  }
  .lbThumbs{
    flex-direction:row;
    max-height:none;
  }
  .lbThumb{
    width:140px;
    height:70px;
    flex:0 0 auto;
  }
}
/* ===== LIGHTBOX OVERFLOW HARD FIX ===== */

/* Overlay itself can scroll if absolutely necessary */
.lightbox{
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  background: rgba(0,0,0,.72);
  overflow: auto;
  padding: 12px;
}

.lightbox.open{
  display: block;
}

/* Modal must always fit inside viewport */
.lbInner{
  width: min(1100px, 100%);
  max-width: 100%;
  max-height: calc(100vh - 24px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-sizing: border-box;
}

/* Header stays fixed inside modal */
.lbTop{
  flex: 0 0 auto;
}

/* Body gets remaining space and must not grow past it */
.lbBody{
  gap:12px;
  padding:12px;
}
.lbBody{
  flex: 1 1 auto;
  min-height: 0;
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 55px; /* smaller thumbs column */
  gap: 10px;
  overflow: hidden;
  box-sizing: border-box;
}

/* Main image area never exceeds available space */
.lbMain{
  min-width: 0;
  min-height: 0;
  height: 100%;
  max-height: 100%;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* Image always fits, never overflows */
.lbMain img,
.js-lbImg{
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 120px);
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Thumbnails column constrained */
.lbThumbs{
  display:flex;
  flex-direction:column;
  gap:25px;
  padding-right:4px;
}
.lbThumbs{
  min-width: 0;
  min-height: 0;
  max-height: 100%;
  overflow: auto;
}

/* Thumbnails smaller so they can't force overflow */
.lbThumb{
  height: 56px;
  flex: 0 0 56px;
}

/* Nav buttons stay inside image box */
.lbNav{
  inset: 0;
  overflow: hidden;
}

.lbNav button{
  flex: 0 0 auto;
}

/* Medium screens: make thumbs tiny */
@media (max-width: 900px){
  .lbBody{
    grid-template-columns: minmax(0, 1fr) 84px;
  }

  .lbThumb{
    height: 48px;
    flex-basis: 48px;
  }
}

/* Small screens: remove thumbnails completely */
@media (max-width: 700px){
  .lbBody{
    grid-template-columns: minmax(0, 1fr);
  }

  .lbThumbs{
    display: none;
  }

  .lbMain img,
  .js-lbImg{
    max-height: calc(100vh - 100px);
  }
}

/* Very short screens: force even smaller image */
@media (max-height: 700px){
  .lbInner{
    max-height: calc(100vh - 12px);
  }

  .lbMain img,
  .js-lbImg{
    max-height: calc(100vh - 90px);
  }
}

/* Responsive */
@media (max-width: 1020px){
  .header .row{ grid-template-columns: 180px 1fr; grid-template-rows:auto auto; }
  .headerActions{ grid-column:1 / -1; justify-content:space-between; }
  .heroGrid{ grid-template-columns:1fr; }
  .uspsGrid{ grid-template-columns: repeat(2,1fr); }
  .catTilesGrid{ grid-template-columns: repeat(3,1fr); }
  .productGrid{ grid-template-columns:1fr; }
  .lbBody{ grid-template-columns: 1fr; }
  .lbThumbs{ flex-direction:row; max-height:none; }
  .lbThumb{ width:140px; height:70px; flex:0 0 auto; }
}
@media (max-width: 560px){
  .uspsGrid{ grid-template-columns:1fr; }
  .catTilesGrid{ grid-template-columns: repeat(2,1fr); }
  .card{ flex-basis: 78vw; }
}


/* ===========================
   RESPONSIVE + NO OVERFLOW FIXES
   Add at the very bottom of styles.css
   =========================== */

/* 1) Global overflow guard (prevents accidental horizontal scroll) */
html, body{
  width:100%;
  overflow-x:hidden;
}

/* iframe 2) Media elements should never exceed container */
img, video {
  max-width:100%;
  height:auto;
}

/* 3) Container: reduce side padding on small screens */
@media (max-width: 560px){
  .container{
    width:calc(100% - 20px);
  }
}

/* 4) Header grid collapses cleanly */
@media (max-width: 1020px){
  .header .row{
    grid-template-columns: 1fr;        /* single column */
    grid-template-rows: auto auto auto;
    gap:12px;
    height:auto;
    padding:10px 0;
  }

  .logo{
    justify-content:flex-start;
  }

  /* search row: allow shrinking */
  .search{
    width:100%;
    flex-wrap:wrap;
  }
  .search .inputWrap{
    min-width:0;
    width:100%;
  }
  .search input{
    min-width:0;   /* key: prevents overflow */
  }
  .search .btn.primary{
    width:100%;
  }

  .headerActions{
    justify-content:space-between;
    width:100%;
  }

  /* cart mini should not force overflow */
  .cartMini{
    min-width:0;
  }
}

/* 5) Strip menu: prevent long line overflow, allow horizontal scroll inside */
@media (max-width: 1020px){
  .stripMenu .row{
    gap:10px;
    flex-wrap:wrap;
  }

  .stripLeft{
    min-width:0;
    width:100%;
  }

  .stripLinks{
    width:100%;
    overflow:auto;              /* scroll inside */
    -webkit-overflow-scrolling: touch;
    white-space:nowrap;
    padding-bottom:6px;
  }

  .stripRight{
    width:100%;
    justify-content:space-between;
  }

  /* dropdown width should fit viewport */
  .catDropdown{
    width:min(92vw, 360px);
  }
}

/* 6) Hero grid collapses; buttons become full width on mobile */
@media (max-width: 980px){
  .heroGrid{
    grid-template-columns:1fr;
  }
}
@media (max-width: 560px){
  .heroMain{
    padding:16px;
    min-height:auto;
  }
  .heroMain h1{
    font-size:22px;
  }
  .heroMain .ctaRow .btn{
    width:100%;
  }
}

/* 7) USP grid / category tiles fully fluid */
@media (max-width: 980px){
  .uspsGrid{
    grid-template-columns: repeat(2, 1fr);
  }
  .catTilesGrid{
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 560px){
  .uspsGrid{
    grid-template-columns:1fr;
  }
  .catTilesGrid{
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 8) Carousels: prevent card width from exceeding viewport */
.carouselTrack{
  padding-right:6px; /* small cushion so last card doesn't clip */
}
.card{
  max-width: calc(100vw - 40px); /* never exceed viewport */
}
@media (max-width: 560px){
  .card{
    flex:0 0 82vw;     /* smoother mobile swipe */
  }
  .carouselHeader{
    flex-wrap:wrap;
  }
}

/* 9) Product page: grids collapse; gallery height becomes smaller on mobile */
@media (max-width: 1020px){
  .productGrid{
    grid-template-columns:1fr;
  }
  .galleryTop{
    height:320px;
  }
}
@media (max-width: 560px){
  .galleryTop{
    height:260px;
  }
  .buyRow .cta{
    width:100%;
  }
  .buyRow .btn{
    width:100%;
  }
}

/* 10) Tabs / tables: avoid overflow */
.table{
  table-layout:fixed;           /* prevents long strings from forcing width */
  word-break:break-word;
}
.table td{
  word-break:break-word;
}

/* 11) Newsletter: input shouldn’t force width */
.newsletter form{
  width:100%;
}
.newsletter input{
  min-width:0;
  width:100%;
}
@media (min-width: 561px){
  .newsletter input{
    width:auto;
  }
}

/* 12) Lightbox: avoid horizontal overflow on small screens */
@media (max-width: 560px){
.header{position:static;}
  .lbInner{
    width:calc(100% - 16px);
    margin:12px auto;
  }
  .lbMain{
    min-height:360px;
  }
  .lbThumb{
    width:120px;
  }
}

/* 13) Common overflow offenders: force min-width:0 in grids */
.header .row > *,
.heroGrid > *,
.productGrid > *{
  min-width:0;
}



/* =========================
   COLOR STRIP MENU (P-like)
   ========================= */

/* colorful bar background */

.stripLeft{
  display:flex;
  align-items:center;
  gap:12px;
}
.stripLinks{
  display:flex;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
}
.stripRight{
  display:flex;
  align-items:center;
  gap:10px;
  white-space:nowrap;
}
.stripMenu{
  background: linear-gradient(90deg,
    var(--brand),
    var(--brand2)
  );
  border-bottom: 1px solid rgba(255,255,255,.25);
}

.stripMenu .row{
  display:flex;
  align-items:center;
  gap:50px;
  padding:7px 1px;
  color:var(--muted);
  font-size:14px;
}
/*
  justify-content:space-between; text on strip */
.stripMenu .row{
  color: rgba(255,255,255,.92);
}

/* links color: */
.stripLinks a{
  color:rgba(255,255,255,.92);;
  font-weight:bold;
  white-space:nowrap;
  padding:8px 10px;
  border-radius:10px;
  transition: background .15s ease, transform .15s ease, color .15s ease;
}
.stripLinks a:hover{  }
/* hover effect (subtle highlight)text-decoration:underline;  */
.stripLinks a:hover{
  color:#ffffff;
  background: rgba(255,255,255,.18); 
text-underline-offset:3px;
}

/* left "Kategóriák" button */
.catBtn{
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.14);
  color:#fff;
  transition: background .15s ease, transform .15s ease, box-shadow .15s ease;
}
.catBtn:hover{
  background: rgba(255,255,255,.22);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0,0,0,.14);
}

/* right area (contact) */
.stripRight{
  color: rgba(255,255,255,.9);
}
.stripRight .btn.link{
  color:#fff;
}
.stripRight .btn.link:hover{
  color:#fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* dropdown panel should look crisp against colorful bar */
.catDropdown{
  border:1px solid rgba(17,24,39,.12);
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
}



/* =========================
   CSS-only Cart Hover Summary
   ========================= */
.cartHover{
  position:relative;
  display:inline-block;
}

.cartDropdown{
  position:absolute;
  right:0;
  top: calc(100% + 2px);
  width: 360px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  box-shadow: 0 22px 55px rgba(0,0,0,.18);
  padding:12px;
  display:none;
  z-index:200;
}
.cartDropdown::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:-14px;     /* height of the bridge */
  height:14px;
  background:transparent;
}
/* show on hover */
.cartHover:hover .cartDropdown,
.cartHover:focus-within .cartDropdown{
  display:block;
}

/* small "caret" */
.cartDropdown::before{
  content:"";
  position:absolute;
  right:18px;
  top:-8px;
  width:14px; height:14px;
  background:#fff;
  border-left:1px solid var(--line);
  border-top:1px solid var(--line);
  transform: rotate(45deg);
}

.cartDropHead{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:10px;
  padding:6px 6px 10px;
  border-bottom:1px solid var(--line);
}
.cartDropHead .muted{ color:var(--muted); font-size:12px; }

.cartItems{
  display:grid;
  gap:10px;
  padding:10px 4px;
  max-height: 260px;
  overflow:auto;
}

.cartItem{
  display:grid;
  grid-template-columns: 48px 1fr auto;
  gap:10px;
  align-items:center;
}
.thumbMini{
  width:48px; height:48px;
  border-radius:14px;
  background: linear-gradient(135deg, rgba(14,165,233,.20), rgba(6,182,212,.18));
  border:1px solid var(--line);
}
.cartItemTitle{
  font-weight:800;
  font-size:13px;
  line-height:1.25;
}
.cartItemMeta{
  color:var(--muted);
  font-size:14px;
  margin-top:4px;
}
.cartItemSum{
  font-size:13px;
  white-space:nowrap;
}

.cartTotals{
  border-top:1px solid var(--line);
  padding:10px 6px;
  display:grid;
  gap:8px;
}
.rowLine{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}
.rowLine.muted{ color:var(--muted); font-size:13px; }

.cartDropActions{
  display:flex;
  gap:10px;
  padding:0 6px 8px;
}
.cartDropActions .btn{
  flex:1;
  justify-content:center;
}

.cartDropNote{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  padding:0 6px 4px;
}

/* Make sure dropdown doesn't get cut off in smaller screens */
@media (max-width: 520px){
  .cartDropdown{ width: calc(100vw - 32px); right: -10px; }
}


.cartHover:hover .cartMini{
  box-shadow: var(--shadow);
}



/* HERO CAROUSEL (p-like: wide background image + overlay title) */
.heroCarouselWrap{
  border-bottom:1px solid var(--line);
  background:#fff;
}
.heroCarousel{
  position:relative;
  height:360px;
  border-radius:var(--radius2);
  overflow:hidden;
  box-shadow:var(--shadow);
  margin:18px 0 14px;
  border:1px solid var(--line);
}
.heroSlide{
  position:absolute;
  inset:0;
  opacity:0;
  transform: scale(1.02);
  transition: opacity .35s ease, transform .55s ease;
}
.heroSlide.active{
  opacity:1;
  transform: scale(1);
}
.heroSlide .bg{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  transform: translateZ(0);
}
.heroSlide .shade{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.25) 40%, rgba(0,0,0,0) 70%),
    radial-gradient(900px 380px at 20% 35%, rgba(0,0,0,.35), rgba(0,0,0,0) 62%);
}
.heroSlide .content{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
}
.heroSlide .inner{
  padding:27px 3.9em;
  max-width: 70ch;
  color:#fff;
}
.heroSlide h1{
  margin:0 0 10px;
  font-size:34px;
  line-height:1.08;
  letter-spacing:-.6px;
  font-weight:950;
  text-shadow: 0 10px 30px rgba(0,0,0,.45);
}
.heroSlide p{
  margin:0 0 14px;
  opacity:.92;
  line-height:1.5;
  text-shadow: 0 10px 30px rgba(0,0,0,.35);
}
.heroSlide .ctaRow{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

/* arrows */
.heroArrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:44px;height:44px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.22);
  background:rgba(0,0,0,.25);
  color:#fff;
  cursor:pointer;
  display:grid;
  place-items:center;
  z-index:5;
  transition: .15s transform, .15s background;
}
.heroArrow:hover{
  background:rgba(0,0,0,.38);
  transform:translateY(-50%) scale(1.03);
}
.heroArrow.prev{ left:12px; }
.heroArrow.next{ right:12px; }

/* dots */
.heroDots{
  position:absolute;
  left:0; right:0;
  bottom:12px;
  display:flex;
  justify-content:center;
  gap:8px;
  z-index:6;
}
.heroDot{
  width:10px;height:10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.5);
  background:rgba(255,255,255,.25);
  cursor:pointer;
}
.heroDot.active{
  background:#fff;
  border-color:#fff;
}

/* small top labels inside hero (optional, looks like promo flags) */
.heroLabelRow{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:10px;
}
.heroLabel{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.25);
  background:rgba(0,0,0,.25);
  font-size:12px;
  font-weight:800;
}

/* new */
.cartLoader{
  width:14px;
  height:14px;
  display:inline-block;
  margin-left:8px;
  vertical-align:-2px;
  border-radius:50%;
  border:2px solid rgba(17,24,39,.22);
  border-top-color: rgba(17,24,39,.85);
  animation: cartSpin .7s linear infinite;
}
@keyframes cartSpin{
  to{ transform: rotate(360deg); }
}

/* responsive */
@media (max-width: 780px){
  .heroCarousel{ height:320px; border-radius:18px; }
  .heroSlide h1{ font-size:28px; }
}
@media (max-width: 520px){
  .heroCarousel{ height:300px; }
  .heroArrow{ display:none; } /* like many mobile carousels */
  .heroSlide .inner{ padding:18px; }
}


/* Logo text */
.logoText{
  display:flex;
  color:var(--brand3);
  flex-direction:column;
  line-height:1.05;
}

.logoText .brand{
  font-weight:950;
  font-size:16px;
  display:inline-block;
  transform: scaleX(2);
  transform-origin:left;
  font-style: italic;
  text-transform:uppercase;
}
.logoText .tagline{
  margin-top:2px;
  font-size:12px;
  font-weight:700;
  letter-spacing:0.6px;
  text-transform:uppercase;
  color:var(--muted);
}
.logo{
  gap:8px;
}

/* Features */
.pdShortInfo{
  margin:3px 0 3px;
  display:grid;
  gap:9px;
  padding:3px 0.5em;
}

.pdShortDesc{
  color:#374151;
  font-size:16px;
  line-height:1.5;
  padding:3px 1px;
}

.pdFeatureList{
  list-style:none;
  margin:14px 3px;
  padding:0;
  display:grid;
  gap:8px;
}

.pdFeatureList li{
  position:relative;
  padding-left:28px;
  color:#111827;
  font-size:16px;
  line-height:1.45;
}

.pdFeatureList li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  width:22px;
  height:22px;
  display:grid;
  place-items:center;
  border-radius:999px;
  color:#15803d;
  font-size:14px;
  font-weight:900;
  background:rgba(34,197,94,.14);
}


/*social*/
ul.social-network {
	list-style: none;
	display: inline;
	margin-left:0 !important;
	padding: 0;
}
ul.social-network li {
	display: inline;
	margin: 1px 5px;
}
ul.social-network li a{
	margin-top: .5em;
}

/* footer social icons */
.social-network a.icotg {
	background-color: #0088cc;
}
.social-network a.icowh {
	background-color: #25D366;
}
.social-network a.icord {
	background-color: #F56505;
}
.social-network a.icoFacebook {
	background-color:#3B5998;
}
.social-network a.icoTwitter {
	background-color:#33ccff;
}
.social-network a.icoGoogle ,.social-network a.icopt{
	background-color:#BD3518;
}
.social-network a.icoVimeo {
	background-color:#0590B8;
}
.social-network a.icoLinkedin {
	background-color:#007bb7;
}
.social-network a.icoRss:hover i, .social-network a.icoFacebook:hover i, .social-network a.icoTwitter:hover i,
.social-network a.icoGoogle:hover i, .social-network a.icoVimeo:hover i, .social-network a.icoLinkedin:hover i {
	color:#fff;
}
a.socialIcon:hover, .socialHoverClass {
	color:#44BCDD;
}

.social-circle li a {
	display:inline-block;
	position:relative;
	margin:0 auto 0 auto;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
	border-radius:50%;
	text-align:center;
	width: 33px;
	height: 33px;
	font-size:20px;
}
.social-circle li i {
	margin:0;
	line-height:33px;
	text-align: center;
}

.social-circle li:hover i {
  transform: rotate(120deg);
}
.social-circle i {
	color: #fff;
	-webkit-transition: all 0.8s;
	-moz-transition: all 0.8s;
	-o-transition: all 0.8s;
	-ms-transition: all 0.8s;
	transition: all 0.8s;
}



/* TRUST BADGE KIT */

:root{
  --trust-text:#111827;
  --trust-muted:#6b7280;
  --trust-line:#e5e7eb;
  --trust-bg:#ffffff;
  --trust-soft:#f8fafc;
  --trust-blue:#0ea5e9;
  --trust-cyan:#06b6d4;
  --trust-green:#16a34a;
  --trust-green-soft:rgba(34,197,94,.08);
  --trust-blue-soft:rgba(14,165,233,.08);
  --trust-orange:#f59e0b;
  --trust-orange-soft:rgba(245,158,11,.10);
  --trust-purple:#7c3aed;
  --trust-purple-soft:rgba(124,58,237,.08);
  --trust-red:#ef4444;
  --trust-red-soft:rgba(239,68,68,.08);
  --trust-shadow:0 10px 24px rgba(0,0,0,.06);
  --trust-radius:16px;
}

.trustStack{
  display:grid;
  gap:11px;
  margin-top:8px;
}

.trustGrid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:10px;
}

.trustCard{
  display:flex;
  align-items:flex-start;
  gap:12px;
  padding:12px 14px;
  border:1px solid var(--trust-line);
  border-radius:var(--trust-radius);
  background:var(--trust-bg);
  box-shadow:var(--trust-shadow);
}

.trustCard--secure{ background:linear-gradient(180deg, #fff, var(--trust-blue-soft)); }
.trustCard--shipping{ background:linear-gradient(180deg, #fff, var(--trust-green-soft)); }
.trustCard--returns{ background:linear-gradient(180deg, #fff, var(--trust-orange-soft)); }
.trustCard--support{ background:linear-gradient(180deg, #fff, var(--trust-purple-soft)); }
.trustCard--cashback{ background:linear-gradient(180deg, #fff, var(--trust-red-soft)); }

.trustIcon{
  width:42px;
  height:42px;
  min-width:42px;
  border-radius:14px;
  display:grid;
  place-items:center;
  border:1px solid var(--trust-line);
  background:#fff;
}

.trustCard--secure .trustIcon{ color:var(--trust-blue); }
.trustCard--shipping .trustIcon{ color:var(--trust-green); }
.trustCard--returns .trustIcon{ color:var(--trust-orange); }
.trustCard--support .trustIcon{ color:var(--trust-purple); }
.trustCard--cashback .trustIcon{ color:var(--trust-red); }

.trustContent{
  min-width:0;
}

.trustTitle{
  margin:0;
  font-size:14px;
  line-height:1.2;
  font-weight:800;
  color:var(--trust-text);
}

.trustText{
  margin:4px 0 0;
  font-size:12px;
  line-height:1.45;
  color:var(--trust-muted);
}

.trustPills{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.trustPill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:38px;
  padding:8px 12px;
  border:1px solid var(--trust-line);
  border-radius:999px;
  background:#fff;
  color:var(--trust-text);
  font-size:13px;
  font-weight:700;
  box-shadow:var(--trust-shadow);
}

.trustPill svg{
  width:16px;
  height:16px;
  flex:0 0 auto;
}

.trustBar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:12px 14px;
  border:1px dashed rgba(14,165,233,.35);
  border-radius:16px;
  background:linear-gradient(90deg, rgba(14,165,233,.08), rgba(6,182,212,.05));
}

.trustBarText{
  margin:0;
  color:#0b4a6f;
  font-size:13px;
  line-height:1.45;
}

.trustSealRow{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.trustSeal{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border:1px solid var(--trust-line);
  border-radius:16px;
  background:#fff;
  box-shadow:var(--trust-shadow);
}

.trustSealBadge{
  width:40px;
  height:40px;
  min-width:40px;
  border-radius:999px;
  display:grid;
  place-items:center;
  color:#fff;
  font-weight:900;
  font-size:12px;
  background:linear-gradient(135deg, var(--trust-blue), var(--trust-cyan));
}

.trustSealTitle{
  margin:0;
  font-size:13px;
  font-weight:800;
  color:var(--trust-text);
}

.trustSealText{
  margin:2px 0 0;
  font-size:12px;
  color:var(--trust-muted);
}

.paymentRow{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:10px;
  padding:12px 14px;
  border:1px solid var(--trust-line);
  border-radius:16px;
  background:#fff;
  box-shadow:var(--trust-shadow);
}

.paymentLabel{
  margin-right:4px;
  font-size:13px;
  font-weight:800;
  color:var(--trust-text);
}

.payLogo{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:62px;
  height:34px;
  padding:0 12px;
  border:1px solid var(--trust-line);
  border-radius:10px;
  background:#fff;
  color:#111827;
  font-size:12px;
  font-weight:900;
  letter-spacing:.2px;
}

.payLogo--visa{ color:#1a1f71; }
.payLogo--mc{ color:#b91c1c; }
.payLogo--paypal{ color:#003087; }
.payLogo--apple{ color:#111827; }
.payLogo--klarna{ color:#111827; background:#ffd7e5; border-color:#ffc4d9; }

.trustMiniNote{
  font-size:12px;
  color:var(--trust-muted);
  line-height:1.45;
  margin:0;
}

.trustInline{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.trustInlineItem{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:12px;
  color:var(--trust-muted);
}

.trustInlineItem svg{
  width:15px;
  height:15px;
  color:var(--trust-green);
}

.trustPulse{
  position:relative;
  overflow:hidden;
}

.trustPulse::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(120deg, transparent 0%, rgba(255,255,255,.45) 50%, transparent 100%);
  transform:translateX(-120%);
  animation:trustShimmer 3.4s ease-in-out infinite;
  pointer-events:none;
}

@keyframes trustShimmer{
  0%, 70%, 100%{ transform:translateX(-120%); }
  85%{ transform:translateX(120%); }
}

@media (max-width: 720px){
  .trustGrid{
    grid-template-columns:1fr;
  }
  .trustBar{
    flex-direction:column;
    align-items:flex-start;
  }
}



/* Video */
.video-responsive {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
}
.video-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* out */
.outOfStockBox{
  border:1px solid rgba(239,68,68,.16);
  background:
    radial-gradient(1200px 180px at 0% 0%, rgba(239,68,68,.08), transparent 45%),
    linear-gradient(180deg, #fff, #fff7f7);
  border-radius:22px;
  padding:18px;
  box-shadow:var(--shadow);
}

.outOfStockTop{
  display:flex;
  align-items:flex-start;
  gap:14px;
  margin-bottom:14px;
}

.outOfStockIcon{
  width:52px;
  height:52px;
  border-radius:18px;
  display:grid;
  place-items:center;
  flex:0 0 auto;
  background:linear-gradient(135deg, #ef4444, #f97316);
  color:#fff;
  font-size:24px;
  font-weight:900;
  box-shadow:0 12px 24px rgba(239,68,68,.20);
}

.outOfStockText h3{
  margin:0 0 6px;
  font-size:19px;
  letter-spacing:-.2px;
}

.outOfStockText p{
  margin:0;
  color:var(--muted);
  line-height:1.5;
  font-size:14px;
}

.stockTag{
  display:inline-flex;
  align-items:center;
  gap:8px;
  border-radius:999px;
  padding:7px 11px;
  font-size:12px;
  font-weight:900;
  border:1px solid rgba(239,68,68,.18);
  background:rgba(239,68,68,.08);
  color:#b91c1c;
  margin-top:7px;
}

.backInStockForm{
  display:grid;
  grid-template-columns: 1fr auto;
  gap:10px;
  margin-top:6px;
}

.backInStockField input{
  width:100%;
  border:1px solid var(--line);
  background:#fff;
  border-radius:14px;
  padding:13px 14px;
  outline:none;
  transition:border-color .15s ease, box-shadow .15s ease;
}

.backInStockField input:focus{
  border-color:rgba(14,165,233,.55);
  box-shadow:0 0 0 4px rgba(14,165,233,.10);
}

.backInStockBtn{
  min-width:190px;
  border:0;
  border-radius:14px;
  padding:13px 16px;
  background:linear-gradient(135deg, #ef4444, #f97316);
  color:#fff;
  font-weight:900;
  cursor:pointer;
  box-shadow:0 12px 24px rgba(239,68,68,.18);
}

.backInStockBtn:hover{
  transform:translateY(-1px);
}

.backInStockNote{
  margin-top:10px;
  color:var(--muted);
  font-size:12px;
  line-height:1.45;
}

@media (max-width: 640px){
  .backInStockForm{
    grid-template-columns: 1fr;
  }

  .backInStockBtn{
    width:100%;
    min-width:0;
  }
}