/* ═══════════════════════════════════════
   BEASTIC — Shopify Store UI
═══════════════════════════════════════ */

/* ── Nav icons ── */
.bst-nav-icons {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.bst-nav-icon-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,0.82);
  border-radius: 50%;
  transition: color 0.2s, background 0.2s;
}
.bst-nav-icon-btn:hover { color: #fff; background: rgba(255,255,255,0.08); }
.bst-nav-icon-btn svg { display: block; flex-shrink: 0; }

.bst-cart-badge,
.bst-wl-badge {
  position: absolute;
  top: 3px; right: 3px;
  min-width: 16px; height: 16px;
  background: #cc2020;
  color: #fff;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  pointer-events: none;
  line-height: 1;
}
.bst-cart-badge.hidden,
.bst-wl-badge.hidden { display: none; }

.bst-user-icon.is-logged svg { stroke: #cc2020; }

/* ── Overlay ── */
.bst-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 3000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
  backdrop-filter: blur(2px);
}
.bst-overlay.is-visible {
  opacity: 1;
  pointer-events: all;
}

/* ── Drawer ── */
.bst-drawer {
  position: fixed;
  top: 0;
  width: min(420px, 100vw);
  height: 100dvh;
  background: #0f0f0f;
  color: #fff;
  z-index: 3100;
  display: flex;
  flex-direction: column;
  transition: transform 0.32s cubic-bezier(0.4,0,0.2,1);
}
.bst-drawer--right {
  right: 0;
  transform: translateX(100%);
}
.bst-drawer--right.is-open { transform: translateX(0); }

.bst-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.09);
  flex-shrink: 0;
}
.bst-drawer-head h3 {
  font-family: 'Gobold', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0;
}
.bst-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  padding: 4px 6px;
  transition: color 0.18s;
}
.bst-close:hover { color: #fff; }

.bst-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.15) transparent;
}
.bst-drawer-footer {
  padding: 16px 24px 24px;
  border-top: 1px solid rgba(255,255,255,0.09);
  flex-shrink: 0;
}

/* ── Cart items ── */
.bst-cart-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.bst-cart-img {
  width: 68px; height: 68px;
  object-fit: contain;
  background: #1a1a1a;
  border-radius: 8px;
  flex-shrink: 0;
}
.bst-cart-img-ph {
  width: 68px; height: 68px;
  background: #1a1a1a;
  border-radius: 8px;
  flex-shrink: 0;
}
.bst-cart-info { flex: 1; min-width: 0; }
.bst-cart-name {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  line-height: 1.4;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bst-cart-price {
  font-size: 0.82rem;
  font-weight: 600;
  color: #cc2020;
  margin-bottom: 10px;
}
.bst-cart-qty {
  display: flex;
  align-items: center;
  gap: 10px;
}
.bst-qty-btn {
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.08);
  border: none;
  color: #fff;
  cursor: pointer;
  border-radius: 50%;
  font-size: 1rem;
  transition: background 0.18s;
}
.bst-qty-btn:hover { background: rgba(255,255,255,0.16); }
.bst-cart-qty span { font-size: 0.82rem; min-width: 18px; text-align: center; }
.bst-cart-remove {
  background: none;
  border: none;
  color: rgba(255,255,255,0.3);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  align-self: flex-start;
  transition: color 0.18s;
  flex-shrink: 0;
}
.bst-cart-remove:hover { color: #cc2020; }

.bst-cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-weight: 600;
}
.bst-btn-primary {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px;
  background: #cc2020;
  color: #fff;
  font-family: 'Gobold', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.22s;
}
.bst-btn-primary:hover { background: #aa1818; color: #fff; }
.bst-btn-primary:disabled { opacity: 0.6; cursor: not-allowed; }

/* ── Wishlist items ── */
.bst-wl-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.bst-wl-actions {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-shrink: 0;
}
.bst-wl-add {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(204,32,32,0.15);
  color: #cc2020;
  border: 1px solid rgba(204,32,32,0.4);
  padding: 5px 10px;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.18s;
  white-space: nowrap;
}
.bst-wl-add:hover { background: rgba(204,32,32,0.28); }
.bst-wl-rm {
  background: none;
  border: none;
  color: rgba(255,255,255,0.3);
  font-size: 1.2rem;
  cursor: pointer;
  line-height: 1;
  text-align: center;
  transition: color 0.18s;
}
.bst-wl-rm:hover { color: #cc2020; }

/* ── Account ── */
.bst-acct-header { margin-bottom: 24px; }
.bst-acct-name {
  font-family: 'Gobold', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.bst-acct-email { font-size: 0.75rem; color: rgba(255,255,255,0.5); }
.bst-section-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin: 20px 0 10px;
}
.bst-orders { display: flex; flex-direction: column; gap: 8px; }
.bst-order {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 10px;
  align-items: center;
  font-size: 0.73rem;
  padding: 10px 12px;
  background: rgba(255,255,255,0.04);
  border-radius: 6px;
}
.bst-order-num { font-weight: 600; color: #cc2020; }
.bst-order-date { color: rgba(255,255,255,0.5); }
.bst-order-status {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.bst-order-total { font-weight: 600; }
.bst-logout-btn {
  margin-top: 28px;
  background: none;
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.6);
  font-family: 'Gobold', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 11px 20px;
  cursor: pointer;
  border-radius: 2px;
  transition: border-color 0.2s, color 0.2s;
  width: 100%;
}
.bst-logout-btn:hover { border-color: #cc2020; color: #cc2020; }

/* ── Auth modal ── */
.bst-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3200;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.bst-modal.is-open { opacity: 1; pointer-events: all; }
.bst-modal-box {
  position: relative;
  background: #111;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 36px 32px 32px;
  width: min(440px, calc(100vw - 32px));
  max-height: calc(100dvh - 40px);
  overflow-y: auto;
  box-shadow: 0 24px 80px rgba(0,0,0,0.7);
}
.bst-modal-box .bst-close {
  position: absolute;
  top: 14px; right: 14px;
}
.bst-modal-title {
  font-family: 'Gobold', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 22px;
}
.bst-modal-box form { display: flex; flex-direction: column; gap: 14px; }
.bst-modal-box label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.bst-modal-box input {
  padding: 11px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  font-size: 0.88rem;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.18s;
  font-family: inherit;
}
.bst-modal-box input:focus { border-color: rgba(204,32,32,0.6); }
.bst-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.bst-form-err {
  font-size: 0.74rem;
  color: #ff6060;
  min-height: 0;
  line-height: 1.4;
}
.bst-form-link {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  text-align: center;
  margin: 0;
}
.bst-form-link a { color: rgba(255,255,255,0.7); text-decoration: underline; cursor: pointer; }
.bst-form-link a:hover { color: #fff; }

/* ── Empty state ── */
.bst-empty {
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.38);
  padding: 40px 0;
  letter-spacing: 0.05em;
}

/* ── Toast ── */
.bst-toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #1a1a1a;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 11px 22px;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  z-index: 4000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s, transform 0.22s;
  white-space: nowrap;
  box-shadow: 0 8px 28px rgba(0,0,0,0.5);
}
.bst-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.bst-toast--success { border-color: rgba(40,180,80,0.4); color: #6ef09a; }
.bst-toast--error   { border-color: rgba(204,32,32,0.4); color: #ff7070; }

/* ── Product card wishlist button (tienda.html) ── */
.prod-card { position: relative; }
.prod-card-img-wrap { position: relative; }
.prod-wl-btn {
  position: absolute;
  top: 10px; right: 10px;
  width: 34px; height: 34px;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: rgba(255,255,255,0.7);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  z-index: 1;
}
.prod-wl-btn:hover,
.prod-wl-btn.active { background: rgba(204,32,32,0.2); color: #cc2020; border-color: #cc2020; }
.prod-wl-btn svg { flex-shrink: 0; }
.prod-wl-btn.active svg { fill: #cc2020; }

.prod-card-atc {
  display: block;
  width: 100%;
  margin-top: 12px;
  padding: 12px;
  background: #0a0a0a;
  border: 1px solid #0a0a0a;
  color: #fff;
  font-family: 'Gobold', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.2s, border-color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.prod-card-atc:hover { background: #cc2020; border-color: #cc2020; }
.prod-card-atc:disabled,
.prod-card-atc.disabled {
  opacity: 0.35;
  cursor: not-allowed;
  background: #888;
  border-color: #888;
}

/* ── Variant selector (tienda) ── */
.prod-var-select {
  display: block;
  width: 100%;
  margin-top: 10px;
  padding: 9px 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  color: inherit;
  font-family: inherit;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  border-radius: 3px;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23888'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}
.prod-var-select:focus { outline: none; border-color: rgba(204,32,32,0.5); }

/* ── Loading skeleton (tienda) ── */
.bst-loading {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.bst-skel {
  flex: 1;
  min-width: 180px;
  height: 320px;
  background: linear-gradient(90deg, #1a1a1a 25%, #222 50%, #1a1a1a 75%);
  background-size: 200% 100%;
  animation: bstSkel 1.4s infinite;
  border-radius: 8px;
}
@keyframes bstSkel {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ── Product card link overlay ── */
.prod-card {
  position: relative;
}
.prod-card-link {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
}
.prod-card-img-wrap,
.prod-card-atc,
.prod-wl-btn,
.prod-var-select,
.prod-card-price,
.prod-card-name {
  position: relative;
  z-index: 1;
}
.prod-card-name a {
  color: inherit;
  text-decoration: none;
}

/* ── Product page (producto.html) ── */
.bst-pp-section {
  background: #0d0d0d;
  padding: 60px 0 80px;
}
.bst-pp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}
.bst-pp-gallery {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: sticky;
  top: 90px;
  align-self: start;
}
.bst-pp-info {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 8px;
}
.pp-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.18s;
}
.pp-back-link:hover { color: rgba(255,255,255,0.85); }
.bst-pp-loading {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 40px 0;
}
.bst-pp-skel {
  height: 18px;
  background: linear-gradient(90deg, #1e1e1e 25%, #282828 50%, #1e1e1e 75%);
  background-size: 200% 100%;
  animation: bstSkel 1.4s infinite;
  border-radius: 4px;
}
.bst-pp-skel--lg { height: 340px; border-radius: 8px; }
.bst-pp-skel--sm { width: 55%; }

/* ── Remixicon size in nav ── */
.bst-nav-icon-btn i { font-size: 1.18rem; line-height: 1; }
.bst-user-icon.is-logged i { color: #cc2020; }

/* ── Product card hover overlay ── */
.prod-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.22s ease;
  border-radius: inherit;
}
.prod-card-img-wrap:hover .prod-card-overlay { opacity: 1; }
.prod-card-view {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Gobold', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.6);
  padding: 9px 16px;
  border-radius: 2px;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: background 0.18s;
}
.prod-card-img-wrap:hover .prod-card-view { background: rgba(204,32,32,0.25); border-color: #cc2020; }
.prod-card-img-wrap { pointer-events: none; }
.prod-wl-btn { pointer-events: auto; }
.prod-card { cursor: pointer; }
.prod-card-atc i { margin-right: 5px; font-size: 0.9em; }
.prod-wl-btn i { font-size: 0.88rem; line-height: 1; }
.prod-wl-btn.active i { color: #cc2020; }

/* ── Thank-you page steps ── */
.ty-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.ty-step {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(10,10,10,0.08);
}
.ty-step:last-child { border-bottom: none; }
.ty-step-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #cc2020;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}
.ty-step-icon--pending {
  background: rgba(10,10,10,0.07);
  color: rgba(10,10,10,0.35);
}
.ty-step-title {
  font-family: 'Gobold', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0a0a0a;
  margin-bottom: 4px;
}
.ty-step-desc {
  font-size: 0.82rem;
  color: rgba(10,10,10,0.58);
  line-height: 1.55;
}

/* ── Related products grid ── */
.bst-related-section { padding-bottom: 70px; }
.bst-related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: left;
}
@media (max-width: 900px) {
  .bst-related-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
@media (max-width: 480px) {
  .bst-related-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; padding: 0 12px; }
}
.bst-related-card {
  display: block;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  border: 1px solid rgba(0,0,0,0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.bst-related-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,0.13); }
.bst-related-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  padding: 14px;
  background: #f6f6f6;
  display: block;
}
.bst-related-name {
  font-family: 'Gobold', sans-serif;
  font-size: 0.66rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #0a0a0a;
  padding: 10px 12px 3px;
  line-height: 1.35;
}
.bst-related-price {
  font-size: 0.78rem;
  color: #cc2020;
  font-weight: 700;
  padding: 0 12px 12px;
}

/* ══════════════════════════════════════
   PRODUCT DETAIL MODAL (PDP)
══════════════════════════════════════ */
.bst-pdp {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.28s ease;
}
.bst-pdp.is-open {
  opacity: 1;
  pointer-events: all;
}
.bst-pdp-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(3px);
  cursor: pointer;
}

/* Panel */
.bst-pdp-panel {
  position: relative;
  z-index: 1;
  background: #111;
  color: #fff;
  width: 100%;
  max-width: 1060px;
  max-height: 92dvh;
  border-radius: 16px 16px 0 0;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.15) transparent;
  transform: translateY(40px);
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
  box-shadow: 0 -8px 60px rgba(0,0,0,0.6);
}
.bst-pdp.is-open .bst-pdp-panel { transform: translateY(0); }

/* Close */
.bst-pdp-close-btn {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 10;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border: none;
  border-radius: 50%;
  color: rgba(255,255,255,0.7);
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.bst-pdp-close-btn:hover { background: rgba(204,32,32,0.25); color: #fff; }

/* Grid */
.bst-pdp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 0;
}

/* ── Gallery ── */
.bst-pdp-gallery {
  background: #0d0d0d;
  padding: 32px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-radius: 16px 0 0 0;
}
.bst-pdp-main-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #181818;
  border-radius: 10px;
  overflow: hidden;
}
.bst-pdp-main-img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
  transition: opacity 0.2s;
}
.bst-pdp-main-img.is-loading { opacity: 0.2; }

.bst-pdp-arr {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 36px; height: 36px;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  color: #fff;
  font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.18s;
  z-index: 2;
}
.bst-pdp-arr:hover { background: rgba(204,32,32,0.5); border-color: #cc2020; }
.bst-pdp-arr--prev { left: 10px; }
.bst-pdp-arr--next { right: 10px; }

.bst-pdp-thumbs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.bst-pdp-thumb {
  width: 60px; height: 60px;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid transparent;
  background: #1e1e1e;
  cursor: pointer;
  transition: border-color 0.18s;
  flex-shrink: 0;
  padding: 0;
}
.bst-pdp-thumb.is-active { border-color: #cc2020; }
.bst-pdp-thumb img { width: 100%; height: 100%; object-fit: contain; display: block; }

/* ── Info panel ── */
.bst-pdp-info {
  padding: 32px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
}
.bst-pdp-tagline {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #cc2020;
  margin: 0 0 8px;
  font-weight: 600;
}
.bst-pdp-name {
  font-family: 'Gobold', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 6px;
  line-height: 1.1;
}
.bst-pdp-serving {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.08em;
  margin: 0 0 14px;
}
.bst-pdp-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 18px;
}
.bst-pdp-price {
  font-family: 'Gobold', sans-serif;
  font-size: 1.55rem;
  color: #fff;
  letter-spacing: 0.04em;
}
.bst-pdp-compare {
  font-size: 1rem;
  color: rgba(255,255,255,0.35);
  text-decoration: line-through;
}

/* ── Options ── */
.bst-pdp-options-wrap { margin-bottom: 18px; }
.bst-pdp-opt-group { margin-bottom: 14px; }
.bst-pdp-opt-label {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin: 0 0 8px;
}
.bst-pdp-opt-label strong { color: #fff; }
.bst-pdp-opt-btns { display: flex; flex-wrap: wrap; gap: 8px; }
.bst-pdp-opt-btn {
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,0.18);
  background: transparent;
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  border-radius: 3px;
  cursor: pointer;
  transition: border-color 0.18s, background 0.18s, color 0.18s;
}
.bst-pdp-opt-btn:hover { border-color: rgba(255,255,255,0.45); color: #fff; }
.bst-pdp-opt-btn.is-active { border-color: #cc2020; background: rgba(204,32,32,0.15); color: #fff; }
.bst-pdp-opt-btn.is-oos { opacity: 0.35; cursor: not-allowed; text-decoration: line-through; }

/* ── Actions row ── */
.bst-pdp-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 20px;
}
.bst-pdp-qty-wrap {
  display: flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 3px;
  overflow: hidden;
  flex-shrink: 0;
}
.bst-pdp-qty-btn {
  width: 36px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.bst-pdp-qty-btn:hover { background: rgba(255,255,255,0.08); color: #fff; }
.bst-pdp-qty-val {
  width: 38px;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 600;
  border-left: 1px solid rgba(255,255,255,0.1);
  border-right: 1px solid rgba(255,255,255,0.1);
  line-height: 44px;
}
.bst-pdp-atc {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  background: #cc2020;
  border: none;
  color: #fff;
  font-family: 'Gobold', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 3px;
  transition: background 0.22s;
}
.bst-pdp-atc:hover { background: #aa1818; }
.bst-pdp-atc:disabled,
.bst-pdp-atc.is-oos { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.4); cursor: not-allowed; }
.bst-pdp-atc i { font-size: 1rem; }

.bst-pdp-wl {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 3px;
  color: rgba(255,255,255,0.6);
  font-size: 1.15rem;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
  flex-shrink: 0;
}
.bst-pdp-wl:hover,
.bst-pdp-wl.is-active { background: rgba(204,32,32,0.18); border-color: #cc2020; color: #cc2020; }

/* ── Trust badges ── */
.bst-pdp-trust {
  display: flex;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 22px;
}
.bst-trust-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 12px 8px;
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  border-right: 1px solid rgba(255,255,255,0.09);
  text-align: center;
  transition: background 0.18s;
}
.bst-trust-item:last-child { border-right: none; }
.bst-trust-item i { font-size: 1.1rem; color: rgba(255,255,255,0.6); }

/* ── Benefits ── */
.bst-pdp-benefits-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.bst-benefit-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.76rem;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.02em;
}
.bst-benefit-row i {
  font-size: 1rem;
  color: #cc2020;
  flex-shrink: 0;
  width: 18px;
  text-align: center;
}

/* ── Tabs ── */
.bst-pdp-tabs-wrap { margin-top: 4px; }
.bst-pdp-tab-nav {
  display: flex;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 18px;
  gap: 0;
}
.bst-pdp-tab {
  flex: 1;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  color: rgba(255,255,255,0.45);
  font-family: 'Gobold', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px 8px 12px;
  cursor: pointer;
  transition: color 0.18s, border-color 0.18s;
}
.bst-pdp-tab:hover { color: rgba(255,255,255,0.8); }
.bst-pdp-tab.is-active { color: #fff; border-bottom-color: #cc2020; }

.bst-pdp-tab-panels { position: relative; }
.bst-pdp-tab-panel { display: none; }
.bst-pdp-tab-panel.is-active { display: block; }

/* Description tab */
.bst-pdp-desc { font-size: 0.8rem; line-height: 1.7; color: rgba(255,255,255,0.72); }
.bst-pdp-desc p { margin: 0 0 10px; }
.bst-pdp-desc ul, .bst-pdp-desc ol { padding-left: 18px; margin: 0 0 10px; }
.bst-pdp-desc li { margin-bottom: 4px; }
.bst-pdp-no-data { font-size: 0.76rem; color: rgba(255,255,255,0.35); text-align: center; padding: 24px 0; }

/* Nutrition tab */
.bst-nutri-wrap { background: rgba(255,255,255,0.03); border-radius: 8px; overflow: hidden; border: 1px solid rgba(255,255,255,0.09); }
.bst-nutri-head { padding: 14px 16px 12px; border-bottom: 3px solid #fff; }
.bst-nutri-title { font-family: 'Gobold', sans-serif; font-size: 0.88rem; letter-spacing: 0.1em; text-transform: uppercase; margin: 0 0 4px; }
.bst-nutri-serving { font-size: 0.65rem; color: rgba(255,255,255,0.5); letter-spacing: 0.05em; margin: 0; }
.bst-nutri-table { width: 100%; border-collapse: collapse; font-size: 0.78rem; }
.bst-nutri-table td { padding: 9px 16px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.bst-nutri-table tr:last-child td { border-bottom: none; }
.bst-nutri-table td:last-child { text-align: right; font-weight: 600; }
.bst-nutri-table tr.is-highlight { background: rgba(204,32,32,0.08); }
.bst-nutri-table tr.is-highlight td { color: #fff; font-weight: 700; }
.bst-nutri-table tr.is-highlight td:last-child { color: #cc2020; font-size: 0.9rem; }
.bst-nutri-note { font-size: 0.6rem; color: rgba(255,255,255,0.3); padding: 8px 16px 12px; margin: 0; letter-spacing: 0.04em; }

/* How to use tab */
.bst-uso-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.bst-uso-list li { display: flex; align-items: flex-start; gap: 14px; }
.bst-uso-num {
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: rgba(204,32,32,0.15);
  border: 1px solid rgba(204,32,32,0.35);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Gobold', sans-serif;
  font-size: 0.72rem;
  color: #cc2020;
  margin-top: 1px;
}
.bst-uso-list p { font-size: 0.78rem; line-height: 1.65; color: rgba(255,255,255,0.72); margin: 0; }

/* Loading skeleton inside PDP */
.bst-pdp-skel-block {
  height: 14px;
  background: linear-gradient(90deg, #1e1e1e 25%, #282828 50%, #1e1e1e 75%);
  background-size: 200% 100%;
  animation: bstSkel 1.4s infinite;
  border-radius: 4px;
  margin-bottom: 10px;
}
.bst-pdp-skel-block--sm { width: 60%; }

/* ── Responsive ── */
@media (max-width: 960px) {
  .bst-nav-icons { gap: 2px; }
  .bst-nav-icon-btn { width: 34px; height: 34px; }
  .bst-pdp-grid { grid-template-columns: 1fr; }
  .bst-pdp-gallery { border-radius: 16px 16px 0 0; padding: 24px 20px 16px; }
  .bst-pdp-main-wrap { max-width: 360px; margin: 0 auto; }
  .bst-pdp-info { padding: 20px 20px 32px; }
  .bst-pp-grid { grid-template-columns: 1fr; gap: 32px; padding: 0 20px; }
  .bst-pp-gallery { position: static; }
}
@media (max-width: 680px) {
  .bst-pdp-trust { flex-direction: column; }
  .bst-trust-item { flex-direction: row; justify-content: flex-start; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.09); }
  .bst-trust-item:last-child { border-bottom: none; }
  .bst-pdp-actions { flex-wrap: wrap; }
  .bst-pdp-atc { min-width: calc(100% - 54px); order: 2; }
  .bst-pdp-wl { order: 3; }
}
@media (max-width: 480px) {
  .bst-drawer { width: 100vw; }
  .bst-form-row { grid-template-columns: 1fr; }
  .bst-order { grid-template-columns: auto 1fr auto; }
  .bst-order-date { display: none; }
  .bst-pdp-panel { border-radius: 12px 12px 0 0; }
  .bst-pdp-name { font-size: 1.3rem; }
}
