/* ── PRODUCT PAGE STYLES ── */

.back-link {
  display: inline-block;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 24px;
  transition: color 0.15s;
}
.back-link:hover { color: #fff; }

/* ── PRODUCT HERO ── */
.product-hero {
  background: linear-gradient(135deg, #0d1b4a 0%, #1a2f6e 60%, #1338BE 100%);
  color: white;
  padding: 40px 24px 60px;
}
.product-hero .section-label { color: #7ea8f0; }

.product-intro {
  max-width: 1080px;
  margin: 0 auto;
}

/* ── CONTAINER VISUAL SECTION ── */
.container-visual-section {
  background: #f8f9fc;
  padding: 60px 24px 40px;
  text-align: center;
  border-bottom: 1px solid #e5e7eb;
}
.container-visual-section svg {
  max-width: 560px;
  width: 100%;
  margin: 0 auto 32px;
  display: block;
}
.truck-loads {
  font-size: 1.3rem;
  font-weight: 900;
  color: #0d1b4a;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 8px;
}
.truck-icons { display: flex; gap: 6px; align-items: center; }
.truck-icon svg { width: 38px; height: auto; fill: #1338BE; }

/* ── SPECS + DETAIL ── */
.product-detail-section {
  max-width: 1080px;
  margin: 0 auto;
  padding: 50px 24px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
  align-items: start;
}
@media (max-width: 800px) {
  .product-detail-section { grid-template-columns: 1fr; gap: 40px; }
}

.product-detail-section h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  color: #0d1b4a;
  margin-bottom: 8px;
}
.dims-inline {
  font-size: 1.05rem;
  font-weight: 800;
  color: #1338BE;
  margin-bottom: 20px;
}
.dims-inline span { margin: 0 8px; color: #9ca3af; }
.product-desc {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 24px;
}
.use-list {
  list-style: disc;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}
.use-list li { font-size: 0.95rem; color: #374151; }

.restrictions-note {
  padding: 16px 20px;
  background: #fff3cd;
  border-left: 4px solid #f59e0b;
  border-radius: 6px;
  font-size: 0.88rem;
  color: #78350f;
  line-height: 1.6;
}
.restrictions-note a { color: #1338BE; font-weight: 700; }

.calc-link {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 14px 18px;
  background: #e8eeff;
  color: #1338BE;
  font-weight: 800;
  font-size: 0.9rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.15s;
}
.calc-link:hover { background: #d0dbff; }

/* ── PRICE BOX ── */
.product-price-box {
  background: #0d1b4a;
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  position: sticky;
  top: 88px;
}
.product-price-box .big-price {
  font-size: 3.8rem;
  font-weight: 900;
  color: white;
  line-height: 1;
  margin-bottom: 4px;
}
.product-price-box .price-sub {
  font-size: 0.88rem;
  color: #7ea8f0;
  font-weight: 700;
  margin-bottom: 20px;
}
.price-includes {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.price-includes li {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  gap: 8px;
}
.price-includes li::before { content: "✓"; color: #22c55e; font-weight: 900; }
.book-btn {
  display: block;
  background: #1338BE;
  color: white;
  font-weight: 800;
  font-size: 1rem;
  padding: 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity 0.15s;
  text-align: center;
}
.book-btn:hover { opacity: 0.88; }
.phone-line {
  margin-top: 16px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}
.phone-line a { color: #7ea8f0; text-decoration: none; font-weight: 700; }
