/* ══════════════════════════════════════════════
   YOLYSSE — shared.css
   All shared components: navbar, sidebar, cart,
   toast, product overlay, checkout, shop page
══════════════════════════════════════════════ */

/* ─── IMPORT BASE VARS FROM STYLE.CSS ─── */
/* This file augments style.css — include AFTER style.css */

/* ══════════════════════════════════════════
   CUSTOM TOAST SYSTEM
══════════════════════════════════════════ */
.toast-container {
  position: fixed;
  top: 90px;
  right: 20px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  min-width: 280px;
  max-width: 360px;
  transform: translateX(120%);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: auto;
}

.toast-item.toast-show {
  transform: translateX(0);
  opacity: 1;
}

.toast-item.toast-hide {
  transform: translateX(120%);
  opacity: 0;
  transition: all 0.3s ease;
}

.toast-item.toast-success { border-left-color: #4CAF50; }
.toast-item.toast-error   { border-left-color: #f44336; }
.toast-item.toast-info    { border-left-color: var(--gold); }

.toast-icon-wrap {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 13px;
}

.toast-success .toast-icon-wrap { background: rgba(76,175,80,0.15); color: #4CAF50; }
.toast-error   .toast-icon-wrap { background: rgba(244,67,54,0.15);  color: #f44336; }
.toast-info    .toast-icon-wrap { background: rgba(201,148,58,0.15); color: var(--gold); }

.toast-body { flex: 1; }
.toast-title { font-size: 13px; font-weight: 500; color: var(--text); line-height: 1.3; }
.toast-desc  { font-size: 11px; color: var(--text-muted); margin-top: 2px; }
.toast-close-btn {
  background: none; border: none; cursor: pointer;
  color: var(--text-muted); font-size: 16px; padding: 0 0 0 8px;
  line-height: 1; flex-shrink: 0;
}
.toast-close-btn:hover { color: var(--text); }

/* ══════════════════════════════════════════
   PRODUCT OVERLAY
══════════════════════════════════════════ */
.product-overlay-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 9000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(4px);
}
.product-overlay-backdrop.active {
  opacity: 1;
  pointer-events: all;
}

.product-overlay {
  position: fixed;
  inset: 0;
  z-index: 9001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  pointer-events: none;
  overflow-y: auto;
}

.product-overlay-panel {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  width: 100%;
  max-width: 960px;
  max-height: 90vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  pointer-events: auto;
  transform: translateY(40px) scale(0.97);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.1, 0.64, 1);
  position: relative;
}

.product-overlay-panel.active {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* Image Carousel Side */
.overlay-images {
  position: relative;
  background: var(--dark);
  border-radius: 16px 0 0 16px;
  overflow: hidden;
  min-height: 480px;
}

.overlay-img-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.25,0.46,0.45,0.94);
  height: 100%;
}

.overlay-img-slide {
  min-width: 100%;
  height: 100%;
}

.overlay-img-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay-img-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}

.img-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: all 0.25s;
  border: none;
}

.img-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

.overlay-img-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(10,9,5,0.6);
  border: 1px solid var(--border);
  color: var(--text);
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: all 0.2s;
  font-size: 16px;
}
.overlay-img-nav:hover { background: var(--gold); color: #000; }
.overlay-img-prev { left: 12px; }
.overlay-img-next { right: 12px; }

/* Info Side */
.overlay-info {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
}

.overlay-close {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--dark-2);
  border: 1px solid var(--border);
  color: var(--text-muted);
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 16px;
  z-index: 10;
  transition: all 0.2s;
}
.overlay-close:hover { background: var(--gold); color: #000; border-color: var(--gold); }

.overlay-category-tag {
  font-size: 10px;
  font-family: var(--font-body);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.overlay-product-name {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 10px;
}

.overlay-price-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.overlay-price {
  font-size: 22px;
  font-weight: 500;
  color: var(--gold);
}

.overlay-price-original {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: line-through;
}

.overlay-badge-sale {
  font-size: 11px;
  background: rgba(201,148,58,0.15);
  color: var(--gold);
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid rgba(201,148,58,0.25);
}

.overlay-divider {
  height: 1px;
  background: var(--border-light);
  margin: 16px 0;
}

.overlay-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.overlay-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}

.overlay-meta-item {
  background: var(--dark-2);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 10px 14px;
}

.overlay-meta-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 4px;
}

.overlay-meta-val {
  font-size: 13px;
  color: var(--text);
  font-weight: 400;
}

.overlay-actions {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}

.overlay-btn-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}

.btn-add-cart {
  padding: 14px;
  border: 1.5px solid var(--gold);
  background: transparent;
  color: var(--gold);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.25s;
}
.btn-add-cart:hover { background: rgba(201,148,58,0.12); }

.btn-buy-now {
  padding: 14px;
  background: var(--gold);
  color: #0A0905;
  border: none;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.25s;
}
.btn-buy-now:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-request-clip {
  width: 100%;
  padding: 12px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 12px;
  cursor: pointer;
  transition: all 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-request-clip:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Request Clip Sub-overlay */
.clip-request-overlay {
  position: absolute;
  inset: 0;
  background: var(--dark-card);
  border-radius: 16px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  padding: 36px 32px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
}

.clip-request-overlay.active {
  transform: translateX(0);
}

.clip-overlay-back {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 24px;
  padding: 0;
  font-family: var(--font-body);
  transition: color 0.2s;
}
.clip-overlay-back:hover { color: var(--gold); }

.clip-overlay-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 8px;
  color: var(--text);
}

.clip-overlay-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.clip-form-group {
  margin-bottom: 16px;
}

.clip-form-label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 8px;
}

.clip-form-input {
  width: 100%;
  padding: 12px 16px;
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 13px;
  outline: none;
  transition: border-color 0.2s;
}
.clip-form-input:focus { border-color: var(--gold); }
.clip-form-input::placeholder { color: var(--text-dim); }

.btn-send-request {
  width: 100%;
  padding: 14px;
  background: var(--gold);
  color: #0A0905;
  border: none;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  margin-top: 8px;
}
.btn-send-request:hover { background: var(--gold-light); }

/* ══════════════════════════════════════════
   SHOP PAGE LAYOUT
══════════════════════════════════════════ */
.shop-page-wrap {
  padding-top: 140px;
  min-height: 100vh;
}

.shop-page-header {
  text-align: center;
  padding: 0 20px 40px;
}

.shop-page-eyebrow {
  font-size: 10px;
  font-family: var(--font-body);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.shop-page-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 300;
  color: var(--text);
  line-height: 1.1;
}

.shop-page-title em {
  font-style: italic;
  color: var(--gold-light);
}

/* Category Bar */
.shop-categories {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  scroll-padding-left: 20px;
  gap: 0;
  padding: 0 20px;
  margin-bottom: 32px;
  overflow-x: auto;
  scrollbar-width: none;
  border-bottom: 1px solid var(--border-light);
}
.shop-categories::-webkit-scrollbar { display: none; }

.cat-tab {
  padding: 14px 22px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
  white-space: nowrap;
  margin-bottom: -1px;
}
.cat-tab:hover { color: var(--gold); }
.cat-tab.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* Toolbar */
.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px 24px;
  max-width: 1400px;
  margin: 0 auto;
  gap: 12px;
}

.toolbar-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.toolbar-count {
  font-size: 12px;
  color: var(--text-muted);
}

.shop-toolbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Custom Sort / Filter Buttons */
.shop-ctrl-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all 0.25s;
  position: relative;
}
.shop-ctrl-btn:hover, .shop-ctrl-btn.active-ctrl {
  border-color: var(--gold);
  color: var(--gold);
}
.shop-ctrl-btn svg { flex-shrink: 0; }

/* Custom Popup Panel */
.ctrl-popup {
  position: absolute;
  top: calc(100% + 8px);
  width: calc (100% - 50px);
  right: 0;
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
  z-index: 500;
  min-width: 220px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px) scale(0.97);
  transition: all 0.25s cubic-bezier(0.34,1.2,0.64,1);
}

.ctrl-popup.popup-open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0) scale(1);
}

.ctrl-popup-header {
  padding: 14px 18px 10px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-dim);
  border-bottom: 1px solid var(--border-light);
}

.ctrl-popup-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  cursor: pointer;
  transition: background 0.15s;
  font-size: 13px;
  color: var(--text-muted);
}
.ctrl-popup-option:hover {
  background: rgba(201,148,58,0.07);
  color: var(--text);
}
.ctrl-popup-option.selected {
  color: var(--gold);
}
.ctrl-popup-option .opt-check {
  width: 16px; height: 16px;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 10px;
  transition: all 0.2s;
}
.ctrl-popup-option.selected .opt-check {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
}

/* Filter Popup */
.filter-popup {
  min-width: 280px;
}

.filter-section {
  padding: 12px 18px;
  border-bottom: 1px solid var(--border-light);
}
.filter-section:last-child { border-bottom: none; }

.filter-section-title {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-dim);
  margin-bottom: 10px;
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.filter-chip {
  padding: 6px 14px;
  background: var(--dark-2);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  font-size: 11.5px;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-chip:hover { border-color: var(--gold); color: var(--gold); }
.filter-chip.active {
  background: rgba(201,148,58,0.12);
  border-color: var(--gold);
  color: var(--gold);
}

.filter-popup-footer {
  display: flex;
  gap: 8px;
  padding: 12px 18px;
  border-top: 1px solid var(--border-light);
}
.filter-clear-btn {
  flex: 1;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s;
}
.filter-clear-btn:hover { border-color: var(--text-muted); color: var(--text); }
.filter-apply-btn {
  flex: 1;
  padding: 10px;
  background: var(--gold);
  border: none;
  border-radius: 8px;
  color: #0A0905;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.filter-apply-btn:hover { background: var(--gold-light); }

/* Products Grid */
.shop-grid-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px 80px;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.shop-product-card {
  background: var(--dark-card);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.35s ease;
  position: relative;
}
.shop-product-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.35);
}

.shop-card-img-wrap {
  position: relative;
  aspect-ratio: 1 / 1.1;
  overflow: hidden;
  background: var(--dark);
}

.shop-card-img-track {
  display: flex;
  height: 100%;
  transition: transform 0.4s ease;
}

.shop-card-img-slide {
  min-width: 100%;
  height: 100%;
}

.shop-card-img-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.shop-product-card:hover .shop-card-img-slide:first-child img {
  transform: scale(1.04);
}

.shop-card-img-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 2;
}

.card-img-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}
.card-img-dot.active {
  background: var(--gold);
  transform: scale(1.4);
}

.card-hover-arrows {
  position: absolute;
  top: 50%; left: 0; right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
  opacity: 0;
  transition: opacity 0.25s;
  z-index: 3;
}
.shop-product-card:hover .card-hover-arrows { opacity: 1; }

.card-arrow {
  background: rgba(10,9,5,0.6);
  border: 1px solid rgba(201,148,58,0.3);
  color: var(--text);
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 13px;
  transition: all 0.2s;
}
.card-arrow:hover { background: var(--gold); color: #000; }

.shop-card-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--gold);
  color: #0A0905;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  z-index: 2;
}

.shop-card-wishlist {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--dark-card);
  border: 1px solid var(--border);
  color: var(--text-muted);
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: all 0.2s;
  font-size: 14px;
}
.shop-card-wishlist:hover, .shop-card-wishlist.wishlisted {
  background: rgba(244,67,54,0.12);
  border-color: #f44336;
  color: #f44336;
}

.shop-card-info {
  padding: 16px;
}

.shop-card-cat {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 5px;
}

.shop-card-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.25;
}

.shop-card-price-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.shop-card-price {
  font-size: 16px;
  font-weight: 500;
  color: var(--gold);
}

.shop-card-original {
  font-size: 12px;
  color: var(--text-dim);
  text-decoration: line-through;
}

.shop-card-discount {
  font-size: 10px;
  color: #4CAF50;
  background: rgba(76,175,80,0.1);
  padding: 2px 7px;
  border-radius: 10px;
}

/* No results */
.shop-no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 20px;
  color: var(--text-muted);
}
.shop-no-results h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 10px;
}

/* ══════════════════════════════════════════
   CHECKOUT PAGE
══════════════════════════════════════════ */
.checkout-page {
  min-height: 100vh;
  padding-top: 100px;
  background: var(--bg);
}

.checkout-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  align-items: start;
}

.checkout-form-col {}

.checkout-section-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
}

.checkout-field-group {
  display: grid;
  gap: 16px;
  margin-bottom: 28px;
}

.checkout-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.checkout-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.checkout-field label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
}

.checkout-field input,
.checkout-field select,
.checkout-field textarea {
  padding: 12px 16px;
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 13px;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}
.checkout-field input:focus,
.checkout-field select:focus { border-color: var(--gold); }
.checkout-field input::placeholder { color: var(--text-dim); }

/* Payment Options */
.payment-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.payment-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--dark-card);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
}
.payment-option:hover { border-color: var(--border); }
.payment-option.selected-payment {
  border-color: var(--gold);
  background: rgba(201,148,58,0.05);
}

.payment-option input[type="radio"] { display: none; }

.pay-radio-circle {
  width: 18px; height: 18px;
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
}
.payment-option.selected-payment .pay-radio-circle {
  border-color: var(--gold);
}
.pay-radio-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.2s;
}
.payment-option.selected-payment .pay-radio-dot {
  transform: scale(1);
}

.pay-label {
  flex: 1;
}
.pay-label strong {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
}
.pay-label span {
  font-size: 11px;
  color: var(--text-muted);
}

.pay-icon {
  font-size: 18px;
  color: var(--text-muted);
}

.btn-place-order {
  width: 100%;
  padding: 16px;
  background: var(--gold);
  color: #0A0905;
  border: none;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all 0.25s;
}
.btn-place-order:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201,148,58,0.3);
}

/* Order Summary */
.checkout-summary-col {}

.checkout-summary-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  position: sticky;
  top: 110px;
}

.summary-header {
  padding: 20px 22px;
  border-bottom: 1px solid var(--border-light);
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--text);
}

.summary-items {
  padding: 16px 22px;
  max-height: 300px;
  overflow-y: auto;
}

.summary-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
}
.summary-item:last-child { border-bottom: none; }

.summary-item-img {
  width: 52px; height: 52px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--dark);
  flex-shrink: 0;
}
.summary-item-img img { width: 100%; height: 100%; object-fit: cover; }

.summary-item-name {
  flex: 1;
  font-size: 13px;
  color: var(--text);
  line-height: 1.3;
}
.summary-item-qty {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}

.summary-item-price {
  font-size: 14px;
  font-weight: 500;
  color: var(--gold);
}

.summary-totals {
  padding: 16px 22px;
  border-top: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-muted);
}

.summary-row.total-row {
  font-size: 16px;
  color: var(--text);
  font-weight: 500;
  padding-top: 10px;
  border-top: 1px solid var(--border-light);
}

.summary-secure {
  padding: 12px 22px;
  text-align: center;
  font-size: 11px;
  color: var(--text-dim);
  border-top: 1px solid var(--border-light);
}

/* Order Success Page */
.order-success-wrap {
  display: none;
  text-align: center;
  padding: 80px 24px;
  max-width: 500px;
  margin: 0 auto;
}
.order-success-wrap.show { display: block; }
.success-circle {
  width: 80px; height: 80px;
  background: rgba(76,175,80,0.15);
  border: 2px solid #4CAF50;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
  margin: 0 auto 24px;
  color: #4CAF50;
}
.success-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 300;
  color: var(--text);
  margin-bottom: 12px;
}
.success-desc { font-size: 14px; color: var(--text-muted); margin-bottom: 32px; }
.btn-continue-shopping {
  display: inline-block;
  padding: 14px 32px;
  background: var(--gold);
  color: #0A0905;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s;
}
.btn-continue-shopping:hover { background: var(--gold-light); }

/* ══════════════════════════════════════════
   CART OVERLAY UPDATES
══════════════════════════════════════════ */
.cart-item-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
}
.cart-item-row:last-child { border-bottom: none; }

.cart-item-thumb {
  width: 54px; height: 54px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--dark);
  flex-shrink: 0;
}
.cart-item-thumb img { width: 100%; height: 100%; object-fit: cover; }

.cart-item-name {
  flex: 1;
  font-size: 13px;
  color: var(--text);
  line-height: 1.3;
}
.cart-item-price {
  font-size: 13px;
  color: var(--gold);
  font-weight: 500;
}

.cart-item-remove {
  background: none;
  border: none;
  color: var(--text-dim);
  cursor: pointer;
  font-size: 16px;
  padding: 4px;
  transition: color 0.2s;
}
.cart-item-remove:hover { color: #f44336; }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 768px) {
  .product-overlay-panel {
    grid-template-columns: 1fr;
    max-height: 96vh;
  }
  .overlay-images {
    border-radius: 16px 16px 0 0;
    min-height: 300px;
    max-height: 360px;
  }
  .clip-request-overlay {
    border-radius: 16px;
  }
  .overlay-btn-row { grid-template-columns: 1fr; }
  .overlay-info { padding: 24px 20px; }
  .overlay-product-name { font-size: 22px; }
  .shop-toolbar { padding: 0 20px 20px; flex-wrap: wrap; }
  .shop-grid-wrap { padding: 0 16px 60px; }
  .shop-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .checkout-wrap { grid-template-columns: 1fr; }
  .checkout-summary-col { order: -1; }
  .checkout-summary-card { position: static; }
  .checkout-field-row { grid-template-columns: 1fr; }
  .ctrl-popup { right: auto; left: 0; }
}

@media (max-width: 400px) {
  .shop-grid { grid-template-columns: 1fr; }
}
