/* Sport retail layout — PLP / PDP / Cart / Checkout flow */
:root {
  --black: #000;
  --white: #fff;
  --gray-100: #f5f5f5;
  --gray-200: #ebebeb;
  --gray-400: #767677;
  --gray-600: #404040;
  --accent: #0081c7;
  --sale: #d81313;
  --header-h: 56px;
  --font: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--font); color: var(--black); background: var(--white); font-size: 14px; line-height: 1.4; }
a { color: inherit; text-decoration: none; }
button, .btn { cursor: pointer; font-family: inherit; border: none; }
img { max-width: 100%; display: block; }

/* ── Header ── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--black); color: var(--white); min-height: var(--header-h);
  display: flex; align-items: center; padding: 0 24px; gap: 16px;
}
.site-header--minimal {
  border-bottom: 1px solid #222;
}
.header-page-label {
  flex: 1; text-align: center; font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
}
.header-back-link { font-size: 13px; opacity: .9; white-space: nowrap; }
.logo { font-size: 20px; font-weight: 700; letter-spacing: 3px; white-space: nowrap; flex-shrink: 0; }
.main-nav {
  display: flex; gap: 16px; flex: 1; overflow-x: auto;
  scrollbar-width: none; -ms-overflow-style: none;
}
.main-nav::-webkit-scrollbar { display: none; }
.main-nav a {
  font-size: 12px; text-transform: uppercase; letter-spacing: .5px;
  opacity: .85; white-space: nowrap; flex-shrink: 0; padding: 4px 0;
}
.main-nav a:hover, .main-nav a.active { opacity: 1; border-bottom: 2px solid var(--white); }
.header-actions { display: flex; align-items: center; gap: 16px; margin-left: auto; flex-shrink: 0; }
.header-actions a { font-size: 13px; white-space: nowrap; }
.cart-link { position: relative; }
.cart-badge {
  position: absolute; top: -8px; right: -10px;
  background: var(--white); color: var(--black);
  font-size: 10px; font-weight: 700; min-width: 16px; height: 16px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}

.locale-badge {
  font-size: 10px; font-weight: 700; letter-spacing: .5px; opacity: .75;
  border: 1px solid rgba(255,255,255,.35); padding: 2px 6px; border-radius: 2px;
}
.locale-picker { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.locale-select {
  font-size: 11px; font-weight: 600; padding: 4px 4px 4px 6px;
  border: 1px solid rgba(255,255,255,.35); background: rgba(0,0,0,.25);
  color: inherit; border-radius: 2px; cursor: pointer;
  max-width: 72px; min-width: 0; width: auto;
  appearance: menulist; -webkit-appearance: menulist;
  text-overflow: ellipsis; overflow: hidden; white-space: nowrap;
}
.locale-select--lang { max-width: 64px; }
.locale-select--region { max-width: 52px; }
.site-header--minimal .locale-select,
.site-header--watches .locale-select { background: var(--white); color: var(--black); border-color: var(--gray-200); }
.locale-note {
  font-size: 11px; color: var(--gray-400); text-align: center;
  padding: 4px 16px 0; margin: 0;
}
.plp-main .locale-note { text-align: left; padding: 0 0 12px; }

/* ── Promo bar ── */
.promo-bar { background: var(--gray-100); text-align: center; padding: 8px 16px; font-size: 12px; border-bottom: 1px solid var(--gray-200); }

/* ── PLP layout ── */
.plp-wrap { display: grid; grid-template-columns: 240px 1fr; min-height: calc(100vh - 120px); }
.filters {
  border-right: 1px solid var(--gray-200); padding: 24px 16px;
  position: sticky; top: var(--header-h); height: fit-content;
}
.filters h3 { font-size: 14px; font-weight: 700; margin-bottom: 16px; text-transform: uppercase; }
.filter-group { margin-bottom: 24px; }
.filter-group label { display: block; font-size: 13px; margin-bottom: 8px; color: var(--gray-600); }
.filter-group input, .filter-group select {
  width: 100%; padding: 8px; border: 1px solid var(--gray-200); font-size: 13px;
}
.filter-apply {
  width: 100%; padding: 12px; background: var(--black); color: var(--white);
  font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
}
.plp-main { padding: 24px; }
.plp-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.plp-toolbar h1 { font-size: 24px; font-weight: 700; }
.plp-count { color: var(--gray-400); font-size: 13px; }
.sort-select { padding: 8px 12px; border: 1px solid var(--gray-200); font-size: 13px; }

.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 8px; }
.product-card { cursor: pointer; }
.product-card:hover .product-img { opacity: .85; }
.product-img-wrap { background: var(--gray-100); aspect-ratio: 1; overflow: hidden; }
.product-img { width: 100%; height: 100%; object-fit: cover; transition: opacity .2s; }
.product-info { padding: 12px 4px; }
.product-cat { font-size: 11px; color: var(--gray-400); text-transform: uppercase; margin-bottom: 4px; }
.product-title { font-size: 14px; font-weight: 400; margin-bottom: 4px; line-height: 1.3; }
.product-price { font-size: 14px; font-weight: 700; }
.product-price-block {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 8px;
}
.product-price-block--compact { gap: 4px 6px; }
.product-price-was {
  font-size: 12px; color: var(--gray-400); text-decoration: line-through; font-weight: 400;
}
.product-price-block .product-price { font-size: 15px; font-weight: 700; color: var(--black); }
.product-price-block--compact .product-price { font-size: 14px; }
.product-sale-tag {
  font-size: 10px; font-weight: 700; padding: 1px 6px; border-radius: 2px;
  background: #e8f5e9; color: #2e7d32; letter-spacing: .3px;
}
.pdp-price-block { margin-bottom: 16px; }
.pdp-price-block .product-price { font-size: 22px; }
.pdp-price-block .product-price-was { font-size: 14px; }
.bag-item-price { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; }
.pick-price-wrap .product-price-block { flex-direction: column; align-items: flex-start; gap: 2px; }
.pick-price-wrap .product-sale-tag { display: none; }
.product-grid--watches .product-card .product-price { font-size: 15px; letter-spacing: .3px; }
.site-header--watches .main-nav { gap: 12px; }

.brand-portal {
  max-width: 1280px; margin: 0 auto; padding: 32px 24px 0;
}
.brand-portal-title { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.brand-portal-sub { font-size: 14px; color: var(--gray-600); margin-bottom: 20px; }
.brand-portal-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 12px;
  margin-bottom: 32px;
}
.brand-portal-card {
  display: flex; flex-direction: column; gap: 4px; padding: 16px;
  border: 1px solid var(--gray-200); background: var(--gray-100);
  transition: border-color .15s;
}
.brand-portal-card:hover { border-color: var(--black); }
.brand-portal-card strong { font-size: 14px; }
.brand-portal-card span { font-size: 12px; color: var(--gray-600); }
.plp-seo-text { font-size: 13px; color: var(--gray-600); margin-top: 8px; max-width: 640px; line-height: 1.5; }
.watch-specs p { margin-bottom: 4px; }

/* ── PDP ── */
.pdp-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; max-width: 1200px; margin: 0 auto; padding: 32px 24px 120px; }
.gallery-main { background: var(--gray-100); aspect-ratio: 1; }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: flex; gap: 8px; margin-top: 8px; flex-wrap: wrap; }
.gallery-thumbs img { width: 72px; height: 72px; object-fit: cover; cursor: pointer; border: 2px solid transparent; }
.gallery-thumbs img.active { border-color: var(--black); }
.pdp-info h1 { font-size: 22px; font-weight: 700; margin-bottom: 8px; line-height: 1.3; }

/* PDP meta row — breadcrumb + rating */
.pdp-meta-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; font-size: 13px; color: var(--gray-600); }
.pdp-breadcrumb { color: var(--gray-600); }
.pdp-rating { display: flex; align-items: center; gap: 4px; font-weight: 700; color: var(--black); }
.pdp-rating .stars { color: var(--black); font-size: 12px; letter-spacing: 1px; }
.badge-best { display: inline-block; background: var(--gray-100); border: 1px solid var(--gray-200); padding: 4px 10px; font-size: 12px; font-weight: 700; margin-bottom: 12px; }
.pdp-title { font-size: 26px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 12px; line-height: 1.2; }
.pdp-desc { font-size: 14px; color: var(--gray-600); line-height: 1.5; margin-bottom: 16px; max-width: 480px; }
.pdp-price { font-size: 22px; font-weight: 700; margin-bottom: 16px; }

.popular-banner {
  background: #e8edf2; padding: 12px 16px; font-size: 13px;
  margin-bottom: 16px; line-height: 1.4;
}
.popular-banner strong { margin-right: 6px; }
.club-note { font-size: 12px; color: var(--gray-600); margin-bottom: 12px; line-height: 1.4; }
.kit-label { font-size: 14px; font-weight: 700; margin-bottom: 20px; }

/* Jersey type variant cards */
.variant-section { margin-bottom: 28px; }
.variant-heading { font-size: 16px; font-weight: 700; margin-bottom: 12px; }
.variant-card {
  display: block; border: 1px solid var(--gray-200); margin-bottom: 8px;
  cursor: pointer; position: relative; background: var(--white);
}
.variant-card.selected { border-color: var(--black); border-width: 2px; }
.variant-card.selected::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--black);
}
.variant-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 16px 16px 20px; gap: 12px; }
.variant-name-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 6px; }
.variant-name-row strong { font-size: 15px; }
.variant-extra { font-size: 14px; font-weight: 700; }
.variant-minus { color: var(--sale); }
.personalize-section { margin-bottom: 28px; padding-top: 8px; border-top: 1px solid var(--gray-200); }
.personalize-note { font-size: 12px; color: var(--gray-600); margin-bottom: 12px; line-height: 1.4; }
.personalize-check { display: flex; align-items: center; gap: 10px; font-size: 14px; cursor: pointer; }
.personalize-check input { width: 18px; height: 18px; accent-color: var(--black); }
.variant-desc { font-size: 13px; color: var(--gray-600); line-height: 1.4; max-width: 280px; }
.variant-thumb { width: 64px; height: 64px; object-fit: cover; background: var(--gray-100); flex-shrink: 0; }
.pdp-details details p { margin-top: 12px; color: var(--gray-600); line-height: 1.5; }

.pdp-sku { font-size: 12px; color: var(--gray-400); margin-bottom: 16px; }
.pdp-price { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.pdp-shipping-note { font-size: 13px; color: var(--gray-600); margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--gray-200); }
.size-section { margin-bottom: 24px; }
.size-header { display: flex; justify-content: space-between; margin-bottom: 12px; }
.size-header span { font-size: 14px; font-weight: 700; }
.size-guide { font-size: 13px; text-decoration: underline; cursor: pointer; }
.size-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.size-btn {
  min-width: 48px; height: 48px; border: 1px solid var(--gray-200);
  background: var(--white); font-size: 14px; display: flex; align-items: center; justify-content: center;
}
.size-btn:hover { border-color: var(--black); }
.size-btn.selected { background: var(--black); color: var(--white); border-color: var(--black); }
.size-btn.disabled { opacity: .3; pointer-events: none; text-decoration: line-through; }
.qty-row { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.qty-row label { font-weight: 700; }
.qty-row input { width: 60px; padding: 8px; border: 1px solid var(--gray-200); text-align: center; }
.add-to-bag {
  width: 100%; padding: 16px; background: var(--black); color: var(--white);
  font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 12px;
}
.add-to-bag:disabled { background: var(--gray-400); cursor: not-allowed; }
.wishlist-btn {
  width: 100%; padding: 14px; background: var(--white); border: 1px solid var(--black);
  font-size: 14px; font-weight: 700; text-transform: uppercase;
}
.pdp-details { margin-top: 32px; border-top: 1px solid var(--gray-200); }
.pdp-details details { border-bottom: 1px solid var(--gray-200); padding: 16px 0; }
.pdp-details summary { font-weight: 700; cursor: pointer; list-style: none; }
.related { max-width: 1200px; margin: 0 auto; padding: 0 24px 48px; }
.related h2 { font-size: 18px; font-weight: 700; margin-bottom: 16px; }

/* Sticky buy bar (mobile) */
.sticky-buy {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--white); border-top: 1px solid var(--gray-200);
  padding: 12px 16px; z-index: 99; gap: 12px;
}
@media (max-width: 768px) {
  .plp-wrap { grid-template-columns: 1fr; }
  .filters { position: static; border-right: none; border-bottom: 1px solid var(--gray-200); }
  .pdp-wrap { grid-template-columns: 1fr; gap: 24px; padding-bottom: 80px; }
  .sticky-buy { display: flex; }
  .sticky-buy .add-to-bag { margin: 0; flex: 1; }
}

/* ── Bag (YOUR BAG) ── */
.bag-page { max-width: 1280px; margin: 0 auto; padding: 32px 24px 64px; }
.bag-layout { display: grid; grid-template-columns: 1fr 380px; gap: 48px; align-items: start; }
.bag-header h1 { font-size: 28px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; margin-bottom: 8px; }
.bag-count { font-size: 16px; font-weight: 400; color: var(--gray-600); text-transform: none; }
.cart-err-banner {
  background: #fff3f3; border: 1px solid #f5c2c2; color: #8a1f1f;
  padding: 12px 16px; margin: 0 auto 16px; max-width: 1200px; font-size: 14px;
}
.bag-notice { font-size: 13px; color: var(--gray-600); margin-bottom: 20px; }
.club-banner {
  background: var(--gray-100); padding: 14px 16px; margin-bottom: 24px;
  display: flex; flex-direction: column; gap: 4px; font-size: 13px;
}
.club-banner strong { font-size: 14px; }
.bag-item {
  display: grid; grid-template-columns: 140px 1fr; gap: 20px;
  padding: 24px 0; border-bottom: 1px solid var(--gray-200);
}
.bag-item-img img { width: 140px; height: 140px; object-fit: cover; background: var(--gray-100); }
.bag-item-body { min-width: 0; display: flex; flex-direction: column; justify-content: space-between; }
.bag-item-top { display: flex; justify-content: space-between; gap: 16px; margin-bottom: 16px; }
.bag-item-details { min-width: 0; flex: 1; }
.bag-item-title { font-size: 14px; font-weight: 700; margin-bottom: 6px; line-height: 1.3; }
.bag-item-meta { font-size: 13px; color: var(--gray-600); }
.bag-item-actions { display: flex; flex-direction: column; gap: 8px; }
.icon-btn { background: none; border: none; cursor: pointer; opacity: .65; padding: 4px; display: flex; align-items: center; justify-content: center; color: var(--black); }
.icon-btn:hover { opacity: 1; }
.icon-btn svg { display: block; }
.bag-item-bottom { display: flex; justify-content: space-between; align-items: center; }
.qty-form select {
  padding: 10px 32px 10px 12px; border: 1px solid var(--gray-200);
  font-size: 14px; background: var(--white); min-width: 72px; appearance: auto;
}
.bag-item-price { font-size: 16px; font-weight: 700; }
.top-picks { margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--gray-200); }
.top-picks h2 { font-size: 18px; font-weight: 700; letter-spacing: .5px; margin-bottom: 16px; }
.picks-row { display: flex; gap: 12px; overflow-x: auto; padding-bottom: 8px; }
.pick-card { flex: 0 0 160px; }
.pick-card img { width: 160px; height: 160px; object-fit: cover; background: var(--gray-100); margin-bottom: 8px; }
.pick-title { display: block; font-size: 12px; line-height: 1.3; margin-bottom: 4px; }
.pick-price { font-size: 13px; font-weight: 700; }

.order-summary-panel {
  background: var(--gray-100); padding: 28px 24px;
  position: sticky; top: calc(var(--header-h) + 16px);
}
.order-summary-panel h2 { font-size: 16px; font-weight: 700; letter-spacing: .5px; margin-bottom: 20px; text-transform: uppercase; }
.financing-note { font-size: 11px; color: var(--gray-600); margin: 12px 0 16px; line-height: 1.4; }
.financing-note a { text-decoration: underline; }
.promo-link {
  background: none; border: none; font-size: 13px; text-decoration: underline;
  margin-bottom: 12px; padding: 0; color: var(--black);
}
.promo-box { display: none; gap: 8px; margin-bottom: 16px; }
.promo-box.open { display: flex; }
.promo-box input { flex: 1; padding: 10px; border: 1px solid var(--gray-200); }
.promo-box button { padding: 10px 16px; background: var(--black); color: var(--white); font-size: 12px; font-weight: 700; }
.btn-checkout, .btn-gpay {
  width: 100%; padding: 16px 20px; font-size: 14px; font-weight: 700;
  display: flex; align-items: center; justify-content: space-between;
  text-transform: uppercase; letter-spacing: .5px; margin-bottom: 10px;
}
.btn-checkout { background: var(--black); color: var(--white); }
.btn-gpay {
  background: var(--white); color: var(--black); border: 1px solid var(--black);
}
.arrow { font-size: 18px; }
.payment-methods { margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--gray-200); }
.payment-methods p { font-size: 10px; font-weight: 700; letter-spacing: .5px; margin-bottom: 12px; }

/* ── Cart legacy (keep summary rows) ── */
.cart-page { max-width: 1000px; margin: 0 auto; padding: 32px 24px; }
.cart-page h1 { font-size: 24px; font-weight: 700; margin-bottom: 24px; }
.cart-layout { display: grid; grid-template-columns: 1fr 320px; gap: 48px; }
.cart-item { display: grid; grid-template-columns: 120px 1fr auto; gap: 16px; padding: 24px 0; border-bottom: 1px solid var(--gray-200); align-items: start; }
.cart-item img { width: 120px; height: 120px; object-fit: cover; background: var(--gray-100); }
.cart-item-title { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.cart-item-meta { font-size: 13px; color: var(--gray-600); }
.cart-item-price { font-weight: 700; text-align: right; }
.cart-summary { background: var(--gray-100); padding: 24px; position: sticky; top: 80px; }
.cart-summary h2 { font-size: 16px; font-weight: 700; margin-bottom: 16px; }
.summary-row { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: 14px; }
.summary-total { font-weight: 700; font-size: 16px; border-top: 1px solid var(--gray-200); padding-top: 12px; margin-top: 12px; }
.checkout-btn {
  width: 100%; padding: 16px; background: var(--black); color: var(--white);
  font-size: 14px; font-weight: 700; text-transform: uppercase; margin-top: 16px; display: block; text-align: center;
}

/* ── Checkout (Adidas-style payment) ── */
.checkout-page { max-width: 1280px; margin: 0 auto; padding: 32px 24px 64px; }
.checkout-layout { display: grid; grid-template-columns: 1fr 380px; gap: 48px; align-items: start; }
.checkout-title { font-size: 28px; font-weight: 700; letter-spacing: .5px; margin-bottom: 32px; text-transform: uppercase; }
.checkout-grid { display: grid; grid-template-columns: 1fr 360px; gap: 48px; }
.form-section { margin-bottom: 32px; }
.form-section h2 { font-size: 14px; font-weight: 700; margin-bottom: 16px; text-transform: uppercase; letter-spacing: .5px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.form-row--full { grid-template-columns: 1fr; }

.float-field { position: relative; min-width: 0; }
.float-field--block { width: 100%; margin-bottom: 12px; }
.float-field--select select { padding-top: 16px; }
.float-field input, .float-field select {
  width: 100%; padding: 18px 12px 8px; border: 1px solid var(--gray-200);
  font-size: 14px; background: var(--white); outline: none;
}
.float-field input:focus, .float-field select:focus { border-color: var(--black); }
.float-field label {
  position: absolute; left: 10px; top: -8px; background: var(--white);
  padding: 0 4px; font-size: 11px; color: var(--gray-600);
}
.field-hint { display: block; font-size: 11px; color: var(--gray-400); margin-top: 4px; padding-left: 2px; }
.valid-field .field-check {
  display: none; position: absolute; right: 12px; top: 14px;
  color: #2ecc71; font-weight: 700; font-size: 16px;
}
.cvv-field { position: relative; }
.cvv-help {
  position: absolute; right: 12px; top: 14px; width: 18px; height: 18px;
  border: 1px solid var(--gray-400); border-radius: 50%; font-size: 11px;
  display: flex; align-items: center; justify-content: center; color: var(--gray-600);
}

.shipping-option {
  display: flex; align-items: center; gap: 12px; padding: 16px;
  border: 1px solid var(--gray-200); margin-bottom: 8px; cursor: pointer;
}
.shipping-option.selected { border-color: var(--black); border-width: 2px; }
.shipping-option input { width: auto; accent-color: var(--black); }
.ship-info { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.ship-info span { font-size: 13px; color: var(--gray-600); }
.ship-price { white-space: nowrap; }

.pay-panel { border: 1px solid var(--gray-200); margin-bottom: 8px; }
.pay-panel.selected { border-color: var(--black); border-width: 2px; }
.pay-panel-head {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 16px; background: var(--white); font-size: 14px; font-weight: 700;
  border: none; text-align: left; gap: 12px;
}
.pay-panel-title { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; }
.pay-discount-badge {
  font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 3px;
  letter-spacing: .3px; white-space: nowrap;
}
.pay-discount-badge--6 { background: #fff3e0; color: #e65100; }
.pay-discount-badge--4 { background: #e8f5e9; color: #2e7d32; }
.pay-panel-body { display: none; padding: 4px 16px 16px; }
.pay-panel.open .pay-panel-body { display: block; }
.card-logos, .alt-pay-logos {
  display: flex; align-items: center; gap: 6px; flex-shrink: 0;
}
.card-logos .pay-brand-icon { opacity: .4; transition: opacity .15s; }
.card-logos .pay-brand-icon.active { opacity: 1; }
.float-field--card input { padding-right: 58px; }
.float-field--card input.has-brand { padding-right: 58px; }
.card-detect-icon {
  position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
  pointer-events: none; line-height: 0;
}
.card-detect-icon[hidden] { display: none !important; }
.pay-brand-icon--detect { width: 44px; height: 28px; display: block; }
.pay-brand-icon {
  width: 44px; height: 28px; flex-shrink: 0; display: block;
}
.pay-brand-icon--sm { width: 40px; height: 26px; }
.pay-brand-icon--paypal { width: 52px; height: 28px; }
.pay-brand-icon--btn { width: 36px; height: 22px; }
.pay-icons {
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
}
.gpay-label { display: flex; align-items: center; gap: 8px; }
.other-logos { font-size: 11px; font-weight: 600; color: var(--gray-600); }
.paypal-logo { color: #003087; font-weight: 700; font-style: italic; font-size: 14px; }
.pay-brand-icon--usdt { width: 48px; height: 28px; }

.sms-verify-block { margin: 4px 0 12px; }
.sms-phone-row { align-items: stretch; gap: 10px; }
.sms-phone-field { flex: 1; min-width: 0; }
.sms-send-btn {
  flex-shrink: 0; align-self: stretch; min-width: 108px; margin-top: 0;
  padding: 0 16px; background: var(--black); color: var(--white);
  border: none; font-size: 13px; font-weight: 700; letter-spacing: .3px;
  cursor: pointer; white-space: nowrap;
}
.sms-send-btn:hover:not(:disabled) { opacity: .88; }
.sms-send-btn:disabled { background: var(--gray-400); cursor: not-allowed; }
.sms-send-msg { font-size: 12px; margin: -4px 0 10px; }
.sms-send-msg--ok { color: #1a7f37; }
.sms-send-msg--err { color: #c0392b; }

.usdt-amount-note { font-size: 14px; margin-bottom: 16px; line-height: 1.4; }
.usdt-amount-note strong { font-size: 16px; color: #26A17B; }
.usdt-network { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 16px; }
.usdt-net-opt {
  display: flex; flex-direction: column; gap: 2px; padding: 12px;
  border: 1px solid var(--gray-200); cursor: pointer; font-size: 13px;
}
.usdt-net-opt.selected { border-color: var(--black); border-width: 2px; }
.usdt-net-opt input { display: none; }
.usdt-net-opt small { font-size: 11px; color: var(--gray-600); }
.usdt-wallet-box { margin-bottom: 16px; }
.usdt-wallet-label { display: block; font-size: 11px; color: var(--gray-600); margin-bottom: 6px; }
.usdt-wallet-layout { display: flex; gap: 16px; align-items: flex-start; }
.usdt-wallet-main { flex: 1; min-width: 0; }
.usdt-qr-wrap { flex-shrink: 0; text-align: center; }
.usdt-qr-wrap img {
  width: 120px; height: 120px; object-fit: contain;
  border: 1px solid var(--gray-200); padding: 6px; background: #fff;
}
.usdt-qr-hint { display: block; font-size: 11px; color: var(--gray-600); margin-top: 6px; }
.usdt-wallet-row {
  display: flex; gap: 8px; align-items: stretch;
}
.usdt-wallet-row code {
  flex: 1; padding: 10px 12px; background: var(--gray-100);
  border: 1px solid var(--gray-200); font-size: 11px; word-break: break-all;
  font-family: Consolas, monospace;
}
.usdt-copy-btn {
  padding: 10px 16px; background: var(--black); color: var(--white);
  font-size: 12px; font-weight: 700; white-space: nowrap;
}
.usdt-verify-row {
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin: 0 0 12px;
}
.usdt-verify-btn, .usdt-poll-btn {
  height: 36px; padding: 0 14px; background: var(--black); color: var(--white);
  border: none; font-size: 12px; font-weight: 700; cursor: pointer;
}
.usdt-poll-btn { background: #26A17B; }
.usdt-verify-btn:disabled, .usdt-poll-btn:disabled { opacity: .55; cursor: not-allowed; }
.usdt-tronscan-link { font-size: 12px; color: var(--accent); text-decoration: underline; }
.usdt-verify-msg { font-size: 12px; margin: -4px 0 10px; line-height: 1.45; }
.usdt-verify-msg--ok { color: #1a7f37; }
.usdt-verify-msg--err { color: #c0392b; }
.save-card-check, .gift-card-check {
  display: flex; align-items: center; gap: 10px; font-size: 13px;
  margin-top: 12px; cursor: pointer;
}
.save-card-check input, .gift-card-check input { width: 16px; height: 16px; accent-color: var(--black); }
.gift-card-check { margin-top: 20px; }
.alt-pay-note { font-size: 13px; color: var(--gray-600); padding: 8px 0; }

.place-order-btn {
  width: 100%; padding: 18px 20px; background: var(--black); color: var(--white);
  font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px;
  display: flex; align-items: center; justify-content: space-between; margin-top: 24px;
}
.place-order-btn:disabled { opacity: .6; cursor: not-allowed; }
.place-order-legal { font-size: 11px; color: var(--gray-600); margin-top: 12px; line-height: 1.5; }

.checkout-summary .summary-item {
  display: grid; grid-template-columns: 56px 1fr auto; gap: 10px;
  align-items: start; margin-bottom: 16px; font-size: 13px;
}
.checkout-summary .summary-item img { width: 56px; height: 56px; object-fit: cover; background: var(--gray-100); }
.summary-item-prices { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; text-align: right; }
.price-original { font-size: 12px; color: var(--gray-400); text-decoration: line-through; }
.price-now { font-size: 14px; font-weight: 700; }
.price-strike { text-decoration: line-through; color: var(--gray-400); }
.summary-row--discount .discount-amount { color: #2e7d32; font-weight: 700; }
.summary-save {
  margin-top: 8px; padding: 8px 12px; background: #e8f5e9; color: #2e7d32;
  font-size: 13px; font-weight: 700; text-align: center; border-radius: 4px;
}
.summary-item-title { font-weight: 700; line-height: 1.3; margin-bottom: 4px; }
.summary-item-meta { color: var(--gray-600); font-size: 12px; }

.pay-btn {
  width: 100%; padding: 16px; background: var(--black); color: var(--white);
  font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
}

@media (max-width: 900px) {
  .bag-layout, .checkout-layout { grid-template-columns: 1fr; }
  .order-summary-panel { position: static; }
}

/* ── Footer ── */
.site-footer { background: var(--black); color: var(--gray-400); padding: 48px 24px; margin-top: 48px; font-size: 12px; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 24px; }
.footer-inner h4 { color: var(--white); font-size: 13px; margin-bottom: 12px; text-transform: uppercase; }
.footer-inner a { display: block; margin-bottom: 8px; }
.footer-bottom { max-width: 1200px; margin: 24px auto 0; padding-top: 24px; border-top: 1px solid var(--gray-600); }

.empty-state { text-align: center; padding: 80px 24px 120px; max-width: 480px; margin: 0 auto; }
.empty-state h1 { font-size: 28px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; margin-bottom: 12px; }
.empty-sub { font-size: 16px; color: var(--gray-600); margin-bottom: 28px; }
.btn-continue {
  display: inline-block; padding: 14px 32px; background: var(--black); color: var(--white);
  font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px;
}
.order-success-page { text-align: center; padding: 64px 24px 120px; max-width: 560px; margin: 0 auto; }
.order-success-page h1 { font-size: 28px; font-weight: 700; margin-bottom: 12px; }
.success-sub { font-size: 16px; color: var(--gray-600); margin-bottom: 8px; }
.success-meta { font-size: 13px; color: var(--gray-400); margin-bottom: 4px; }
.success-demo { font-size: 13px; color: var(--sale); margin-top: 16px; }
.usdt-order-box {
  text-align: left; background: var(--gray-100); padding: 20px; margin: 24px 0;
  border: 1px solid var(--gray-200); font-size: 14px; line-height: 1.6;
}
.usdt-order-box code { font-size: 11px; word-break: break-all; }
.order-success-page .btn-continue { margin-top: 32px; }

.plp-pagination {
  display: flex; align-items: center; justify-content: center; gap: 20px;
  margin: 32px 0 16px; font-size: 14px;
}
.plp-pagination a { color: var(--black); font-weight: 600; text-decoration: underline; }
.plp-page-info { color: var(--gray-600); }
.pdp-breadcrumb nav a { color: var(--gray-600); text-decoration: none; }
.pdp-breadcrumb nav a:hover { text-decoration: underline; }

/* Floating AI chat */
.amftr-chat-root {
  position: fixed; right: 20px; bottom: 20px; z-index: 9999;
  font-family: var(--font, system-ui, sans-serif); font-size: 14px;
}
.amftr-chat-toggle {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 18px; border: none; border-radius: 999px;
  background: var(--black, #111); color: var(--white, #fff);
  box-shadow: 0 4px 20px rgba(0,0,0,.25); cursor: pointer;
  font-size: 13px; font-weight: 700; letter-spacing: .3px;
  transition: transform .15s, box-shadow .15s;
}
.amftr-chat-toggle:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,0,0,.3); }
.amftr-chat-toggle svg { flex-shrink: 0; }
.amftr-chat-toggle-label { display: none; }
@media (min-width: 480px) { .amftr-chat-toggle-label { display: inline; } }
.amftr-chat-panel {
  display: none; flex-direction: column;
  position: absolute; right: 0; bottom: calc(100% + 12px);
  width: min(360px, calc(100vw - 32px)); height: 440px;
  background: #fff; border-radius: 12px;
  box-shadow: 0 8px 40px rgba(0,0,0,.18); overflow: hidden;
  border: 1px solid var(--gray-200, #e5e5e5);
}
.amftr-chat-root--open .amftr-chat-panel { display: flex; }
.amftr-chat-root--open .amftr-chat-toggle { opacity: .85; }
.amftr-chat-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  padding: 14px 16px; background: var(--black, #111); color: #fff;
}
.amftr-chat-header strong { display: block; font-size: 15px; }
.amftr-chat-sub { display: block; font-size: 11px; opacity: .75; margin-top: 2px; }
.amftr-chat-close {
  background: none; border: none; color: #fff; font-size: 22px;
  line-height: 1; cursor: pointer; padding: 0 4px; opacity: .8;
}
.amftr-chat-close:hover { opacity: 1; }
.amftr-chat-msgs {
  flex: 1; overflow-y: auto; padding: 14px; display: flex; flex-direction: column; gap: 10px;
  background: var(--gray-100, #f5f5f5);
}
.amftr-chat-msg {
  max-width: 88%; padding: 10px 12px; border-radius: 12px; line-height: 1.45;
  word-break: break-word;
}
.amftr-chat-msg--bot {
  align-self: flex-start; background: #fff; border: 1px solid var(--gray-200, #e5e5e5);
}
.amftr-chat-msg--user {
  align-self: flex-end; background: var(--black, #111); color: #fff;
}
.amftr-chat-human {
  padding: 8px 12px 0;
  background: #fff;
  border-top: 1px solid var(--gray-200, #e5e5e5);
}
.amftr-chat-wa-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 10px 14px; border-radius: 8px;
  background: #25d366; color: #fff; font-size: 13px; font-weight: 600;
  text-decoration: none; transition: background .15s, transform .15s;
}
.amftr-chat-wa-btn:hover { background: #1ebe57; transform: translateY(-1px); color: #fff; }
.amftr-chat-wa-btn svg { flex-shrink: 0; }
.amftr-chat-form {
  display: flex; gap: 8px; padding: 10px 12px; border-top: 1px solid var(--gray-200, #e5e5e5);
  background: #fff;
}
.amftr-chat-input {
  flex: 1; border: 1px solid var(--gray-200, #ddd); border-radius: 8px;
  padding: 10px 12px; font-size: 14px; outline: none;
}
.amftr-chat-input:focus { border-color: var(--black, #111); }
.amftr-chat-send {
  flex-shrink: 0; width: 40px; height: 40px; border: none; border-radius: 8px;
  background: var(--black, #111); color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.amftr-chat-send:disabled { opacity: .45; cursor: not-allowed; }
.amftr-chat-root--busy .amftr-chat-send { opacity: .45; }
@media (max-width: 479px) {
  .amftr-chat-root { right: 12px; bottom: 12px; }
  .amftr-chat-panel { height: min(70vh, 420px); }
}
