/* ===== PRODUCT PAGE ===== */

/* Main product grid */
.prod-main-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: start; }

/* Gallery */
.prod-main-img-wrap { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 16px; background: var(--cream-dark); }
.prod-main-img { width: 100%; height: 420px; object-fit: cover; transition: opacity 0.3s; }
.prod-thumbs { display: flex; gap: 10px; }
.thumb {
  width: 80px; height: 80px; border-radius: var(--radius-md);
  overflow: hidden; border: 2px solid var(--border); cursor: pointer;
  transition: border-color var(--transition); flex-shrink: 0;
}
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb.active { border-color: var(--gold); }
.thumb:hover { border-color: var(--gold-light); }

/* Product info */
.prod-title { font-size: 52px; font-weight: 700; color: var(--dark); line-height: 1; }
.prod-subtitle { font-size: 16px; color: var(--muted); margin-top: 6px; }
.prod-price-row { display: flex; align-items: baseline; gap: 14px; margin: 20px 0; padding: 20px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.prod-price { font-family: 'Outfit', sans-serif; font-size: 48px; font-weight: 800; color: var(--dark); line-height: 1; letter-spacing: -1.5px; }
.prod-price-note { font-size: 13px; color: var(--muted); }

.prod-highlights { display: flex; flex-direction: column; gap: 10px; margin: 20px 0; }
.prod-hl { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--dark-mid); }
.hl-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

.prod-actions { margin-top: 24px; }
.prod-trust-row { display: flex; gap: 20px; margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--border); flex-wrap: wrap; }
.ptr { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--muted); font-weight: 500; }

@media(max-width:900px){ .prod-main-grid { grid-template-columns: 1fr; } }

/* Specs table */
.specs-wrap { max-width: 780px; margin: 0 auto; }
.specs-table { width: 100%; border-collapse: collapse; }
.specs-table tr { border-bottom: 1px solid var(--border); }
.specs-table tr:last-child { border: none; }
.spec-k { padding: 16px 0; font-size: 14px; color: var(--muted); font-weight: 500; width: 38%; }
.spec-v { padding: 16px 0; font-size: 15px; color: var(--dark); font-weight: 600; }

/* Feature blocks */
.feat-section { background: var(--cream); }
.feat-block { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.feat-block.feat-reverse { direction: rtl; }
.feat-block.feat-reverse > * { direction: ltr; }
.feat-img img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.feat-text h3 { font-size: 34px; margin-bottom: 16px; }
.feat-text p { font-size: 15px; color: var(--muted); line-height: 1.8; }
@media(max-width:768px){ .feat-block, .feat-block.feat-reverse { grid-template-columns: 1fr; direction: ltr; gap: 28px; } }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; font-size: 16px; font-weight: 600; color: var(--dark);
  text-align: left; font-family: inherit;
  transition: color var(--transition);
}
.faq-q:hover { color: var(--gold); }
.faq-arrow { font-size: 18px; color: var(--muted); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-arrow { transform: rotate(180deg); color: var(--gold); }
.faq-a {
  max-height: 0; overflow: hidden;
  font-size: 15px; color: var(--muted); line-height: 1.75;
  transition: max-height 0.4s ease, padding 0.3s;
  padding: 0 0 0;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 20px; }

/* CTA bottom */
.prod-cta-section {
  padding: 100px 0; background: var(--dark);
  position: relative; overflow: hidden;
}
.prod-cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(201,146,58,0.12), transparent 60%);
  pointer-events: none;
}
