/* ============================================================
   SmoothSpine Vitrine — vitrine.css
   Cart drawer replicated from smoothspine.com (Maison Cart pattern).
   Palette: primary #102a43 · CTA orange #f07e3b · progress #065bdc
   ============================================================ */

:root {
  --vt-primary: #102a43;
  --vt-primary-dark: #0a1e30;
  --vt-cta: #f07e3b;
  --vt-cta-hover: #e56f2a;
  --vt-progress: #065bdc;
  --vt-border: #e5e7eb;
  --vt-muted: #6b7280;
  --vt-bg: #ffffff;
  --vt-bg-soft: #f7f8fa;
  --vt-success: #10b981;
}

/* ---------- Strip all Shopify / app popups ---------- */
cart-drawer,
search-drawer,
klaviyo-form, kl-form, klaviyo-onsite,
[class*="klaviyo-form"], [id*="klaviyo-form"],
dialog:not(#vt-drawer *),
[id*="shopify-section"][id*="cart-drawer"],
[id*="shopify-section"][id*="search-drawer"],
[id*="shopify-section"][id*="popup"],
[id*="shopify-section"][id*="newsletter-modal"],
[id*="shopify-section"][id*="klaviyo"],
[id*="shopify-section"][id*="announcement"],
[class*="announcement-bar-wrapper"],
[class*="announcement-bar"]:not([class*="hero"]),
.newsletter-popup, .discount-popup, .exit-popup, .welcome-popup,
.age-verification, .spin-wheel, .wheelio, .wisepops-widget,
[class*="Wisepops"], [id*="wisepops"],
[class*="privy-"], [id*="privy-"], [id*="justuno"],
[class*="omnisend"], [class*="slidecart"], #slidecart, [class*="smsbump"],
[class*="sticky-offer"], [class*="floating-offer"],
[class*="promo-bar"]:not(header *),
.jdgm-modal, .jdgm-write-rev-open-form, .loox-popup, [class*="loox-popup"],
[id*="gorgias-chat"], [id*="intercom-container"], [id*="tidio-chat"],
[id*="livechat"], [class*="crisp-client"] { display: none !important; visibility: hidden !important; }

#vt-drawer { display: block !important; visibility: visible !important; }
body.vt-drawer-open { overflow: hidden; }

/* ---------- CART DRAWER ---------- */
.vt-drawer {
  position: fixed;
  inset: 0;
  z-index: 999999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.28s ease;
}
.vt-drawer.is-open { pointer-events: auto; opacity: 1; }

.vt-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 42, 67, 0.45);
}

.vt-drawer__panel {
  position: absolute;
  top: 0; right: 0;
  height: 100vh;
  width: min(460px, 100vw);
  background: var(--vt-bg);
  box-shadow: -12px 0 40px rgba(16, 42, 67, 0.18);
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--vt-primary);
  display: flex;
  flex-direction: column;
}
.vt-drawer.is-open .vt-drawer__panel { transform: translateX(0); }

.vt-drawer__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

/* ---------- Header ---------- */
.vt-cart-header {
  padding: 20px 24px 14px;
  background: var(--vt-bg);
}
.vt-cart-header__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.vt-cart-header__left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.vt-cart-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: 26px;
  color: var(--vt-primary);
  margin: 0;
  letter-spacing: -0.02em;
}
.vt-cart-dot {
  color: var(--vt-muted);
  font-size: 22px;
  line-height: 1;
  font-weight: 600;
}
.vt-cart-count-badge {
  background: var(--vt-progress);
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: 15px;
  padding: 3px 12px;
  border-radius: 5px;
  min-width: 24px;
  text-align: center;
  line-height: 1.4;
}
.vt-cart-close {
  background: transparent;
  border: 0;
  padding: 6px;
  cursor: pointer;
  color: var(--vt-primary);
  border-radius: 6px;
  transition: background 0.15s;
}
.vt-cart-close:hover { background: var(--vt-bg-soft); }

/* ---------- Shipping bar ---------- */
.vt-cart-shipping-bar {
  padding: 14px 24px;
  background: var(--vt-bg-soft);
  border-bottom: 1px solid var(--vt-border);
}
.vt-cart-shipping-bar__text {
  margin: 0 0 8px;
  font-size: 13px;
  color: var(--vt-primary);
  text-align: center;
  line-height: 1.4;
}
.vt-cart-shipping-bar__text strong { font-weight: 700; }
.vt-cart-shipping-bar__track {
  height: 6px;
  background: #e0e6ed;
  border-radius: 3px;
  overflow: hidden;
}
.vt-cart-shipping-bar__fill {
  height: 100%;
  background: var(--vt-progress);
  border-radius: 3px;
  transition: width 0.4s ease;
}

/* ---------- Items area ---------- */
.vt-cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 4px 0;
}
.vt-cart-items__lines { padding: 8px 24px 0; }

.vt-cart-empty {
  text-align: center;
  color: var(--vt-muted);
  padding: 60px 20px;
  font-size: 15px;
  line-height: 1.6;
}
.vt-cart-empty a {
  color: var(--vt-primary);
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
  margin-top: 8px;
}

.vt-line {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--vt-border);
}
.vt-line:last-child { border-bottom: 0; }

.vt-line__img {
  width: 88px;
  height: 88px;
  border-radius: 8px;
  background: var(--vt-bg-soft);
  overflow: hidden;
  flex-shrink: 0;
}
.vt-line__img img { width: 100%; height: 100%; object-fit: cover; }

.vt-line__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.vt-line__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 12px;
}
.vt-line__text { flex: 1; min-width: 0; }
.vt-line__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.35;
  color: var(--vt-primary);
  text-decoration: none;
  display: block;
  margin-bottom: 4px;
}
.vt-line__title:hover { text-decoration: underline; }
.vt-line__desc {
  font-size: 12px;
  color: var(--vt-muted);
  margin: 0;
}

.vt-line__delete {
  background: transparent;
  border: 0;
  padding: 4px;
  color: var(--vt-muted);
  cursor: pointer;
  border-radius: 4px;
  flex-shrink: 0;
}
.vt-line__delete:hover { color: #dc2626; background: #fee2e2; }

.vt-line__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.vt-line__qty {
  display: flex;
  align-items: center;
  border: 1px solid var(--vt-border);
  border-radius: 6px;
  overflow: hidden;
  background: var(--vt-bg);
}
.vt-line__qty-btn {
  width: 30px;
  height: 30px;
  background: var(--vt-bg);
  border: 0;
  color: var(--vt-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  font-size: 16px;
}
.vt-line__qty-btn:hover { background: var(--vt-bg-soft); }
.vt-line__qty-input {
  width: 34px;
  height: 30px;
  border: 0;
  border-left: 1px solid var(--vt-border);
  border-right: 1px solid var(--vt-border);
  text-align: center;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  color: var(--vt-primary);
  background: var(--vt-bg);
  outline: none;
}
.vt-line__qty-input::-webkit-outer-spin-button,
.vt-line__qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.vt-line__prices { display: flex; align-items: baseline; gap: 8px; }
.vt-line__compare {
  color: var(--vt-muted);
  font-size: 13px;
  text-decoration: line-through;
}
.vt-line__price {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--vt-primary);
}

/* ---------- Free gifts ---------- */
.vt-cart-gifts { padding: 16px 24px; }
.vt-cart-gifts__divider {
  border-top: 2px dashed var(--vt-border);
  margin-bottom: 14px;
}
.vt-cart-gifts__label {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--vt-cta);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.vt-cart-gift-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: linear-gradient(90deg, rgba(240, 126, 59, 0.08), rgba(240, 126, 59, 0.02));
  border: 1.5px dashed var(--vt-cta);
  border-radius: 10px;
}
.vt-cart-gift-row__left { display: flex; align-items: center; gap: 10px; flex: 1; min-width: 0; }
.vt-cart-gift-badge { font-size: 20px; flex-shrink: 0; }
.vt-cart-gift-row__img {
  width: 44px; height: 44px;
  border-radius: 6px;
  overflow: hidden;
  background: var(--vt-bg);
  flex-shrink: 0;
}
.vt-cart-gift-row__img img { width: 100%; height: 100%; object-fit: cover; }
.vt-cart-gift-row__name {
  font-size: 13px;
  font-weight: 600;
  color: var(--vt-primary);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.vt-cart-gift-row__prices { display: flex; align-items: baseline; gap: 8px; flex-shrink: 0; }
.vt-cart-gift-row__compare {
  color: var(--vt-muted);
  font-size: 12px;
  text-decoration: line-through;
}
.vt-cart-gift-row__price {
  font-weight: 800;
  color: var(--vt-cta);
  font-size: 13px;
  letter-spacing: 0.05em;
}

/* ---------- Recommendations (order bumps — horizontal cards) ---------- */
.vt-cart-recs {
  padding: 18px 20px 12px;
  background: #f2ede4; /* cream/beige like reference */
  border-top: 1px solid var(--vt-border);
  border-bottom: 1px solid var(--vt-border);
}
.vt-cart-recs__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.vt-cart-recs__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--vt-primary);
  letter-spacing: -0.01em;
}
.vt-cart-recs__nav { display: flex; gap: 6px; }
.vt-cart-recs__arrow {
  width: 32px; height: 32px;
  border: 0;
  border-radius: 6px;
  background: #e5dfd2;
  color: var(--vt-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
  opacity: 0.5;
}
.vt-cart-recs__arrow--active {
  background: var(--vt-primary);
  color: #fff;
  opacity: 1;
}
.vt-cart-recs__arrow:hover:not(:disabled) {
  background: var(--vt-primary);
  color: #fff;
  opacity: 1;
}

.vt-cart-recs__viewport { overflow: hidden; }
.vt-cart-recs__track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 8px;
  scrollbar-width: none;
}
.vt-cart-recs__track::-webkit-scrollbar { display: none; }

.vt-rec {
  flex: 0 0 100%;
  scroll-snap-align: start;
  background: var(--vt-bg);
  border-radius: 10px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.vt-rec__img {
  flex: 0 0 60px;
  width: 60px;
  height: 60px;
  background: var(--vt-bg-soft);
  border-radius: 8px;
  overflow: hidden;
  display: block;
}
.vt-rec__img img { width: 100%; height: 100%; object-fit: cover; }
.vt-rec__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.vt-rec__name {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--vt-primary);
  line-height: 1.25;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.vt-rec__price {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--vt-primary);
}
.vt-rec__add {
  flex-shrink: 0;
  background: var(--vt-primary);
  color: #fff;
  border: 0;
  padding: 10px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  transition: background 0.15s;
  white-space: nowrap;
}
.vt-rec__add:hover { background: var(--vt-primary-dark); }

.vt-cart-recs__dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
}
.vt-cart-recs__dot {
  width: 24px;
  height: 4px;
  border-radius: 2px;
  background: #d8d0bf;
  transition: background 0.2s;
}
.vt-cart-recs__dot.is-active { background: var(--vt-primary); }

/* ---------- Premium Shipping Insurance ---------- */
.vt-cart-insurance {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  margin-bottom: 14px;
  border-radius: 10px;
  background: var(--vt-bg-soft);
  border: 1px solid var(--vt-border);
}
.vt-cart-insurance__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, #065bdc, #3b7bff);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vt-cart-insurance__content { flex: 1; min-width: 0; }
.vt-cart-insurance__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 4px;
}
.vt-cart-insurance__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--vt-primary);
}
.vt-cart-insurance__price {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: var(--vt-primary);
}
.vt-cart-insurance__desc {
  font-size: 12px;
  color: var(--vt-muted);
  margin: 0;
  line-height: 1.4;
}
.vt-cart-insurance__toggle {
  flex-shrink: 0;
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  cursor: pointer;
  align-self: center;
}
.vt-cart-insurance__toggle input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.vt-cart-insurance__switch {
  position: absolute;
  inset: 0;
  background: #d1d5db;
  border-radius: 12px;
  transition: background 0.2s;
}
.vt-cart-insurance__switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.2s;
  box-shadow: 0 1px 2px rgba(0,0,0,0.15);
}
.vt-cart-insurance__toggle input:checked ~ .vt-cart-insurance__switch {
  background: var(--vt-progress);
}
.vt-cart-insurance__toggle input:checked ~ .vt-cart-insurance__switch::after {
  transform: translateX(20px);
}

/* ---------- Footer ---------- */
.vt-cart-footer {
  padding: 14px 20px 18px;
  border-top: 1px solid var(--vt-border);
  background: var(--vt-bg);
}
.vt-cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  padding-top: 4px;
}
.vt-cart-total__label {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--vt-primary);
  letter-spacing: -0.01em;
}
.vt-cart-total__values {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.vt-cart-total__compare {
  color: var(--vt-muted);
  font-size: 15px;
  text-decoration: line-through;
  font-weight: 500;
}
.vt-cart-total__price {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--vt-primary);
  letter-spacing: -0.02em;
}
.vt-cart-total__badge {
  background: #16a34a;
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 12px;
  font-weight: 800;
  padding: 5px 10px;
  border-radius: 6px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.vt-cart-checkout {
  width: 100%;
  padding: 18px 20px;
  background: var(--vt-cta);
  color: #fff;
  border: 0;
  border-radius: 10px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 0.06em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.15s, transform 0.1s;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(240, 126, 59, 0.3);
}
.vt-cart-checkout:hover { background: var(--vt-cta-hover); }
.vt-cart-checkout:active { transform: scale(0.985); }
.vt-cart-checkout:disabled {
  background: #d1d5db;
  color: #6b7280;
  cursor: not-allowed;
  box-shadow: none;
}

.vt-cart-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: center;
  align-items: center;
  margin-top: 14px;
}
.vt-cart-payments img,
.vt-checkout__payments img {
  height: 22px;
  width: auto;
  border: 1px solid var(--vt-border);
  border-radius: 4px;
  background: #fff;
  padding: 2px;
  box-sizing: content-box;
  object-fit: contain;
}
.vt-payment-gpay {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 22px;
  min-width: 38px;
  padding: 2px 6px;
  border: 1px solid var(--vt-border);
  border-radius: 4px;
  background: #fff;
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: -0.01em;
  box-sizing: content-box;
}
.vt-checkout__payments img { height: 26px; padding: 3px; }

.vt-cart-trust {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--vt-border);
  color: var(--vt-primary);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.vt-cart-trust__item {
  display: flex;
  align-items: center;
  gap: 5px;
}
.vt-cart-trust__check {
  width: 15px;
  height: 15px;
  color: var(--vt-primary);
  background: #fff;
  padding: 2px;
  border-radius: 3px;
  flex-shrink: 0;
}
.vt-cart-trust__sep {
  width: 1px;
  height: 12px;
  background: var(--vt-border);
}

/* ---------- BUFFER CHECKOUT PAGE ---------- */
.vt-checkout {
  max-width: 960px;
  margin: 0 auto;
  padding: 40px 20px 60px;
  font-family: "Open Sans", sans-serif;
  color: var(--vt-primary);
}
.vt-checkout__logo {
  display: block;
  text-align: center;
  margin-bottom: 20px;
}
.vt-checkout__logo img { max-width: 180px; height: auto; }
.vt-checkout__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: 28px;
  color: var(--vt-primary);
  text-align: center;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}
.vt-checkout__subtitle {
  text-align: center;
  color: var(--vt-muted);
  margin: 0 0 32px;
  font-size: 15px;
}

.vt-checkout__card {
  background: var(--vt-bg);
  border: 1px solid var(--vt-border);
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 4px 24px rgba(16, 42, 67, 0.06);
}

.vt-checkout__lines { margin-bottom: 20px; }
.vt-checkout__line {
  display: flex;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--vt-border);
  align-items: center;
}
.vt-checkout__line:last-child { border-bottom: 0; }
.vt-checkout__line-img {
  width: 64px; height: 64px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--vt-bg-soft);
  flex-shrink: 0;
}
.vt-checkout__line-img img { width: 100%; height: 100%; object-fit: cover; }
.vt-checkout__line-info { flex: 1; min-width: 0; }
.vt-checkout__line-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--vt-primary);
  margin: 0 0 4px;
}
.vt-checkout__line-meta {
  color: var(--vt-muted);
  font-size: 13px;
}
.vt-checkout__line-price {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--vt-primary);
  flex-shrink: 0;
}

.vt-checkout__summary {
  border-top: 2px solid var(--vt-border);
  padding-top: 18px;
  margin-top: 12px;
}
.vt-checkout__row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 14px;
  color: var(--vt-muted);
}
.vt-checkout__row--total {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--vt-primary);
  font-size: 20px;
  font-weight: 800;
  padding-top: 14px;
  margin-top: 6px;
  border-top: 1px solid var(--vt-border);
  letter-spacing: -0.01em;
}

.vt-checkout__cta {
  width: 100%;
  margin-top: 24px;
  padding: 18px 22px;
  background: var(--vt-cta);
  color: #1a1a1a;
  border: 0;
  border-radius: 10px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.15s, transform 0.1s;
}
.vt-checkout__cta:hover { background: var(--vt-cta-hover); }
.vt-checkout__cta:active { transform: scale(0.99); }
.vt-checkout__cta:disabled { background: #d1d5db; color: #6b7280; cursor: not-allowed; }

.vt-checkout__ctaNote {
  text-align: center;
  color: var(--vt-muted);
  font-size: 13px;
  margin-top: 12px;
}

.vt-checkout__trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--vt-border);
}
@media (max-width: 640px) { .vt-checkout__trust { grid-template-columns: 1fr; gap: 12px; } }
.vt-checkout__trust-item {
  text-align: center;
  color: var(--vt-primary);
  font-size: 12px;
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.vt-checkout__trust-item strong {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--vt-primary);
}
.vt-checkout__trust-item svg {
  width: 28px; height: 28px;
  color: var(--vt-primary);
}

.vt-checkout__payments {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin-top: 20px;
}

.vt-checkout__topbar {
  background: var(--vt-primary);
  color: #fff;
  padding: 10px 20px;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 700;
}

/* ---------- Accessibility ---------- */
.vt-drawer *:focus-visible {
  outline: 2px solid var(--vt-primary);
  outline-offset: 2px;
}

/* ---------- Force collection product cards visible ----------
   THE REAL BUG: The theme wraps collection grid in <reveal-items> which starts
   at opacity:0 and expects a scroll animation to reveal children. Since we
   stripped that theme JS, the wrapper stays invisible. Force opacity:1 on
   every layer of the reveal machinery. */
reveal-items,
reveal-items > *,
.reveal,
.reveal-item,
[class*="reveal"] {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

product-list,
.product-list,
product-list .mpc,
.product-list .mpc,
.product-list [data-vt-injected],
.product-list [data-vt-server-rendered] {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}
/* Layout — match reference: image on top, content below (column) */
product-list .mpc,
.product-list .mpc {
  display: flex !important;
  flex-direction: column !important;
  width: 100% !important;
}
/* Image occupies full card width in a 1:1 square (reference is 384×384) */
.product-list .mpc__image-wrap {
  display: block !important;
  width: 100% !important;
  aspect-ratio: 1 / 1 !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  position: relative !important;
}
.product-list .mpc__image {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}
.product-list .mpc__content {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  padding: 12px 0 !important;
}
.product-list .mpc__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #102a43;
  text-decoration: none;
  line-height: 1.3;
  display: block;
}
.product-list .mpc__prices { display: flex; gap: 8px; align-items: baseline; }
.product-list .mpc__price {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #102a43;
}
.product-list .mpc__compare {
  color: #6b7280;
  font-size: 14px;
  text-decoration: line-through;
}
.product-list .mpc__shop-now {
  display: none; /* reference doesn't have this button */
}
