/* Product page specific styles — all shared classes against style.css base */

/* ════════════════════════════════════════
   HERO MINI (short page heroes)
════════════════════════════════════════ */
.page-hero {
  background: var(--steel);
  padding: 72px 28px 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201,96,48,.18), transparent 60%);
  pointer-events: none;
}
.page-hero-inner {
  max-width: 1280px;
  margin: auto;
  position: relative;
  z-index: 1;
}
.page-hero-inner .eyebrow { color: var(--accent-2); }
.page-hero-inner .eyebrow::before { background: var(--accent-2); }
.page-hero-inner h1 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  color: var(--white);
  margin-top: 14px;
  padding-bottom: .12em;
  max-width: 680px;
  line-height: 1.12;
}
.page-hero-inner .lead {
  color: rgba(255,255,255,.68);
  max-width: 560px;
  margin-top: 16px;
  line-height: 1.72;
  font-size: 1.02rem;
}
.breadcrumb {
  display: flex;
  gap: 6px;
  align-items: center;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 18px;
}
.breadcrumb a { color: rgba(255,255,255,.45); transition: color .18s; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb-sep { color: rgba(255,255,255,.25); }

/* ════════════════════════════════════════
   PRODUCT INTRO
════════════════════════════════════════ */
.prod-intro {
  padding: 80px 28px;
  background: var(--white);
}
.prod-intro-inner {
  max-width: 1280px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.prod-intro-copy h2 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  margin-top: 12px;
  padding-bottom: .1em;
}
.prod-intro-copy p { margin-top: 14px; color: var(--ink-3); line-height: 1.78; }
.prod-intro-copy .btn { margin-top: 26px; }

.prod-intro-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

/* ════════════════════════════════════════
   FEATURES SECTION
════════════════════════════════════════ */
.features-section {
  background: var(--off);
  padding: 80px 28px;
}
.features-inner { max-width: 1280px; margin: auto; }
.features-inner h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  margin-top: 12px;
  margin-bottom: 44px;
  padding-bottom: .1em;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-item {
  padding: 28px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  transition: box-shadow .3s var(--ease);
}
.feature-item:hover { box-shadow: var(--shadow); }
.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-light);
  border-radius: 10px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}
.feature-icon svg { width: 20px; height: 20px; fill: var(--accent); }
.feature-item h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}
.feature-item p { margin-top: 8px; font-size: .84rem; color: var(--ink-3); line-height: 1.66; }

/* ════════════════════════════════════════
   GALLERY
════════════════════════════════════════ */
.gallery-section {
  padding: 80px 28px;
  background: var(--white);
}
.gallery-inner { max-width: 1280px; margin: auto; }
.gallery-inner h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  margin-top: 12px;
  margin-bottom: 36px;
  padding-bottom: .1em;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.gallery-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform .4s var(--ease), box-shadow .3s;
}
.gallery-grid img:first-child {
  grid-column: span 2;
  aspect-ratio: 16/9;
}
.gallery-grid img:nth-child(4) { grid-column: span 2; aspect-ratio: 16/9; }
.gallery-grid img:hover { transform: scale(1.02); box-shadow: var(--shadow); }

/* ════════════════════════════════════════
   CTA STRIP
════════════════════════════════════════ */
.cta-strip {
  background: var(--accent);
  padding: 64px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='20' cy='20' r='2'/%3E%3C/g%3E%3C/svg%3E");
}
.cta-strip-inner { max-width: 680px; margin: auto; position: relative; z-index: 1; }
.cta-strip h2 {
  color: var(--white);
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  padding-bottom: .1em;
}
.cta-strip p { color: rgba(255,255,255,.82); margin-top: 14px; line-height: 1.7; font-size: 1rem; }
.cta-strip .btn-ghost {
  margin-top: 28px;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.cta-strip .btn-ghost:hover { background: rgba(255,255,255,.12); border-color: var(--white); }

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 900px) {
  .prod-intro-inner { grid-template-columns: 1fr; gap: 40px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid img:first-child, .gallery-grid img:nth-child(4) { grid-column: span 2; }
}
@media (max-width: 560px) {
  .features-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid img:first-child, .gallery-grid img:nth-child(4) { grid-column: span 1; aspect-ratio: 4/3; }
  .page-hero { padding: 48px 16px 56px; }
}
