/* ==========================================================================
   LibyaPress Shopping Section — Premium Styles
   ========================================================================== */

/* ─── Shop Hero ─── */
.shop-hero {
  background: linear-gradient(135deg, rgba(6, 50, 88, 0.8), rgba(3, 31, 54, 0.9));
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 3rem;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.shop-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 10%, transparent 40%);
  animation: heroRotate 25s linear infinite;
}
@keyframes heroRotate { 100% { transform: rotate(360deg); } }
.shop-hero .hero-content { position: relative; z-index: 1; }
.shop-hero .hero-title {
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent-gold), #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.shop-hero .hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  opacity: 0.85;
}

/* ─── Toolbar: Categories + Search + Sort ─── */
.shop-toolbar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.category-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  transition: var(--transition-smooth);
  cursor: pointer;
}
.chip:hover, .chip-active {
  background: linear-gradient(135deg, var(--accent-gold), #c9a52e);
  color: #000;
  border-color: var(--accent-gold);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.3);
}
.chip-count {
  background: rgba(255,255,255,0.2);
  padding: 1px 8px;
  border-radius: 20px;
  font-size: 0.75rem;
}
.chip-active .chip-count {
  background: rgba(0,0,0,0.15);
}

.shop-controls {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.shop-search {
  flex: 1;
  display: flex;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  overflow: hidden;
}
.shop-search input {
  flex: 1;
  padding: 0.7rem 1rem;
  background: transparent;
  border: none;
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
}
.shop-search input::placeholder { color: rgba(255,255,255,0.4); }
.shop-search button {
  padding: 0.7rem 1.2rem;
  background: var(--accent-gold);
  border: none;
  color: #000;
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition-fast);
}
.shop-search button:hover { background: #e6c040; }

.shop-sort {
  padding: 0.7rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  color: #fff;
  font-family: inherit;
  font-size: 0.9rem;
  cursor: pointer;
  outline: none;
  min-width: 160px;
}
.shop-sort option { background: var(--bg-dark); color: #fff; }

/* ─── Products Grid ─── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.2rem;
}

.product-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition-smooth);
  position: relative;
  color: inherit;
  text-decoration: none;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow), 0 12px 40px rgba(0,0,0,0.4);
  border-color: rgba(212, 175, 55, 0.3);
}

/* Badge */
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 5;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}
[dir="rtl"] .product-badge { left: auto; right: 12px; }

.badge-sale {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #fff;
}
.badge-hot {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #fff;
}

/* Image */
.product-image-wrap {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-image { transform: scale(1.08); }

.product-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.15);
  font-size: 3rem;
}

/* Info */
.product-info {
  padding: 1rem 1.2rem 0.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-category {
  font-size: 0.75rem;
  color: var(--accent-blue);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.product-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.4;
  margin-bottom: 0.5rem;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-pricing {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.product-price {
  font-size: 1.3rem;
  font-weight: 900;
  color: #10b981;
}
.product-price small {
  font-size: 0.7rem;
  font-weight: 600;
  opacity: 0.7;
}
.product-old-price {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.4);
  text-decoration: line-through;
}

/* Stock Indicator */
.stock-indicator {
  margin-top: 0.5rem;
}
.stock-bar {
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  overflow: hidden;
}
.stock-fill {
  height: 100%;
  background: linear-gradient(90deg, #ef4444, #f59e0b);
  border-radius: 4px;
  transition: width 0.6s ease;
}
.stock-text {
  font-size: 0.72rem;
  color: #f59e0b;
  font-weight: 600;
  margin-top: 2px;
  display: block;
}

/* CTA */
.product-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1.2rem;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.15), rgba(6, 50, 88, 0.3));
  border-top: 1px solid var(--border-glass);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-blue);
  transition: var(--transition-fast);
}
.product-card:hover .product-cta {
  background: linear-gradient(135deg, var(--accent-gold), #c9a52e);
  color: #000;
}

/* ─── Empty State ─── */
.shop-empty {
  text-align: center;
  padding: 5rem 2rem;
  color: var(--text-muted);
}
.shop-empty i { font-size: 4rem; margin-bottom: 1rem; opacity: 0.3; }
.shop-empty h2 { font-size: 2rem; margin-bottom: 0.5rem; color: var(--accent-gold); }

/* ==========================================================================
   Product Detail Page — Temu / Amazon Style
   ========================================================================== */

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--accent-blue); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent-gold); text-decoration: underline; }
.breadcrumb-current { color: rgba(255,255,255,0.6); }

/* ─── PDP Layout (Desktop: Gallery | Info) ─── */
.pdp-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

/* ─── Gallery: Vertical Thumbs + Main Image (Temu Style) ─── */
.pdp-gallery {
  display: flex;
  gap: 0.75rem;
}

.pdp-thumbs-strip {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 72px;
  flex-shrink: 0;
  max-height: 500px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.15) transparent;
}
.pdp-thumbs-strip::-webkit-scrollbar { width: 3px; }
.pdp-thumbs-strip::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 3px; }

.pdp-thumb-item {
  width: 68px;
  height: 68px;
  border-radius: 8px;
  border: 2px solid transparent;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
  background: var(--bg-dark);
}
.pdp-thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pdp-thumb-item:hover {
  border-color: rgba(255,255,255,0.3);
}
.pdp-thumb-active {
  border-color: var(--accent-gold) !important;
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.35);
}

.pdp-main-image-wrap {
  flex: 1;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-dark);
  border: 1px solid var(--border-glass);
  cursor: zoom-in;
  aspect-ratio: 1;
}
.pdp-main-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.pdp-main-image-wrap:hover .pdp-main-image {
  transform: scale(1.03);
}
.pdp-click-zoom {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.65);
  color: rgba(255,255,255,0.7);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  pointer-events: none;
  white-space: nowrap;
}
.pdp-discount-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #fff;
  padding: 5px 14px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 0.95rem;
  z-index: 5;
}
[dir="rtl"] .pdp-discount-badge { left: auto; right: 12px; }

/* ─── Info Panel ─── */
.pdp-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pdp-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.4;
}

.pdp-meta-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
}
.pdp-sold {
  color: #f59e0b;
  font-weight: 600;
}
.pdp-meta-sep { color: rgba(255,255,255,0.2); }
.pdp-category-tag {
  background: rgba(14, 165, 233, 0.12);
  color: var(--accent-blue);
  padding: 2px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
}
.pdp-views {
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
}
.pdp-views i { margin-inline-end: 3px; }

/* ─── Pricing ─── */
.pdp-pricing-block {
  background: rgba(16, 185, 129, 0.06);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: 12px;
  padding: 1rem 1.2rem;
}
.pdp-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.pdp-price {
  font-size: 2rem;
  font-weight: 900;
  color: #10b981;
}
.pdp-price small { font-size: 0.85rem; opacity: 0.7; }
.pdp-old-price {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.35);
  text-decoration: line-through;
}
.pdp-discount-tag {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #fff;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 800;
}
.pdp-save-line {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: #10b981;
}
.pdp-save-line i { margin-inline-end: 4px; }

/* ─── Status Grid ─── */
.pdp-status-grid {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.pdp-status-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  padding: 0.4rem 0;
}
.pdp-status-item i {
  width: 18px;
  text-align: center;
  color: var(--accent-blue);
  font-size: 0.85rem;
}
.pdp-status-stock i { color: #10b981; }
.pdp-almost-sold {
  background: rgba(239, 68, 68, 0.12);
  color: #ef4444;
  padding: 2px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-inline-start: auto;
}

/* ─── Quantity ─── */
.pdp-qty-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.pdp-qty-row label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
}
.pdp-qty-control {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-glass);
  border-radius: 8px;
  overflow: hidden;
}
.pdp-qty-control button {
  width: 36px;
  height: 36px;
  background: var(--bg-card);
  border: none;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.15s;
}
.pdp-qty-control button:hover { background: rgba(255,255,255,0.1); }
.pdp-qty-control input {
  width: 44px;
  height: 36px;
  text-align: center;
  background: var(--bg-dark);
  border: none;
  border-inline: 1px solid var(--border-glass);
  color: #fff;
  font-size: 1rem;
  font-family: inherit;
  outline: none;
}

/* ─── Buy Now Button ─── */
.pdp-buy-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  width: 100%;
  padding: 1rem;
  font-size: 1.15rem;
  font-weight: 800;
  font-family: inherit;
  color: #000;
  background: linear-gradient(135deg, #f97316, #ea580c, #f97316);
  background-size: 200% auto;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 4px 20px rgba(249, 115, 22, 0.35);
}
.pdp-buy-btn:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(249, 115, 22, 0.5);
}
.pdp-buy-disabled {
  background: rgba(255,255,255,0.1) !important;
  color: rgba(255,255,255,0.3) !important;
  box-shadow: none !important;
  cursor: not-allowed !important;
}

/* ─── Trust Row ─── */
.pdp-trust-row {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}
.pdp-trust-item {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  padding: 0.4rem 0.8rem;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 6px;
}
.pdp-trust-item i { color: var(--accent-gold); font-size: 0.7rem; }

.pdp-sku {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  font-family: monospace;
}

/* ─── About This Item (Amazon Style) ─── */
.pdp-about-section,
.pdp-specs-section,
.pdp-related-section {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  margin-bottom: 1.5rem;
}

.pdp-section-heading {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--border-glass);
}
.pdp-section-heading i {
  color: var(--accent-gold);
  font-size: 1rem;
}

.pdp-about-content {
  color: var(--text-muted);
  line-height: 1.9;
  font-size: 0.95rem;
}
.pdp-about-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pdp-about-content ul li {
  padding: 0.4rem 0;
  padding-inline-start: 1.5rem;
  position: relative;
}
.pdp-about-content ul li::before {
  content: '•';
  position: absolute;
  inset-inline-start: 0;
  color: var(--accent-gold);
  font-size: 1.2rem;
  font-weight: bold;
}
.pdp-no-desc {
  color: rgba(255,255,255,0.3);
  font-style: italic;
}

/* ─── Specs Table ─── */
.pdp-specs-table {
  width: 100%;
  border-collapse: collapse;
}
.pdp-specs-table tr { border-bottom: 1px solid rgba(255,255,255,0.06); }
.pdp-specs-table tr:last-child { border-bottom: none; }
.pdp-specs-table td { padding: 0.7rem 0.5rem; font-size: 0.9rem; }
.spec-label {
  color: rgba(255,255,255,0.5);
  font-weight: 600;
  width: 35%;
}
.spec-value { color: var(--text-main); }

/* ─── Related Products ─── */
.pdp-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
}

/* ─── Sticky Mobile Buy Bar ─── */
.pdp-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 8000;
  background: var(--bg-dark);
  border-top: 1px solid var(--border-glass);
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.4);
}
.pdp-sticky-visible { transform: translateY(0); }

.pdp-sticky-info {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.pdp-sticky-thumb {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
}
.pdp-sticky-price {
  font-size: 1.1rem;
  font-weight: 900;
  color: #10b981;
}
.pdp-sticky-price small { font-size: 0.7rem; opacity: 0.7; }

.pdp-sticky-btn {
  padding: 0.6rem 1.8rem;
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: #000;
  font-weight: 800;
  font-size: 0.95rem;
  font-family: inherit;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
}
.pdp-sticky-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
}

/* ─── Zoom Overlay ─── */
.pdp-zoom-overlay {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  cursor: zoom-out;
}
.pdp-zoom-active { display: flex; }
.pdp-zoom-overlay img {
  max-width: 85%;
  max-height: 80vh;
  object-fit: contain;
}
.pdp-zoom-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  font-size: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s;
}
.pdp-zoom-close:hover { background: rgba(255,255,255,0.2); }
.pdp-zoom-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1rem;
}
.pdp-zoom-nav button {
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.2s;
}
.pdp-zoom-nav button:hover { background: rgba(255,255,255,0.2); }
.pdp-zoom-nav span { color: rgba(255,255,255,0.5); font-size: 0.9rem; }

/* ==========================================================================
   COD Order Drawer — (unchanged)
   ========================================================================== */

.order-drawer-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 9000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.order-drawer-overlay.active { opacity: 1; pointer-events: all; }

.order-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 420px;
  max-width: 90vw;
  height: 100vh;
  background: var(--bg-dark);
  border-left: 1px solid var(--border-glass);
  z-index: 9001;
  display: flex;
  flex-direction: column;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 40px rgba(0,0,0,0.5);
  overflow-y: auto;
}
[dir="rtl"] .order-drawer {
  right: auto;
  left: -100%;
  border-left: none;
  border-right: 1px solid var(--border-glass);
  box-shadow: 8px 0 40px rgba(0,0,0,0.5);
}
.order-drawer.open { right: 0; }
[dir="rtl"] .order-drawer.open { right: auto; left: 0; }

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-glass);
}
.drawer-header h3 { font-size: 1.3rem; color: var(--accent-gold); }
.drawer-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 1.3rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 8px;
  transition: var(--transition-fast);
}
.drawer-close:hover { background: rgba(255,255,255,0.1); color: #fff; }

.drawer-product-summary {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1.5rem;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border-glass);
}
.drawer-thumb {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 10px;
}
.drawer-product-name {
  font-weight: 700;
  color: var(--text-main);
  font-size: 0.95rem;
}
.drawer-product-price {
  color: #10b981;
  font-weight: 800;
  font-size: 1.1rem;
}

.drawer-form { padding: 1.5rem; display: flex; flex-direction: column; gap: 1.2rem; }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.form-group label i { color: var(--accent-blue); }
.form-group input,
.form-group select {
  padding: 0.8rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 10px;
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s ease;
}
.form-group input:focus,
.form-group select:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}
.form-group input::placeholder { color: rgba(255,255,255,0.3); }
.form-group select option { background: var(--bg-dark); }

.drawer-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 12px;
  font-weight: 700;
}
.drawer-total-price { color: #10b981; font-size: 1.3rem; font-weight: 900; }

.drawer-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
  font-weight: 800;
  font-family: inherit;
  color: #000;
  background: linear-gradient(135deg, var(--accent-gold), #e6c040);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.drawer-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}
.drawer-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.drawer-note {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
.drawer-note i { margin-inline-end: 4px; }

/* Success */
.drawer-success {
  padding: 3rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.success-icon { font-size: 4rem; }
.drawer-success h3 { color: var(--accent-gold); font-size: 1.5rem; }
.drawer-success p { color: var(--text-muted); }
.order-number-display {
  font-family: monospace;
  font-size: 1.2rem;
  color: var(--accent-blue);
  background: var(--bg-card);
  padding: 0.5rem 1.5rem;
  border-radius: 8px;
  border: 1px solid var(--border-glass);
}

/* ==========================================================================
   Responsive — Product Detail
   ========================================================================== */

@media (max-width: 1024px) {
  .pdp-layout { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .shop-hero { padding: 2rem; }
  .shop-hero .hero-title { font-size: 1.8rem; }

  .shop-controls { flex-direction: column; }
  .shop-sort { width: 100%; }

  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
  .product-name { font-size: 0.85rem; }
  .product-price { font-size: 1.1rem; }

  /* PDP Mobile */
  .pdp-gallery { flex-direction: column-reverse; }
  .pdp-thumbs-strip {
    flex-direction: row;
    width: 100%;
    max-height: none;
    overflow-x: auto;
    overflow-y: hidden;
  }
  .pdp-thumb-item { width: 60px; height: 60px; }
  .pdp-main-image-wrap { aspect-ratio: auto; min-height: 300px; }

  .pdp-title { font-size: 1.3rem; }
  .pdp-price { font-size: 1.7rem; }

  .pdp-trust-row { flex-wrap: wrap; justify-content: flex-start; }

  .pdp-about-section,
  .pdp-specs-section,
  .pdp-related-section { padding: 1.2rem; }

  .order-drawer { width: 100%; max-width: 100vw; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
  .product-card { border-radius: 12px; }
  .product-info { padding: 0.7rem; }
  .product-cta { padding: 0.6rem 0.7rem; font-size: 0.75rem; }

  .pdp-thumb-item { width: 52px; height: 52px; }
  .pdp-related-grid { grid-template-columns: repeat(2, 1fr); }
}


/* ─── Rossmann SEO: FAQ Section ─── */
.product-faq-section {
  max-width: 800px;
  margin: 2rem auto;
  padding: 1.5rem;
  background: rgba(0, 20, 40, 0.4);
  border-radius: 12px;
  border: 1px solid rgba(197, 160, 89, 0.15);
}
.product-faq-section h2 {
  color: var(--accent-gold, #c5a059);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  text-align: center;
}
.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.8rem 0;
}
.faq-item:last-child { border-bottom: none; }
.faq-question {
  cursor: pointer;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  padding: 0.3rem 0;
  list-style: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::before {
  content: "▸ ";
  color: var(--accent-gold, #c5a059);
  transition: transform 0.2s;
}
details[open] .faq-question::before { content: "▾ "; }
.faq-answer {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  line-height: 1.7;
  padding: 0.5rem 0 0 1rem;
}
