/* =========================================================
   PRODUCT DETAIL PAGE — breadcrumb, galeri foto, info produk,
   spesifikasi, keunggulan, sidebar
   ========================================================= */

.product-page {
  padding-top: 90px;   /* jarak dari header fixed */
}

/* ---------- HERO PRODUK ---------- */

.product-hero {
  max-width: 1000px;
  margin: 0 auto;
  padding: 30px 40px 60px 40px;
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

.product-gallery {
  flex: 1;
}

.product-gallery-main {
  width: 100%;
  height: 360px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.product-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-gallery-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.product-thumb-btn {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  padding: 0;
  cursor: pointer;
  background: none;
}

.product-thumb-btn.active {
  border-color: #052d55;
}

.product-thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-info {
  flex: 1;
}

.product-category-tag {
  display: inline-block;
  font-family: "Asap Sharp", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #052d55;
  background-color: #eef1f6;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.product-title {
  font-family: "Asap Sharp", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #12024D;
  line-height: 1.25;
  margin: 0 0 14px 0;
}

.product-subtitle {
  font-family: "Asap Sharp", sans-serif;
  font-size: 15px;
  color: #4a4a52;
  line-height: 1.6;
  margin: 0 0 22px 0;
}

.product-quick-specs {
  list-style: none;
  margin: 0 0 28px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-quick-specs li {
  font-family: "Asap Sharp", sans-serif;
  font-size: 14px;
  color: #12024D;
  padding-bottom: 10px;
  border-bottom: 1px solid #eef1f6;
}

.product-quick-specs li span {
  display: inline-block;
  width: 100px;
  color: #6b6b75;
  font-weight: 500;
}

.product-cta-group {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
}

.product-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #052d55;
  color: #ffffff;
  font-family: "Asap Sharp", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  padding: 14px 22px;
  border-radius: 30px;
  transition: background-color 0.2s ease;
}

.product-cta-primary:hover {
  background-color: #06386b;
}

.product-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: transparent;
  color: #052d55;
  font-family: "Asap Sharp", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  padding: 14px 22px;
  border: 1px solid #052d55;
  border-radius: 30px;
}

.product-trust-line {
  font-family: "Asap Sharp", sans-serif;
  font-size: 12px;
  color: #6b6b75;
  margin: 0;
}

/* ---------- DETAIL: DESKRIPSI + SPEK + SIDEBAR ---------- */

.product-details {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px 40px 80px 40px;
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

.product-details-main {
  flex: 1.6;
}

.product-section-heading {
  font-family: "Asap Sharp", sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #12024D;
  margin: 36px 0 16px 0;
}

.product-details-main .product-section-heading:first-child {
  margin-top: 0;
}

.product-description {
  font-family: "Asap Sharp", sans-serif;
  font-size: 14px;
  color: #4a4a52;
  line-height: 1.7;
  margin: 0 0 14px 0;
}

.product-spec-table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Asap Sharp", sans-serif;
  font-size: 14px;
}

.product-spec-table tr {
  border-bottom: 1px solid #eef1f6;
}

.product-spec-table th {
  text-align: left;
  padding: 12px 16px 12px 0;
  color: #6b6b75;
  font-weight: 500;
  width: 180px;
  vertical-align: top;
}

.product-spec-table td {
  padding: 12px 0;
  color: #12024D;
  font-weight: 500;
}

.product-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-features li {
  font-family: "Asap Sharp", sans-serif;
  font-size: 14px;
  color: #12024D;
  font-weight: 500;
}

.product-sidebar {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 90px;
}

.product-sidebar-card {
  background-color: #f7f8fa;
  border: 1px solid #eef1f6;
  border-radius: 12px;
  padding: 24px;
}

.product-sidebar-title {
  font-family: "Asap Sharp", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #12024D;
  margin: 0 0 8px 0;
}

.product-sidebar-text {
  font-family: "Asap Sharp", sans-serif;
  font-size: 13px;
  color: #4a4a52;
  line-height: 1.6;
  margin: 0 0 16px 0;
}

.product-sidebar-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #052d55;
  color: #ffffff;
  font-family: "Asap Sharp", sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 30px;
}

.product-sidebar-related {
  display: flex;
  flex-direction: column;
}

.product-related-link {
  font-family: "Asap Sharp", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #052d55;
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid #eef1f6;
}

.product-related-link:last-child {
  border-bottom: none;
}

.product-related-link:hover {
  text-decoration: underline;
}
