  .prod-detail { padding: 20px 0 60px; }
  .prod-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: stretch; }
  .prod-img-wrapper { background: var(--bg-card); padding: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 16px; text-align: center; position: relative; }
  .carousel-track { position: absolute; top: 0; left: 0; right: 0; bottom: 0; display: flex; transition: transform 0.4s ease-in-out; }
  .carousel-slide { flex: 0 0 100%; width: 100%; height: 100%; }
  .carousel-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .carousel-nav { position: absolute; top: 50%; width: 100%; display: flex; justify-content: space-between; transform: translateY(-50%); padding: 0 12px; pointer-events: none; }
  .carousel-nav button { background: rgba(0,0,0,0.4); color: #fff; border: none; width: 32px; height: 32px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; pointer-events: auto; transition: background 0.2s; backdrop-filter: blur(4px); }
  .carousel-nav button:hover { background: rgba(0,0,0,0.7); }
  .carousel-dots { position: absolute; bottom: 12px; width: 100%; display: flex; justify-content: center; gap: 6px; }
  .carousel-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.4); cursor: pointer; transition: background 0.2s; box-shadow: 0 1px 3px rgba(0,0,0,0.3); }
  .carousel-dot.active { background: rgba(255,255,255,0.9); }
  .prod-info h1 { font-size: 46px; margin-bottom: 12px; }
  .prod-price { font-size: 28px; color: var(--accent); font-family: 'Space Grotesk', sans-serif; font-weight: 700; margin-bottom: 24px; }
  .prod-meta { margin-bottom: 30px; }
  .meta-item { display: flex; justify-content: space-between; border-bottom: 1px dashed var(--line); padding: 12px 0; }
  .meta-label { color: var(--muted); font-weight: 500; font-size: 16px; }
  .meta-value { font-weight: 600; font-size: 16px; text-align: right; }
  .sizes { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 10px; }
  .size-box { border: 1px solid var(--line); padding: 8px 14px; border-radius: 6px; font-weight: 600; font-family: 'Space Grotesk', sans-serif; }
  .back-link { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 15px; font-weight: 600; color: var(--accent); }
  .back-link:hover { text-decoration: underline; }
  @media (max-width: 768px) { 
    .prod-grid { grid-template-columns: 1fr; }
    .prod-img-wrapper { min-height: 450px; }
  }
  .trust, #categories, #how, .stitch, #reviews, .cta-banner { display: none !important; }


