/* ============================================================
   ASTROZON — product detail page
   depends on style.css (tokens) + shop.css (topbar / header)
   ============================================================ */

/* The breadcrumb bar and the trust strip live in shop.css — both pages use
   them, and product.css is only loaded on the product page. */


/* ============================================================
   LAYOUT
   ============================================================ */

.pdp{ background:#fff; }

.pdp__grid{
  display:grid;
  grid-template-columns:minmax(0,1.05fr) minmax(0,.95fr);
  gap:34px 40px;
  align-items:start;
  padding-block:26px 46px;
}


/* ============================================================
   GALLERY
   ============================================================ */

.gallery{
  display:grid;
  grid-template-columns:96px minmax(0,1fr);
  grid-template-rows:auto auto;
  gap:14px;
}

/* only one image — drop the thumbnail column so the stage is not
   pushed right by an empty 96px gutter */
.gallery--single{ grid-template-columns:minmax(0,1fr); }

/* no featured image yet */
.gallery__stage--empty{
  display:grid;
  place-items:center;
  border-style:dashed;
  border-width:2px;
  border-color:#DCDFE6;
  background:#F7F8FA;
}
.gallery__placeholder{
  margin:0;
  padding:0 24px;
  text-align:center;
  font-size:13px;
  color:var(--muted);
}

/*
 * A set with a dozen volumes used to stretch this column past the bottom of
 * the stage and drag the whole page down with it. The rail is an empty box the
 * grid sizes against the stage; the list scrolls inside it.
 */
.gallery__rail{
  position:relative;
  min-height:0;
}
.gallery__thumbs{
  position:absolute;
  inset:0;
  list-style:none;
  margin:0;
  padding:0 6px 0 0;
  display:flex;
  flex-direction:column;
  gap:11px;
  overflow-y:auto;
  overscroll-behavior:contain;
  scrollbar-width:thin;
  scrollbar-color:#CFD4DD transparent;
}
.gallery__thumbs::-webkit-scrollbar{ width:5px; }
.gallery__thumbs::-webkit-scrollbar-track{ background:transparent; }
.gallery__thumbs::-webkit-scrollbar-thumb{
  border-radius:999px;
  background:#CFD4DD;
}
.gallery__thumbs::-webkit-scrollbar-thumb:hover{ background:#B0B6C2; }

/* the thumbs must not shrink to fit — they scroll instead */
.gallery__thumbs li{ flex:0 0 auto; }
.gallery__thumbs button{
  display:block;
  width:100%;
  aspect-ratio:1/1;
  padding:0;
  border-radius:9px;
  overflow:hidden;
  border:2px solid var(--line);
  background:#F4F5F7;
  transition:border-color .18s ease, transform .18s ease;
}
.gallery__thumbs img{
  width:100%; height:100%;
  object-fit:cover;
}
.gallery__thumbs button:hover{ border-color:#CFD4DD; transform:translateY(-2px); }
.gallery__thumbs button.is-active{ border-color:var(--brand); }

.gallery__stage{
  position:relative;
  border:1px solid var(--line);
  border-radius:12px;
  overflow:hidden;
  background:#F7F8FA;
  aspect-ratio:1/1;
}
.gallery__stage img{
  width:100%; height:100%;
  object-fit:cover;
}
.gallery__zoom{
  position:absolute;
  right:14px; bottom:14px;
  width:38px; height:38px;
  display:grid; place-items:center;
  border-radius:50%;
  background:rgba(255,255,255,.94);
  color:var(--ink);
  box-shadow:0 4px 14px rgba(20,23,31,.2);
  transition:background .18s ease, color .18s ease, transform .18s ease;
}
.gallery__zoom svg{ width:19px; height:19px; }
.gallery__zoom:hover{ background:var(--brand); color:#fff; transform:scale(1.06); }

/* the promises sit under the gallery, spanning both of its columns */
.gallery .trust{
  grid-column:1 / -1;
  margin-top:4px;
}

@media (max-width:900px){
  .gallery .trust{ grid-template-columns:repeat(2, 1fr); }
  .gallery .trust li:nth-child(odd){ border-left:0; }
  .gallery .trust li:nth-child(n+3){ border-top:1px solid var(--line); }
}


/* ============================================================
   BUY BOX
   ============================================================ */

.buybox{ padding-top:2px; }

.tag--static{
  position:static;
  display:inline-block;
  margin-bottom:12px;
}

.buybox__title{
  margin:0;
  font-family:var(--font-display);
  font-weight:800;
  font-size:clamp(1.35rem, 2.6vw, 1.8rem);
  line-height:1.2;
  letter-spacing:-.015em;
  color:var(--ink);
}
.buybox__series{
  margin:7px 0 0;
  font-size:13px;
  color:var(--muted);
}

.buybox__rate{
  display:flex;
  align-items:center;
  gap:8px;
  margin-top:14px;
  font-size:12.5px;
  color:var(--muted);
}
.buybox__rate .stars{ margin:0; }
.buybox__rate strong{ color:var(--ink); font-weight:700; }
.sep{
  display:inline-block;
  width:1px; height:12px;
  background:#D6D9E0;
}

.buybox__price{
  display:flex;
  align-items:baseline;
  flex-wrap:wrap;
  gap:11px;
  margin-top:18px;
}
.buybox__price .now{
  font-family:var(--font-display);
  font-weight:800;
  font-size:clamp(1.4rem, 3vw, 1.85rem);
  letter-spacing:-.015em;
  color:var(--ink);
}
.buybox__price .was{
  font-size:14px;
  color:#B0B6C2;
}
.buybox__price .off{
  padding:3px 8px;
  font-size:11px;
}

.buybox__stock{
  display:flex;
  align-items:center;
  gap:11px;
  margin:12px 0 0;
  font-size:12.5px;
}
/* the pill states availability, so its colour has to state the same thing */
.instock,
.stockpill{
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-weight:600;
  color:#16A34A;
}
.instock svg,
.stockpill svg{ width:15px; height:15px; }

.stockpill--pre-order{ color:#F97316; }
.stockpill--out-of-stock{ color:var(--brand); }

/* a button that cannot do anything should not invite the click */
.cbtn:disabled,
.cbtn[disabled]{
  opacity:.55;
  cursor:not-allowed;
  filter:grayscale(1);
}
.cbtn:disabled:hover,
.cbtn[disabled]:hover{ transform:none; box-shadow:none; }

.cartbox__gone{
  margin:0;
  padding:11px 13px;
  border:1px dashed var(--line);
  border-radius:9px;
  background:#FCFCFD;
  font-size:12.5px;
  line-height:1.5;
  color:var(--muted);
  text-align:center;
}
.ships{ color:var(--ink-2); }

.buybox__desc{
  margin:18px 0 0;
  font-size:13px;
  line-height:1.72;
  color:var(--ink-2);
}

.specs{
  list-style:none;
  margin:20px 0 0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:11px;
}
.specs li{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:12.5px;
  color:var(--ink-2);
}
.specs li strong{ color:var(--ink); font-weight:700; }
.specs__ico{
  flex:0 0 auto;
  width:17px; height:17px;
  display:grid; place-items:center;
  color:var(--ink-2);
}
.specs__ico svg{ width:100%; height:100%; }


/* ---------- cart box ---------- */

.cartbox{
  margin-top:24px;
  padding:20px;
  border:1px solid var(--line);
  border-radius:12px;
  background:#fff;
}

.qty{
  display:flex;
  align-items:center;
  gap:16px;
  margin-bottom:16px;
}
.qty__label{ font-size:12.5px; color:var(--ink-2); }
.qty__ctrl{
  display:flex;
  align-items:center;
  border:1px solid var(--line);
  border-radius:7px;
  overflow:hidden;
}
.qty__ctrl button{
  width:34px; height:34px;
  display:grid; place-items:center;
  color:var(--ink-2);
  transition:background .18s ease, color .18s ease;
}
.qty__ctrl button svg{ width:15px; height:15px; }
.qty__ctrl button:hover{ background:var(--brand-tint); color:var(--brand); }
.qty__ctrl input{
  width:44px; height:34px;
  border:0;
  border-inline:1px solid var(--line);
  text-align:center;
  font:inherit;
  font-size:13px;
  font-weight:600;
  color:var(--ink);
  appearance:textfield;
  -moz-appearance:textfield;
}
.qty__ctrl input::-webkit-outer-spin-button,
.qty__ctrl input::-webkit-inner-spin-button{ -webkit-appearance:none; margin:0; }

.cartbox__row{
  display:grid;
  grid-template-columns:1.35fr 1fr;
  gap:11px;
}
.cartbox__row + .cartbox__row{ margin-top:11px; }

.cbtn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  height:46px;
  padding:0 16px;
  border-radius:7px;
  font-size:12.5px;
  font-weight:700;
  letter-spacing:.06em;
  text-transform:uppercase;
  transition:background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}
.cbtn svg{ width:17px; height:17px; flex:0 0 auto; }

.cbtn--cart{
  background:var(--brand);
  color:#fff;
  box-shadow:0 10px 22px -12px rgba(224,30,38,.85);
}
.cbtn--cart:hover{ background:var(--brand-dark); transform:translateY(-1px); }
.cbtn--cart.is-added{ background:#16A34A; box-shadow:none; }

.cbtn--wish{
  background:#F4F5F7;
  color:var(--ink-2);
  border:1px solid var(--line);
}
.cbtn--wish:hover{ background:#ECEEF2; color:var(--ink); }
.cbtn--wish.is-on{
  background:var(--brand-tint);
  border-color:var(--brand);
  color:var(--brand);
}
.cbtn--wish.is-on svg path{ fill:currentColor; }

.cbtn--buy{
  background:#fff;
  color:var(--brand);
  border:1.5px solid var(--brand);
  text-transform:none;
  letter-spacing:.01em;
  font-size:13px;
}
.cbtn--buy:hover{ background:var(--brand); color:#fff; }

.cbtn--paypal{
  background:#FFC439;
  color:#1B1B1B;
  text-transform:none;
  letter-spacing:.01em;
  font-size:13px;
  font-weight:600;
}
.cbtn--paypal:hover{ background:#F0B72F; transform:translateY(-1px); }
.ppmark{
  font-family:var(--font-display);
  font-weight:800;
  font-style:italic;
  font-size:13px;
  color:#003087;
}
.ppmark b{ color:#009CDE; font-weight:800; }

.safe{
  margin:16px 0 10px;
  text-align:center;
  font-size:11.5px;
  color:var(--muted);
}

/* .pays--wide and .pay--lock live in style.css — the cart summary uses them
   too, and product.css only loads on the product page. */


/* ============================================================
   TABS
   ============================================================ */

.tabsec{ grid-column:1; }

.tabs{
  display:flex;
  gap:26px;
  border-bottom:1px solid var(--line);
  overflow-x:auto;
  scrollbar-width:none;
}
.tabs::-webkit-scrollbar{ display:none; }

.tab{
  position:relative;
  padding:12px 0;
  font-size:12px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--muted);
  white-space:nowrap;
  transition:color .18s ease;
}
.tab::after{
  content:'';
  position:absolute;
  left:0; bottom:-1px;
  width:100%; height:2px;
  background:var(--brand);
  transform:scaleX(0);
  transition:transform .25s ease;
}
.tab:hover{ color:var(--ink); }
.tab.is-active{ color:var(--ink); }
.tab.is-active::after{ transform:scaleX(1); }

.tabpanel{ padding-top:22px; }
.tabpanel h2{
  margin:0 0 14px;
  font-size:14.5px;
  font-weight:700;
  color:var(--ink);
}
.tabpanel p{
  margin:0 0 13px;
  font-size:13px;
  line-height:1.75;
  color:var(--ink-2);
}
.tabpanel p:last-child{ margin-bottom:0; }
.tabpanel strong{ color:var(--ink); font-weight:600; }

/* details table */
.dtable{
  width:100%;
  border-collapse:collapse;
  font-size:12.5px;
}
.dtable th,
.dtable td{
  padding:11px 4px;
  text-align:left;
  border-bottom:1px solid var(--line);
}
.dtable th{
  width:38%;
  font-weight:600;
  color:var(--muted);
}
.dtable td{ color:var(--ink); }

/* reviews */
.revsum{
  display:grid;
  grid-template-columns:auto minmax(0,1fr);
  gap:26px;
  align-items:center;
  padding:18px 20px;
  margin-bottom:22px;
  border:1px solid var(--line);
  border-radius:12px;
}
.revsum__score{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:5px;
}
.revsum__score strong{
  font-family:var(--font-display);
  font-weight:800;
  font-size:2rem;
  line-height:1;
  color:var(--ink);
}
.revsum__score small{ font-size:11px; color:var(--muted); }

.revbars{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:7px; }
.revbars li{
  display:grid;
  grid-template-columns:26px minmax(0,1fr) 30px;
  align-items:center;
  gap:10px;
  font-size:11px;
  color:var(--muted);
}
.revbars i{
  display:block;
  height:6px;
  border-radius:999px;
  background:#E9EBF0;
  overflow:hidden;
}
.revbars b{
  display:block;
  width:var(--w);
  height:100%;
  border-radius:999px;
  background:#FFB020;
}
.revbars small{ text-align:right; }

.revlist{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:16px; }
.revlist li{
  padding:15px 17px;
  border:1px solid var(--line);
  border-radius:11px;
}
.revlist .stars{ margin:0 0 9px; }
.revlist p{
  margin:0;
  font-size:12.5px;
  line-height:1.65;
  color:var(--ink-2);
}
.revlist small{
  display:block;
  margin-top:10px;
  font-size:11.5px;
  font-weight:600;
  color:var(--ink);
}


/* ============================================================
   SPEC CARDS
   ============================================================ */

.speccards{
  grid-column:2;
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:14px;
  align-content:start;
}
.sc{
  padding:14px 15px 15px;
  border:1px solid var(--line);
  border-radius:11px;
  background:#fff;
  transition:border-color .18s ease, box-shadow .18s ease;
}
.sc:hover{
  border-color:#DCDFE6;
  box-shadow:0 12px 24px -18px rgba(20,23,31,.4);
}
.sc h3{
  margin:0 0 8px;
  font-size:9.5px;
  font-weight:700;
  letter-spacing:.13em;
  text-transform:uppercase;
  color:var(--muted);
}
.sc p{
  margin:0;
  display:flex;
  align-items:center;
  gap:7px;
  font-size:12.5px;
  font-weight:600;
  color:var(--ink);
}
.sc__logo{
  display:inline-block;
  padding:2px 4px;
  border-radius:2px;
  background:var(--ink);
  color:#fff;
  font-family:var(--font-display);
  font-weight:800;
  font-size:5.5px;
  letter-spacing:.02em;
  line-height:1.4;
}


/* ============================================================
   LIGHTBOX
   ============================================================ */

.lightbox{
  position:fixed;
  inset:0;
  z-index:300;
  display:grid;
  place-items:center;
  padding:5vh 5vw;
  background:rgba(12,14,20,.9);
  backdrop-filter:blur(4px);
}
.lightbox[hidden]{ display:none; }
.lightbox img{
  max-width:100%;
  max-height:90vh;
  width:auto;
  border-radius:10px;
  box-shadow:0 30px 70px -30px rgba(0,0,0,.9);
}
.lightbox__close{
  position:absolute;
  top:22px; right:24px;
  width:40px; height:40px;
  display:grid; place-items:center;
  border-radius:50%;
  background:rgba(255,255,255,.12);
  color:#fff;
  transition:background .18s ease;
}
.lightbox__close svg{ width:20px; height:20px; }
.lightbox__close:hover{ background:rgba(255,255,255,.24); }


/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width:1080px){
  .pdp__grid{ gap:30px 28px; }
  .gallery{ grid-template-columns:80px minmax(0,1fr); }
  .speccards{ grid-template-columns:repeat(2, 1fr); }
}

@media (max-width:900px){
  .pdp__grid{ grid-template-columns:1fr; gap:28px; }
  .tabsec,
  .speccards{ grid-column:1; }
  .speccards{ grid-template-columns:repeat(3, 1fr); }
}

@media (max-width:640px){
  .gallery{
    grid-template-columns:1fr;
    grid-template-rows:auto auto auto;
  }
  .gallery__stage{ order:1; }

  /* the rail lies down under the stage and scrolls sideways */
  .gallery__rail{
    order:2;
    height:68px;
  }
  .gallery__thumbs{
    flex-direction:row;
    padding:0;
    overflow-x:auto;
    overflow-y:hidden;
    scrollbar-width:none;
  }
  .gallery__thumbs::-webkit-scrollbar{ display:none; }
  .gallery__thumbs li{ flex:0 0 68px; }
  .gallery .trust{ order:3; }

  .pdp__grid{ padding-block:18px 28px; gap:22px; }

  .cartbox{ padding:16px; }
  .cartbox__row{ grid-template-columns:1fr; }
  .cbtn{ height:46px; }

  /* the quantity row reads better stacked than squeezed */
  .qty{ flex-direction:column; align-items:stretch; gap:8px; }
  .qty__ctrl{ align-self:flex-start; }

  .speccards{ grid-template-columns:repeat(2, 1fr); gap:11px; }

  .revsum{ grid-template-columns:1fr; gap:18px; }
  .tabs{ gap:18px; }
  .tab{ font-size:11px; letter-spacing:.05em; }

  /* four promises in two columns need less padding to stay readable */
  .gallery .trust li{ padding:12px 11px; gap:10px; }
  .gallery .trust__ico{ width:28px; height:28px; }
  .gallery .trust__ico svg{ width:16px; height:16px; }
  .gallery .trust h3{ font-size:11.5px; }
  .gallery .trust p{ font-size:10.5px; }

  .bundle{ padding:18px 16px 20px; }
  .bundle__title{ font-size:.98rem; margin-bottom:14px; }
  .bundle__total strong{ font-size:1.2rem; }

  .eta{ padding:12px 13px; }
}


/* ============================================================
   DELIVERY ESTIMATE
   ============================================================ */

.eta{
  display:flex;
  align-items:flex-start;
  gap:11px;
  margin-top:18px;
  padding:13px 15px;
  border:1px solid var(--line);
  border-radius:11px;
  background:#FCFCFD;
}
.eta__ico{
  flex:0 0 auto;
  display:grid; place-items:center;
  width:30px; height:30px;
  border-radius:8px;
  background:var(--brand-tint);
  color:var(--brand);
}
.eta__ico svg{ width:17px; height:17px; }
.eta__main{
  margin:0;
  font-size:12.5px;
  color:var(--ink-2);
}
.eta__main strong{
  margin-left:5px;
  font-weight:800;
  color:var(--ink);
}
.eta__sub{
  margin:3px 0 0;
  font-size:11.5px;
  color:var(--muted);
}
.eta__cut{ color:#16A34A; font-weight:600; }


/* ============================================================
   BUNDLE
   ============================================================ */

.bundle{
  grid-column:1 / -1;
  margin-top:6px;
  padding:22px 24px 24px;
  border:1px solid var(--line);
  border-radius:14px;
  background:#fff;
}
.bundle__title{
  margin:0 0 18px;
  font-family:var(--font-display);
  font-weight:800;
  font-size:1.05rem;
  letter-spacing:-.01em;
  color:var(--ink);
}

.bundle__row{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:14px;
}
.bundle__plus{
  flex:0 0 auto;
  font-family:var(--font-display);
  font-size:1.3rem;
  font-weight:800;
  color:var(--muted);
}

.bitem{
  flex:0 1 210px;
  display:flex;
  align-items:center;
  gap:11px;
  padding:10px;
  border:1.5px solid var(--line);
  border-radius:11px;
  cursor:pointer;
  transition:border-color .18s ease, background .18s ease;
}
.bitem:hover{ border-color:#CFD4DD; }
.bitem:has(.bitem__pick:checked){
  border-color:var(--brand);
  background:var(--brand-tint);
}

.bitem__pick{
  flex:0 0 auto;
  appearance:none;
  -webkit-appearance:none;
  width:17px; height:17px;
  border:1.6px solid #CFD4DD;
  border-radius:4px;
  background:#fff;
  cursor:pointer;
  transition:background .18s ease, border-color .18s ease;
}
.bitem__pick:checked{
  background:var(--brand) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='m3.5 8.4 3 3 6-6.6' stroke='white' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/13px no-repeat;
  border-color:var(--brand);
}

.bitem__art{
  flex:0 0 auto;
  width:52px; height:52px;
  border-radius:8px;
  overflow:hidden;
  border:1px solid var(--line);
  background:#F4F5F7;
}
.bitem__art img{ width:100%; height:100%; object-fit:cover; }

.bitem__info{ min-width:0; }
.bitem__info b{
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
  font-size:11.5px;
  font-weight:600;
  line-height:1.35;
  color:var(--ink);
}
.bitem__price{
  display:block;
  margin-top:3px;
  font-size:12px;
  font-weight:800;
  color:var(--ink);
}
.bitem__info small,
.bitem__info a{
  display:block;
  margin-top:2px;
  font-size:10.5px;
  color:var(--muted);
}
.bitem__info a{ color:var(--brand); font-weight:600; }
.bitem__info a:hover{ text-decoration:underline; }

.bundle__buy{
  flex:1 1 190px;
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:16px;
  flex-wrap:wrap;
}
.bundle__total{ margin:0; text-align:right; }
.bundle__total small{
  display:block;
  font-size:10.5px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--muted);
}
.bundle__total strong{
  font-family:var(--font-display);
  font-size:1.35rem;
  font-weight:800;
  letter-spacing:-.015em;
  color:var(--brand);
}
.bundle__btn{ height:46px; padding:0 22px; }
.bundle__btn:disabled{ opacity:.5; cursor:not-allowed; }
.bundle__btn.is-busy{ opacity:.7; pointer-events:none; }

@media (max-width:900px){
  .bundle__row{ gap:10px; }
  .bitem{ flex:1 1 100%; }
  .bundle__plus{ display:none; }
  .bundle__buy{ justify-content:space-between; width:100%; }
}


/* ============================================================
   STICKY BUY BAR  (small screens only)
   ============================================================ */

.stickybuy{
  position:fixed;
  left:0; right:0; bottom:0;
  z-index:90;
  display:none;
  align-items:center;
  gap:12px;
  padding:10px 14px calc(10px + env(safe-area-inset-bottom));
  background:#fff;
  border-top:1px solid var(--line);
  box-shadow:0 -8px 24px -18px rgba(20,23,31,.5);
  transform:translateY(100%);
  transition:transform .22s ease;
}
.stickybuy[hidden]{ display:none; }
.stickybuy.is-on{ transform:none; }

.stickybuy__info{
  flex:1 1 auto;
  display:flex;
  align-items:center;
  gap:10px;
  min-width:0;
}
.stickybuy__art{
  flex:0 0 auto;
  width:40px; height:40px;
  border-radius:7px;
  overflow:hidden;
  border:1px solid var(--line);
  background:#F4F5F7;
}
.stickybuy__art img{ width:100%; height:100%; object-fit:cover; }
.stickybuy__info strong{
  display:block;
  font-size:11.5px;
  font-weight:600;
  line-height:1.3;
  color:var(--ink);
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.stickybuy__price{
  display:block;
  margin-top:2px;
  font-size:13px;
  font-weight:800;
  color:var(--ink);
}
.stickybuy__price s{
  margin-left:5px;
  font-size:11px;
  font-weight:500;
  color:#B0B6C2;
}

.stickybuy__btn{
  flex:0 0 auto;
  height:44px;
  padding:0 22px;
}

@media (max-width:900px){
  .stickybuy{ display:flex; }
  /* the bar covers the foot of the page, so give the content room to clear it */
  body.is-product{ padding-bottom:72px; }
}

/* ---------- payment plugin buttons ----------
   The buy box already has Add to Cart and Buy Now; a gateway's own
   "Buy with PayPal" button dropped in beside them competes with both and
   skips the cart. Switch it off in the gateway's settings too — this only
   catches a cached page or an update that turns it back on. */
.single-product .ppc-button-wrapper,
.single-product .paypal-buttons,
.single-product .paypal-button-container,
.single-product [id^="ppc-button"],
.single-product .wc-stripe-product-checkout-container,
.single-product .wcpay-payment-request-wrapper{
  display:none !important;
}
