.product-hero {
  max-width: 1175px;
  margin: 72px auto 32px;
  padding: 36px 32px;
  background: var(--surface);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(31, 27, 44, 0.08);
}

.product-hero .lead {
  margin: 12px 0 18px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.product-hero__cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
  color: var(--text);
}

.product-hero__cta .cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 12px;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(122, 80, 154, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(122, 80, 154, 0.3);
  background: var(--primary-dark);
}

.cta-pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--bg-soft);
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
}

.product-section {
  max-width: 1200px;
  margin: 0 auto 96px;
  padding: 0 12px;
}

.product-section__header {
  text-align: left;
  margin: 24px 0 12px;
}

.product-section__header h2 {
  margin: 0;
}

.product-section__header p {
  margin: 10px 0 0;
  color: var(--muted);
  max-width: 780px;
  line-height: 1.6;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 20px;
}

.product-card {
  background: var(--surface);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(31, 27, 44, 0.05);
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
  border: 1px solid rgba(122, 80, 154, 0.08);
}

.product-card__meta {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
}

.product-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  background: rgba(122, 80, 154, 0.12);
  color: var(--text);
}

.product-card h3 {
  margin: 2px 0;
  font-size: 1.05rem;
}

.product-desc {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  flex: 1;
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(122, 80, 154, 0.12);
  padding-top: 10px;
}

.product-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: var(--bg-soft);
  border-radius: 12px;
  font-weight: 600;
  color: var(--text);
}

.contact-tag i {
  width: 18px;
  height: 18px;
}

.product-cta {
  color: var(--primary);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.product-cta:hover {
  text-decoration: underline;
}

.product-thumb {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  max-height: 200px;
}

.product-detail {
  max-width: 1200px;
  margin: 64px auto 120px;
  padding: 0 16px;
}

.product-detail__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 28px;
  align-items: start;
}

.product-media {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.product-cover {
  width: 100%;
  max-width: 730px;
  height: 550px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(31, 27, 44, 0.08);
  object-fit: contain;
  background: #ffffff;
  border: 1px solid rgba(122, 80, 154, 0.08);
  margin: 0 auto;
}

.product-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.product-gallery img {
  width: 110px;
  height: 80px;
  flex: 0 0 110px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 18px rgba(31, 27, 44, 0.05);
  cursor: pointer;
  border: 2px solid transparent;
}

.product-gallery img:hover {
  border-color: rgba(122, 80, 154, 0.35);
}

.product-gallery img.active {
  border-color: rgba(122, 80, 154, 0.6);
}

.product-main {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.product-detail__header h1 {
  margin: 8px 0;
}

.product-detail__header .lead {
  color: var(--muted);
  line-height: 1.6;
}

.product-content {
  background: var(--surface);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(31, 27, 44, 0.06);
  line-height: 1.7;
  color: var(--text);
}

.product-detail__cta {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

@media (max-width: 992px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .product-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

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

  .product-cover {
    max-height: 340px;
  }
}

@media (max-width: 768px) {
  .product-hero {
    margin: 56px 12px 28px;
    padding: 28px 22px;
  }

  .product-section {
    margin-bottom: 72px;
  }

  .product-detail {
    margin-top: 48px;
    margin-bottom: 80px;
  }

  .product-detail__grid {
    gap: 20px;
  }

  .product-cover {
    max-height: 260px;
  }
}

