/* Product Detail Page (PDP) styles — /mugs/:slug */

/* Breadcrumb */
.pdp-breadcrumb {
  background: #111;
  padding: 12px 48px;
  font-size: 12px;
  color: #666;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.pdp-breadcrumb a { color: #888; text-decoration: none; }
.pdp-breadcrumb a:hover { color: #FFD600; }
.pdp-breadcrumb span { margin: 0 8px; }

/* Hero */
.pdp-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.pdp-hero-image {
  position: relative;
  overflow: hidden;
  background: #111;
}
.pdp-hero-image-fallback {
  width: 100%;
  height: 100%;
  min-height: 480px;
  background: linear-gradient(135deg, #FFD600 50%, #1a1a1a 50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pdp-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pdp-hero-info {
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #1a1a1a;
}
.pdp-persona-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,214,0,0.1);
  border: 1px solid rgba(255,214,0,0.25);
  color: #FFD600;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 24px;
  width: fit-content;
}
.pdp-h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 5vw, 80px);
  line-height: 0.92;
  color: #FFD600;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.pdp-tagline {
  font-size: 16px;
  color: #aaa;
  margin-bottom: 32px;
  line-height: 1.5;
}
.pdp-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 8px;
}
.pdp-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  color: #fff;
  line-height: 1;
}
.pdp-price-note { font-size: 13px; color: #666; }
.pdp-specs-bullets {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.pdp-spec-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #888;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 5px 12px;
  border-radius: 100px;
}
.pdp-cta-primary {
  display: block;
  background: #1a1a1a;
  color: #FFD600;
  border: 2px solid #FFD600;
  padding: 18px 32px;
  border-radius: 10px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.15s;
  margin-bottom: 12px;
}
.pdp-cta-primary:hover { background: #FFD600; color: #1a1a1a; }
.pdp-cta-secondary {
  display: block;
  color: #888;
  font-size: 13px;
  text-decoration: none;
  text-align: center;
  transition: color 0.15s;
}
.pdp-cta-secondary:hover { color: #FFD600; }

/* Share row */
.pdp-share-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}
.pdp-share-label { font-size: 12px; color: #666; text-transform: uppercase; letter-spacing: 0.08em; }
.pdp-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.15);
  color: #ccc;
  background: rgba(255,255,255,0.05);
  cursor: pointer;
  transition: all 0.15s;
  font-family: 'DM Sans', sans-serif;
}
.pdp-share-btn:hover { border-color: #FFD600; color: #FFD600; }
.pdp-share-btn.copied { color: #4ade80; border-color: #4ade80; }

/* Body copy */
.pdp-body { max-width: 760px; margin: 0 auto; padding: 64px 48px; }
.pdp-body h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: #FFD600;
  letter-spacing: 0.03em;
  margin: 48px 0 16px;
}
.pdp-body h2:first-child { margin-top: 0; }
.pdp-body p { font-size: 16px; line-height: 1.75; color: #bbb; margin-bottom: 16px; }

/* Specs accordion */
.pdp-specs { max-width: 760px; margin: 0 auto; padding: 0 48px 48px; }
.pdp-specs-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  color: #fff;
  letter-spacing: 0.03em;
  margin-bottom: 16px;
}
.pdp-accordion-item { border-bottom: 1px solid rgba(255,255,255,0.1); }
.pdp-accordion-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  background: none;
  border: none;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  text-align: left;
}
.pdp-accordion-toggle:hover { color: #FFD600; }
.pdp-accordion-toggle .chevron { transition: transform 0.2s; font-size: 18px; color: #FFD600; }
.pdp-accordion-toggle.open .chevron { transform: rotate(180deg); }
.pdp-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  font-size: 14px;
  color: #aaa;
  line-height: 1.7;
}
.pdp-accordion-body.open { max-height: 200px; padding-bottom: 16px; }

/* Related mugs strip */
.pdp-related { background: #111; padding: 56px 48px; }
.pdp-related-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px;
  color: #fff;
  letter-spacing: 0.03em;
  text-align: center;
  margin-bottom: 36px;
}
.pdp-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.pdp-related-card {
  background: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
  display: block;
}
.pdp-related-card:hover { transform: translateY(-3px); box-shadow: 0 16px 48px rgba(0,0,0,0.4); }
.pdp-related-img { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; }
.pdp-related-fallback {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #FFD600 50%, #1a1a1a 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  color: #1a1a1a;
  text-align: center;
  padding: 16px;
}
.pdp-related-info { padding: 14px 16px 18px; }
.pdp-related-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 17px;
  color: #fff;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}
.pdp-related-tagline { font-size: 11px; color: #666; }

/* Notify modal */
.notify-modal-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.85); z-index: 1000;
  align-items: center; justify-content: center; padding: 24px;
}
.notify-modal-overlay.open { display: flex; }
.notify-modal {
  background: #1a1a1a; border: 2px solid #FFD600;
  border-radius: 20px; max-width: 440px; width: 100%;
  padding: 36px; position: relative;
}
.notify-modal-close {
  position: absolute; top: 14px; right: 16px;
  background: none; border: none; color: #888;
  font-size: 26px; cursor: pointer; line-height: 1;
}
.notify-modal h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px; color: #FFD600; letter-spacing: 0.03em; margin-bottom: 6px;
}
.notify-modal .notify-product-name { font-size: 14px; color: #aaa; margin-bottom: 20px; }
.notify-form { display: flex; flex-direction: column; gap: 12px; }
.notify-form input[type="email"] {
  width: 100%; padding: 12px 16px; border-radius: 8px;
  border: 2px solid #333; background: #222; color: #fff;
  font-size: 16px; font-family: 'DM Sans', sans-serif; box-sizing: border-box;
}
.notify-form input[type="email"]:focus { outline: none; border-color: #FFD600; }
.notify-submit {
  background: #FFD600; color: #1a1a1a; border: none;
  padding: 14px; border-radius: 8px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px; letter-spacing: 0.05em; cursor: pointer;
  transition: background 0.15s;
}
.notify-submit:hover { background: #fff; }
.notify-submit:disabled { opacity: 0.5; cursor: not-allowed; }
.notify-result { font-size: 13px; text-align: center; margin-top: 4px; }
.notify-result.success { color: #4ade80; }
.notify-result.error { color: #f87171; }

/* Responsive */
@media (max-width: 768px) {
  .pdp-hero { grid-template-columns: 1fr; }
  .pdp-hero-image { min-height: 280px; }
  .pdp-hero-info { padding: 40px 24px; }
  .pdp-body, .pdp-specs { padding-left: 24px; padding-right: 24px; }
  .pdp-related { padding: 40px 24px; }
  .pdp-breadcrumb { padding: 12px 24px; }
}
