/* ==========================================================================
   STYLES BOUTIQUE OFFICIELLE — MONSIEUR JAMIN
   ========================================================================== */

/* 1. Header Cart Trigger */
.cart-toggle-btn {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.cart-toggle-btn:hover {
  background: rgba(245, 158, 11, 0.15);
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.2);
}

.cart-count-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--accent-gold);
  color: #000000;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  min-width: 20px;
  height: 20px;
  border-radius: 10px;
  padding: 0 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  animation: pulse-gold 2s infinite;
}

@keyframes pulse-gold {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7); }
  70% { transform: scale(1.08); box-shadow: 0 0 0 6px rgba(245, 158, 11, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
}

/* 2. Hero */
.shop-hero-section {
  padding: 140px 0 40px;
  background: radial-gradient(circle at 50% 10%, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
}

.shop-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.shop-hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 820px;
  margin: 0 auto 30px;
  line-height: 1.7;
}

/* 3. Categories Filter Tabs */
.shop-categories-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 20px 0 40px;
}

.shop-filter-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 10px 22px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.shop-filter-btn:hover {
  color: #ffffff;
  border-color: var(--border-medium);
  background: rgba(255, 255, 255, 0.08);
}

.shop-filter-btn.active {
  background: var(--accent-gold);
  color: #000000;
  border-color: var(--accent-gold);
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.3);
}

/* 4. Products Grid & Cards */
.shop-catalog-section {
  padding: 0 0 100px;
}

.shop-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 36px;
}

.shop-product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

.shop-product-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-gold);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(245, 158, 11, 0.1);
}

.shop-product-card.is-sold-out {
  filter: grayscale(0.4);
  opacity: 0.85;
}

.shop-card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 4.2;
  background-color: #09090b;
  overflow: hidden;
}

.shop-img-primary {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.2s ease, transform var(--transition-slow);
}

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

.shop-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(245, 158, 11, 0.95);
  color: #000000;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.badge-sold-out {
  background: rgba(239, 68, 68, 0.95) !important;
  color: #ffffff !important;
}

.shop-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* Stock & Limited Edition Pills */
.shop-stock-status {
  margin-bottom: 12px;
}

.stock-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.76rem;
  font-weight: 600;
}

.stock-pill.in-stock {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #34d399;
}

.stock-pill.low-stock {
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: #fbbf24;
}

.stock-pill.sold-out {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #f87171;
}

.stock-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.stock-dot.green { background: #10b981; }
.stock-dot.orange { background: #f59e0b; }
.stock-dot.red { background: #ef4444; }

.shop-product-title {
  font-family: var(--font-heading);
  font-size: 1.22rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
}

.shop-product-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
}

/* Color Swatches Grid */
.shop-color-selector {
  margin-bottom: 16px;
}

.color-swatches-grid {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.color-swatch-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--border-medium);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
  padding: 0;
}

.color-swatch-btn:hover {
  transform: scale(1.15);
  border-color: #ffffff;
}

.color-swatch-btn.active {
  border-color: var(--accent-gold);
  transform: scale(1.15);
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
}

.swatch-check {
  font-size: 0.72rem;
  font-weight: 900;
  color: #000000;
  text-shadow: 0 0 2px rgba(255, 255, 255, 0.8);
}

/* Format & Size Selectors */
.shop-format-selector {
  margin-bottom: 16px;
}

.shop-format-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.shop-format-dropdown {
  width: 100%;
  background-color: var(--bg-surface);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-sm);
  color: #ffffff;
  padding: 10px 14px;
  font-size: 0.88rem;
  font-family: var(--font-sans);
  cursor: pointer;
  outline: none;
  transition: border-color var(--transition-fast);
}

.shop-format-dropdown:focus {
  border-color: var(--accent-gold);
}

.shop-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-subtle);
}

.shop-price {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--accent-gold);
}

.price-cur {
  font-size: 1.15rem;
  color: var(--accent-gold-light);
}

.shop-guarantee-pill {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  color: #10b981;
  font-weight: 600;
}

.shop-actions {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 10px;
  margin-top: auto;
}

.shop-add-cart-btn {
  padding: 12px 16px;
  font-size: 0.86rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.shop-buy-now-btn {
  padding: 12px 14px;
  font-size: 0.84rem;
  text-align: center;
}

/* 5. Reassurance Section */
.shop-reassurance-section {
  padding: 70px 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.reassurance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.reassurance-card {
  text-align: center;
  padding: 20px;
}

.reassurance-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid var(--border-gold);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.reassurance-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.reassurance-desc {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* 6. Cart Drawer (Slide-Over) */
.cart-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  z-index: 1500;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-smooth);
}

.cart-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 460px;
  height: 100vh;
  background: var(--bg-card);
  border-left: 1px solid var(--border-medium);
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.9);
  z-index: 1600;
  display: flex;
  flex-direction: column;
  transition: right var(--transition-smooth);
}

.cart-drawer.open {
  right: 0;
}

.cart-drawer-header {
  padding: 24px 28px;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-drawer-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-close-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.cart-close-btn:hover {
  background: #ffffff;
  color: #000000;
  transform: scale(1.05);
}

.cart-items-list {
  flex-grow: 1;
  overflow-y: auto;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-subtle);
}

.cart-item-img {
  width: 80px;
  height: 95px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
}

.cart-item-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cart-item-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
}

.cart-item-format {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.cart-item-price {
  font-weight: 700;
  color: var(--accent-gold);
  font-size: 1rem;
}

.cart-item-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 6px;
}

.cart-qty-ctrl {
  display: flex;
  align-items: center;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
}

.qty-btn {
  background: transparent;
  border: none;
  color: #ffffff;
  width: 28px;
  height: 28px;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-btn:hover {
  color: var(--accent-gold);
}

.qty-num {
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0 6px;
}

.cart-item-remove {
  background: transparent;
  border: none;
  color: #ef4444;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity var(--transition-fast);
}

.cart-item-remove:hover {
  opacity: 0.7;
}

.cart-empty-state {
  text-align: center;
  padding: 60px 20px;
}

.cart-empty-icon {
  font-size: 3.5rem;
  margin-bottom: 16px;
}

.cart-empty-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.cart-empty-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.cart-drawer-footer {
  padding: 24px 28px;
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-surface);
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffffff;
  margin: 14px 0 20px;
  padding-top: 12px;
  border-top: 1px solid var(--border-subtle);
}

.cart-total-amount {
  font-size: 1.5rem;
  color: var(--accent-gold);
}

.cart-checkout-btn {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
}

.cart-security-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* 7. Order Checkout Modal (Printify Direct) */
.order-checkout-dialog,
.stripe-checkout-dialog {
  border: none;
  background: transparent;
  padding: 0;
  max-width: 620px;
  width: 92vw;
  max-height: 90vh;
  margin: auto;
  overflow: hidden;
  outline: none;
  z-index: 1800;
  border-radius: var(--radius-lg);
}

.order-checkout-dialog::backdrop,
.stripe-checkout-dialog::backdrop {
  background: rgba(9, 9, 11, 0.9);
  backdrop-filter: blur(16px);
}

.order-modal-inner,
.stripe-modal-inner {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  position: relative;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.95);
  max-height: 90vh;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.order-modal-inner::-webkit-scrollbar,
.stripe-modal-inner::-webkit-scrollbar,
.product-detail-inner::-webkit-scrollbar {
  width: 6px;
}

.order-modal-inner::-webkit-scrollbar-thumb,
.stripe-modal-inner::-webkit-scrollbar-thumb,
.product-detail-inner::-webkit-scrollbar-thumb {
  background: rgba(245, 158, 11, 0.4);
  border-radius: 4px;
}

.order-badge,
.stripe-badge {
  display: inline-block;
  background: rgba(245, 158, 11, 0.2);
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold-light);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
}

.order-modal-title,
.stripe-modal-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
}

.order-modal-sub,
.stripe-modal-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 22px;
}

.order-summary-box,
.stripe-order-summary-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-bottom: 22px;
}

.order-summary-item,
.stripe-summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  padding: 4px 0;
}

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

/* ==========================================================================
   FICHE PRODUIT DÉTAILLÉE (PRODUCT DETAIL MODAL)
   ========================================================================== */

.shop-card-media {
  cursor: pointer;
}

.shop-card-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-normal);
  z-index: 3;
}

.shop-product-card:hover .shop-card-hover-overlay {
  opacity: 1;
}

.btn-quick-view {
  background: rgba(0, 0, 0, 0.85);
  border: 1px solid var(--accent-gold);
  color: #ffffff;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transform: translateY(10px);
  transition: transform var(--transition-normal), background var(--transition-fast);
}

.shop-product-card:hover .btn-quick-view {
  transform: translateY(0);
}

.btn-detail-link {
  background: transparent;
  border: 1px solid var(--border-subtle);
  color: var(--accent-gold);
  font-size: 0.76rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-detail-link:hover {
  background: rgba(245, 158, 11, 0.15);
  border-color: var(--accent-gold);
}

.product-detail-dialog {
  border: none;
  background: transparent;
  padding: 0;
  max-width: 960px;
  width: 94vw;
  max-height: 90vh;
  margin: auto;
  overflow: hidden;
  outline: none;
  z-index: 1700;
  border-radius: var(--radius-lg);
}

.product-detail-dialog::backdrop {
  background: rgba(8, 8, 10, 0.88);
  backdrop-filter: blur(14px);
}

.product-detail-inner {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  position: relative;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.95);
  max-height: 90vh;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 36px;
  padding: 40px;
}

.product-detail-media-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-detail-main-img-box {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 4.2;
  background-color: #0c0c0e;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}

.product-detail-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.15s ease;
}

.detail-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--accent-gold);
  color: #000000;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.product-detail-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: thin;
}

.detail-thumb-btn {
  flex-shrink: 0;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.detail-thumb-btn img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 4px;
}

.detail-thumb-btn:hover {
  border-color: var(--accent-gold);
}

.detail-thumb-btn.active {
  border-color: var(--accent-gold);
  background: rgba(245, 158, 11, 0.15);
  box-shadow: 0 0 0 1px var(--accent-gold);
}

.product-detail-info-wrap {
  display: flex;
  flex-direction: column;
}

.detail-product-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.35;
  color: #ffffff;
  margin-bottom: 14px;
}

.detail-product-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.5;
}

.detail-price-box {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-subtle);
}

.detail-price-amount {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--accent-gold);
}

.detail-price-currency {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent-gold-light);
}

.detail-price-tax {
  margin-left: 14px;
  font-size: 0.8rem;
  color: #10b981;
  font-weight: 600;
}

.detail-option-group {
  margin-bottom: 18px;
}

.detail-group-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.detail-desc-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-bottom: 20px;
}

.detail-desc-heading {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.detail-desc-text {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.detail-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.detail-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.detail-features-list li svg {
  color: var(--accent-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

@media (max-width: 820px) {
  .product-detail-grid {
    grid-template-columns: 1fr;
    padding: 24px;
  }
}
