/* informasiProduk.css — Exspostar Product Detail */

/* ===== HERO ===== */
.produk-hero {
  position: relative;
  min-height: 100vh;
  padding: 120px 40px 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 30% 50%, rgba(46, 28, 14, 0.9) 0%, var(--wood-deepest) 70%), linear-gradient(160deg, var(--wood-deep) 0%, var(--charcoal-dark) 60%, var(--wood-deepest) 100%);
  z-index: 0;
}

.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
  z-index: 0;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 48px;
  font-family: 'Shippori Mincho', serif;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.breadcrumb a {
  color: rgba(200, 146, 42, 0.5);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb a:hover {
  color: #d4af37;
}

.breadcrumb i {
  font-size: 8px;
  color: rgba(200, 146, 42, 0.25);
}

.breadcrumb span {
  color: rgba(232, 220, 200, 0.3);
}

.breadcrumb .current {
  color: rgba(200, 146, 42, 0.7);
}

/* ===== HERO CONTENT ===== */
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* ===== VISUAL / GAMBAR ===== */
.produk-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.visual-frame {
  position: relative;
  flex: 1;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 2px;
  border: 1px solid rgba(200, 146, 42, 0.1);
}

.produk-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.produk-img:hover {
  transform: scale(1.03);
}

.produk-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 16, 8, 0.6);
  font-size: 64px;
  color: rgba(200, 146, 42, 0.15);
}

.visual-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 80%, rgba(200, 146, 42, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* Corner decorations pada visual */
.v-corner {
  position: absolute;
  width: 20px;
  height: 20px;
  pointer-events: none;
}

.vtl {
  top: -8px;
  left: -8px;
  border-top: 1px solid rgba(200, 146, 42, 0.3);
  border-left: 1px solid rgba(200, 146, 42, 0.3);
}
.vtr {
  top: -8px;
  right: -8px;
  border-top: 1px solid rgba(200, 146, 42, 0.3);
  border-right: 1px solid rgba(200, 146, 42, 0.3);
}
.vbl {
  bottom: -8px;
  left: -8px;
  border-bottom: 1px solid rgba(200, 146, 42, 0.3);
  border-left: 1px solid rgba(200, 146, 42, 0.3);
}
.vbr {
  bottom: -8px;
  right: -8px;
  border-bottom: 1px solid rgba(200, 146, 42, 0.3);
  border-right: 1px solid rgba(200, 146, 42, 0.3);
}

/* ===== PRODUK INFO ===== */
.produk-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 10px;
}

.produk-kategori {
  font-family: 'Shippori Mincho', serif;
  font-size: 9px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(200, 146, 42, 0.5);
}

.produk-nama {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  color: #c8a96e;
  letter-spacing: 2px;
  line-height: 1.1;
  margin: 0;
}

.info-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  justify-content: center;
}

.info-divider .divider-line {
  flex: 1;
}

.info-divider .divider-line {
  flex: 1;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(200, 146, 42, 0.2), transparent);
}

.divider-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(200, 146, 42, 0.4);
  flex-shrink: 0;
}

.produk-desc {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(232, 220, 200, 0.5);
  letter-spacing: 0.3px;
}

/* ===== META INFO ===== */
.produk-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 24px;
  background: rgba(10, 6, 2, 0.4);
  border: 1px solid rgba(200, 146, 42, 0.08);
  border-radius: 2px;
}

.meta-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.meta-label {
  font-family: 'Shippori Mincho', serif;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(200, 146, 42, 0.4);
}

.meta-value {
  font-size: 13px;
  color: rgba(232, 220, 200, 0.7);
  letter-spacing: 0.5px;
}

.meta-value.price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: #d4af37;
  font-weight: 500;
}

.meta-value.price small {
  font-size: 12px;
  color: rgba(200, 146, 42, 0.5);
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
}

.meta-value.in-stock {
  color: #55c580;
}
.meta-value.out-stock {
  color: #e05555;
}

/* ===== ALERT ===== */
.cart-alert {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 2px;
  font-size: 13px;
  letter-spacing: 0.3px;
}

.cart-alert--success {
  background: rgba(80, 180, 80, 0.08);
  border: 1px solid rgba(80, 180, 80, 0.25);
  color: rgba(140, 220, 140, 0.9);
}

.cart-alert--error {
  background: rgba(220, 80, 80, 0.08);
  border: 1px solid rgba(220, 80, 80, 0.25);
  color: rgba(240, 160, 160, 0.9);
}

/* ===== CART FORM ===== */
.cart-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row-produk {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-lbl {
  font-family: 'Shippori Mincho', serif;
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(200, 146, 42, 0.45);
}

.form-sel {
  padding: 10px 32px 12px 14px;
  background: rgba(10, 6, 2, 0.55);
  border: 1px solid rgba(200, 146, 42, 0.14);
  border-radius: 2px;
  color: #e8d5b0;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  line-height: 1.5;
  outline: none;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='rgba(200,146,42,0.4)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  transition: border-color 0.3s ease;
}

.form-sel:focus {
  border-color: rgba(200, 146, 42, 0.4);
}
.form-sel option {
  background: #1a1008;
}

/* Qty */
.qty-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.qty-wrap {
  display: flex;
  align-items: center;
  gap: 0;
  width: fit-content;
  border: 1px solid rgba(200, 146, 42, 0.14);
  border-radius: 2px;
  overflow: hidden;
}

.qty-btn {
  width: 38px;
  height: 38px;
  background: rgba(10, 6, 2, 0.5);
  border: none;
  color: rgba(200, 146, 42, 0.6);
  font-size: 18px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.qty-btn:hover {
  background: rgba(200, 146, 42, 0.1);
  color: #d4af37;
}

.qty-input {
  width: 80px;
  height: 38px;
  background: rgba(10, 6, 2, 0.4);
  border: none;
  border-left: 1px solid rgba(200, 146, 42, 0.1);
  border-right: 1px solid rgba(200, 146, 42, 0.1);
  color: #e8d5b0;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  text-align: center;
  outline: none;
  -moz-appearance: textfield;
  appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

/* Buttons */
.cart-actions {
  display: flex;
  gap: 12px;
}

.btn-addcart {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  background: linear-gradient(135deg, #c8922a, #d4af37);
  color: #1a1008;
  border: none;
  border-radius: 2px;
  font-family: 'Shippori Mincho', serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1;
  justify-content: center;
}

.btn-addcart:hover {
  background: linear-gradient(135deg, #d4af37, #e8c97a);
  box-shadow: 0 4px 20px rgba(200, 146, 42, 0.2);
}

.btn-checkout {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 24px;
  background: transparent;
  border: 1px solid rgba(200, 146, 42, 0.3);
  border-radius: 2px;
  color: rgba(200, 146, 42, 0.7);
  text-decoration: none;
  font-family: 'Shippori Mincho', serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  justify-content: center;
}

.btn-checkout:hover {
  background: rgba(200, 146, 42, 0.08);
  border-color: rgba(200, 146, 42, 0.6);
  color: #d4af37;
}

/* Out of stock */
.out-of-stock-msg {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: rgba(220, 80, 80, 0.06);
  border: 1px solid rgba(220, 80, 80, 0.15);
  border-radius: 2px;
  color: rgba(220, 130, 130, 0.7);
  font-size: 13px;
  letter-spacing: 0.5px;
}

/* Ekspor info badges */
.ekspor-info {
  display: flex;
  gap: 20px;
  padding-top: 8px;
  flex-wrap: wrap;
}

.ekspor-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: 'Shippori Mincho', serif;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(200, 146, 42, 0.35);
}

.ekspor-item i {
  font-size: 11px;
  color: rgba(200, 146, 42, 0.4);
}

/* ===== OTHER PRODUCTS ===== */
.other-products {
  padding: 80px 20px;
  background: linear-gradient(180deg, var(--wood-deepest) 0%, var(--wood-deep) 50%, var(--wood-deepest) 100%);
  border-top: 1px solid rgba(200, 146, 42, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

.other-products-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.other-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 48px;
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.other-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  font-weight: 400;
  color: rgba(200, 146, 42, 0.5);
  letter-spacing: 8px;
  text-transform: uppercase;
  white-space: nowrap;
}

.other-header .divider-line {
  background: linear-gradient(to right, transparent, rgba(200, 146, 42, 0.15), transparent);
}

.other-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 220px));
  gap: 4px;
  width: min(900px, 100%);
  margin: 0 auto;
  justify-content: center;
}
.other-products {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.other-card {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  max-height: 260px;
  overflow: hidden;
  border-radius: 2px;
  border: 1px solid rgba(200, 146, 42, 0.1);
  background: linear-gradient(145deg, #1a1008, #2a1a0a, #1c1c1c);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: all 0.35s ease;
}
.other-card:hover {
  border-color: rgba(200, 146, 42, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.other-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(70%) saturate(80%);
  transition:
    transform 0.5s ease,
    filter 0.4s ease;
}

.other-card:hover img {
  transform: scale(1.06);
  filter: brightness(85%) saturate(90%);
}

.other-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 70%;
  background: linear-gradient(to top, rgba(12, 6, 2, 0.97) 0%, rgba(12, 6, 2, 0.3) 60%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.other-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #1a1008, #2a1a0a);
  font-size: 36px;
  color: rgba(200, 146, 42, 0.12);
}

.other-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  z-index: 2;
}

.other-kategori {
  font-family: 'Shippori Mincho', serif;
  font-size: 8px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(200, 146, 42, 0.55);
}

.other-nama {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 300;
  color: #e8d5b0;
  letter-spacing: 1px;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .other-products {
    padding: 60px 20px;
  }
  .other-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .other-nama {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .other-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .other-card {
    max-height: 200px;
  }
}

/* ===== FOOTER (sama seperti index) ===== */
footer {
  background: var(--wood-deepest);
  border-top: 1px solid rgba(200, 146, 42, 0.06);
  text-align: center;
  padding: 48px 20px 36px;
}

.footer-logo {
  font-family: 'Great Vibes', cursive;
  font-size: 36px;
  color: #d4af37;
  margin-bottom: 4px;
}

.footer-tagline {
  font-family: 'Shippori Mincho', serif;
  font-size: 9px;
  letter-spacing: 8px;
  color: rgba(200, 146, 42, 0.3);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 20px;
}

.footer-links a {
  font-family: 'Shippori Mincho', serif;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(232, 220, 200, 0.25);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: rgba(200, 146, 42, 0.6);
}

.footer-copy {
  font-size: 11px;
  color: rgba(232, 220, 200, 0.12);
  letter-spacing: 1px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .produk-hero {
    padding: 100px 20px 60px;
    overflow-x: hidden;
  }

  .hero-inner {
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    width: 100%;
    box-sizing: border-box;
  }

  .produk-visual,
  .produk-info {
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }

  /* === GALLERY: strip pindah ke BAWAH foto utama === */
  .visual-main-wrap {
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
  }

  .visual-frame {
    order: 1;
    width: 100%;
    box-sizing: border-box;
    aspect-ratio: 4/3;
  }

  .gallery-strip {
    order: 2;
    flex-direction: row;
    overflow-x: auto;
    gap: 6px;
    width: 100%;
    scrollbar-width: none;
  }

  .gallery-strip::-webkit-scrollbar {
    display: none;
  }

  .gallery-thumb {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
  }

  /* === NAMA PRODUK === */
  .produk-nama {
    font-size: 36px;
  }

  /* === TABS: bisa scroll horizontal, tidak terpotong === */
  .produk-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    box-sizing: border-box;
    scrollbar-width: none;
  }

  .produk-tabs::-webkit-scrollbar {
    display: none;
  }

  .produk-tab-btn {
    flex-shrink: 0;
    padding: 10px 10px;
    font-size: 8px;
    letter-spacing: 1px;
  }

  /* === TECH SPEC TABLE === */
  .techspec-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    box-sizing: border-box;
  }

  /* === COMPLIANCE ROW: 2 baris (2+1) === */
  .compliance-row {
    flex-wrap: wrap;
    width: 100%;
    box-sizing: border-box;
  }

  .compliance-item {
    flex: 0 0 50%;
    box-sizing: border-box;
    border-right: none;
    border-bottom: 1px solid rgba(200, 146, 42, 0.06);
    padding: 14px 8px;
  }

  .compliance-item:nth-child(1) {
    border-right: 1px solid rgba(200, 146, 42, 0.06);
  }

  .compliance-item:nth-child(3) {
    flex: 0 0 100%;
    border-right: none;
    border-bottom: none;
  }

  /* === INQUIRY / REQUEST QUOTE FORM === */
  .inquiry-block {
    width: 100%;
    box-sizing: border-box;
    padding: 16px 14px;
    overflow: hidden;
  }

  .inquiry-form {
    width: 100%;
    box-sizing: border-box;
  }

  .inq-row {
    grid-template-columns: 1fr;
    width: 100%;
    box-sizing: border-box;
  }

  .form-field {
    width: 100%;
    box-sizing: border-box;
  }

  .form-sel,
  .form-input-text,
  .form-textarea {
    width: 100%;
    box-sizing: border-box;
  }

  .qty-wrap {
    width: 100%;
    box-sizing: border-box;
  }

  .qty-input {
    flex: 1;
    width: auto;
  }

  .payment-method-group {
    grid-template-columns: repeat(2, 1fr) !important;
    width: 100%;
    box-sizing: border-box;
  }

  .btn-inquiry,
  .btn-addcart {
    width: 100%;
    box-sizing: border-box;
  }

  .inq-actions {
    flex-direction: column;
  }

  /* === OTHER PRODUCTS === */
  .other-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .other-products {
    padding: 60px 20px;
  }
}

@media (max-width: 500px) {
  .produk-nama {
    font-size: 28px;
  }

  .cart-actions {
    flex-direction: column;
  }

  .form-row-produk {
    grid-template-columns: 1fr;
  }

  .inq-row {
    grid-template-columns: 1fr;
  }

  .inquiry-block {
    padding: 14px 12px;
    box-sizing: border-box;
    width: 100%;
  }

  /* spec grid 1 kolom di HP kecil */
  .spec-grid {
    grid-template-columns: 1fr;
  }

  .spec-item:nth-child(odd) {
    border-right: none;
    padding-right: 0;
  }

  .spec-item:nth-child(even) {
    padding-left: 0;
  }

  /* compliance semua full width di HP kecil */
  .compliance-item {
    flex: 0 0 100%;
    border-right: none !important;
  }

  .compliance-item:nth-child(1) {
    border-right: none !important;
  }

  .other-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .ekspor-info {
    gap: 14px;
  }

  /* payment cards 2 kolom tetap */
  .payment-method-group {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
/* Login required message */
.login-required-msg {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: rgba(200, 146, 42, 0.06);
  border: 1px solid rgba(200, 146, 42, 0.2);
  border-radius: 2px;
  font-size: 13px;
  color: rgba(200, 146, 42, 0.7);
  letter-spacing: 0.3px;
}

.login-required-msg i {
  font-size: 14px;
  color: rgba(200, 146, 42, 0.5);
}

.login-required-msg a {
  color: #d4af37;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.login-required-msg a:hover {
  color: #e8c97a;
}
.breadcrumb-link {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
  cursor: pointer;
}
.breadcrumb-link:hover {
  color: var(--amber-light);
}
.jp-card-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.jp-meta-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Shippori Mincho', serif;
  font-size: 10px;
  letter-spacing: 1px;
  color: rgba(200, 146, 42, 0.4);
}
.jp-meta-row i {
  font-size: 10px;
  color: rgba(200, 146, 42, 0.35);
  width: 12px;
  flex-shrink: 0;
}
.jp-meta-row span {
  color: rgba(232, 220, 200, 0.5);
}

.jp-stock-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #55c580;
  flex-shrink: 0;
}
.jp-stock-dot.out {
  background: #e05555;
}
/* ===== EXPORT BADGES ===== */
.export-badges {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.exp-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  background: rgba(10, 6, 2, 0.5);
  border: 1px solid rgba(200, 146, 42, 0.12);
  border-radius: 1px;
  font-family: 'Shippori Mincho', serif;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(200, 146, 42, 0.5);
}
.exp-badge i {
  font-size: 10px;
  color: rgba(200, 146, 42, 0.45);
}

/* ===== SPEC BLOCK ===== */
.spec-block {
  background: rgba(10, 6, 2, 0.4);
  border: 1px solid rgba(200, 146, 42, 0.08);
  border-radius: 2px;
  padding: 20px 22px;
}
.spec-block-title {
  font-family: 'Shippori Mincho', serif;
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(200, 146, 42, 0.5);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.spec-block-title i {
  font-size: 11px;
}

.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.spec-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(200, 146, 42, 0.05);
}
.spec-item:nth-child(odd) {
  padding-right: 16px;
  border-right: 1px solid rgba(200, 146, 42, 0.05);
}
.spec-item:nth-child(even) {
  padding-left: 16px;
}
.spec-label {
  font-family: 'Shippori Mincho', serif;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(200, 146, 42, 0.35);
}
.spec-value {
  font-size: 13px;
  color: rgba(232, 220, 200, 0.75);
  letter-spacing: 0.3px;
}
.spec-value.in-stock {
  color: #55c580;
}
.spec-value.out-stock {
  color: #e05555;
}

/* ===== PACKAGING LIST ===== */
.packaging-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.pkg-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.pkg-item > i {
  color: rgba(200, 146, 42, 0.45);
  font-size: 10px;
  margin-top: 4px;
  flex-shrink: 0;
}
.pkg-name {
  display: block;
  font-size: 13px;
  color: rgba(232, 220, 200, 0.7);
  letter-spacing: 0.3px;
}
.pkg-sub {
  display: block;
  font-family: 'Shippori Mincho', serif;
  font-size: 10px;
  letter-spacing: 1px;
  color: rgba(200, 146, 42, 0.3);
  margin-top: 2px;
}

/* ===== COMPLIANCE ROW ===== */
.compliance-row {
  display: flex;
  gap: 0;
  border: 1px solid rgba(200, 146, 42, 0.08);
  border-radius: 2px;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}
.compliance-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 18px 12px;
  background: rgba(10, 6, 2, 0.35);
  border-right: 1px solid rgba(200, 146, 42, 0.06);
}
.compliance-item:last-child {
  border-right: none;
}
.compliance-item > i {
  font-size: 18px;
  color: rgba(200, 146, 42, 0.35);
}
.comp-title {
  display: block;
  font-family: 'Shippori Mincho', serif;
  font-size: 10px;
  letter-spacing: 1px;
  color: rgba(232, 220, 200, 0.6);
  text-transform: uppercase;
}
.comp-sub {
  display: block;
  font-size: 11px;
  color: rgba(200, 146, 42, 0.35);
  margin-top: 3px;
  font-family: 'Shippori Mincho', serif;
  letter-spacing: 0.5px;
}

/* ===== INQUIRY BLOCK ===== */
.inquiry-block {
  background: rgba(10, 6, 2, 0.4);
  border: 1px solid rgba(200, 146, 42, 0.08);
  border-radius: 2px;
  padding: 20px 22px;
}
.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.inq-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-input-text {
  width: 100%;
  padding: 10px 14px;
  background: rgba(10, 6, 2, 0.55);
  border: 1px solid rgba(200, 146, 42, 0.14);
  border-radius: 2px;
  color: #e8d5b0;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
}
.form-input-text:focus {
  border-color: rgba(200, 146, 42, 0.4);
}
.form-input-text.input-error {
  border-color: rgba(220, 80, 80, 0.5);
}
.form-input-text.input-error:focus {
  border-color: rgba(220, 80, 80, 0.7);
}
.form-input-text::placeholder {
  color: rgba(232, 220, 200, 0.2);
}

.form-textarea {
  width: 100%;
  padding: 10px 14px;
  background: rgba(10, 6, 2, 0.55);
  border: 1px solid rgba(200, 146, 42, 0.14);
  border-radius: 2px;
  color: #e8d5b0;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  outline: none;
  resize: vertical;
  min-height: 80px;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
}
.form-textarea:focus {
  border-color: rgba(200, 146, 42, 0.4);
}
.form-textarea::placeholder {
  color: rgba(232, 220, 200, 0.2);
}

.btn-inquiry {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 28px;
  background: linear-gradient(135deg, #c8922a, #d4af37);
  color: #1a1008;
  border: none;
  border-radius: 2px;
  font-family: 'Shippori Mincho', serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}
.btn-inquiry:hover {
  background: linear-gradient(135deg, #d4af37, #e8c97a);
  box-shadow: 0 4px 20px rgba(200, 146, 42, 0.2);
}
.btn-inquiry--login {
  background: transparent;
  border: 1px solid rgba(200, 146, 42, 0.3);
  color: rgba(200, 146, 42, 0.65);
}
.btn-inquiry--login:hover {
  background: rgba(200, 146, 42, 0.08);
  border-color: rgba(200, 146, 42, 0.5);
  color: #d4af37;
  box-shadow: none;
}
/* ===== GALLERY ===== */
.visual-main-wrap {
  display: flex;
  gap: 10px;
  width: 100%;
}

.gallery-strip {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
}

.gallery-thumb {
  width: 64px;
  height: 64px;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid rgba(200, 146, 42, 0.1);
  cursor: pointer;
  transition: border-color 0.2s ease;
  flex-shrink: 0;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-thumb:hover {
  border-color: rgba(200, 146, 42, 0.35);
}

.gallery-thumb:hover img {
  transform: scale(1.08);
}

.gallery-thumb.active {
  border-color: rgba(200, 146, 42, 0.7);
  box-shadow: 0 0 8px rgba(200, 146, 42, 0.15);
}

.visual-frame {
  flex: 1;
}

/* ===== DETAIL BLOCK ===== */
.produk-detail-block {
  width: 100%;
  margin-top: 8px;
  background: rgba(10, 6, 2, 0.4);
  border: 1px solid rgba(200, 146, 42, 0.08);
  border-radius: 2px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.detail-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.detail-row > i {
  font-size: 12px;
  color: rgba(200, 146, 42, 0.4);
  margin-top: 3px;
  flex-shrink: 0;
  width: 14px;
}

.detail-row div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.detail-label {
  font-family: 'Shippori Mincho', serif;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(200, 146, 42, 0.35);
}

.detail-val {
  font-size: 13px;
  color: rgba(232, 220, 200, 0.65);
  line-height: 1.7;
  letter-spacing: 0.2px;
}
/* ===== PRODUK TABS ===== */
.produk-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid rgba(200, 146, 42, 0.1);
  margin-top: 16px;
  width: 100%;
  flex-wrap: wrap;
}

.produk-tab-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 14px;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  color: rgba(232, 220, 200, 0.3);
  font-family: 'Shippori Mincho', serif;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: -1px;
  white-space: nowrap;
}

.produk-tab-btn i {
  font-size: 10px;
}

.produk-tab-btn:hover {
  color: rgba(200, 146, 42, 0.7);
}

.produk-tab-btn.active {
  color: #d4af37;
  border-bottom-color: #d4af37;
}

.produk-tab-content {
  display: none;
}

.produk-tab-content.active {
  display: block;
  animation: tabFadeIn 0.3s ease;
}

@keyframes tabFadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== TECH SPEC TABLE ===== */
.techspec-table-wrap {
  overflow-x: auto;
  border-radius: 2px;
  border: 1px solid rgba(200, 146, 42, 0.08);
  margin-top: 12px;
  width: 100%;
}

.techspec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.techspec-table thead {
  background: rgba(42, 26, 10, 0.6);
}

.techspec-table th {
  padding: 11px 18px;
  text-align: left;
  font-family: 'Shippori Mincho', serif;
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(200, 146, 42, 0.5);
  font-weight: 400;
  white-space: nowrap;
}

.techspec-table td {
  padding: 12px 18px;
  border-top: 1px solid rgba(200, 146, 42, 0.06);
  color: rgba(232, 220, 200, 0.7);
  vertical-align: middle;
}

.techspec-table tbody tr {
  background: rgba(26, 16, 8, 0.4);
  transition: background 0.2s ease;
}

.techspec-table tbody tr:hover {
  background: rgba(42, 26, 10, 0.6);
}

.techspec-table td:first-child {
  font-family: 'Shippori Mincho', serif;
  font-size: 11px;
  letter-spacing: 1px;
  color: rgba(200, 146, 42, 0.7);
  white-space: nowrap;
  width: 45%;
}
/* ===== ADD TO CART BUTTON ===== */
.inq-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.inq-actions .btn-inquiry {
  flex: 1;
}

.btn-addcart {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  background: transparent;
  border: 1px solid rgba(200, 146, 42, 0.35);
  color: rgba(200, 146, 42, 0.8);
  font-family: 'Shippori Mincho', serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-addcart:hover:not(:disabled) {
  background: rgba(200, 146, 42, 0.1);
  border-color: rgba(200, 146, 42, 0.6);
  color: #d4af37;
}

.btn-addcart:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
  -webkit-text-fill-color: #e8d5b0;
  -webkit-box-shadow: 0 0 0px 1000px rgba(10, 6, 2, 0.9) inset;
  transition: background-color 5000s ease-in-out 0s;
}
/* ===== PAYMENT METHOD GROUP ===== */
.payment-method-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.pm-option {
  flex: 1;
  min-width: 100px;
  cursor: pointer;
}

.pm-option input[type='radio'] {
  display: none;
}

.pm-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 10px;
  border: 1px solid rgba(200, 146, 42, 0.15);
  border-radius: 2px;
  background: rgba(10, 6, 2, 0.4);
  transition: all 0.25s ease;
  text-align: center;
}

.pm-card i {
  font-size: 18px;
  color: rgba(200, 146, 42, 0.4);
  transition: color 0.25s ease;
}

.pm-name {
  font-family: 'Shippori Mincho', serif;
  font-size: 11px;
  letter-spacing: 2px;
  color: rgba(232, 220, 200, 0.6);
  font-weight: 600;
}

.pm-desc {
  font-family: 'Shippori Mincho', serif;
  font-size: 9px;
  letter-spacing: 1px;
  color: rgba(200, 146, 42, 0.3);
}

.pm-option input[type='radio']:checked + .pm-card {
  border-color: rgba(200, 146, 42, 0.5);
  background: rgba(200, 146, 42, 0.08);
}

.pm-option input[type='radio']:checked + .pm-card i {
  color: #d4af37;
}

.pm-option input[type='radio']:checked + .pm-card .pm-name {
  color: #e8d5b0;
}

.pm-option:hover .pm-card {
  border-color: rgba(200, 146, 42, 0.3);
  background: rgba(200, 146, 42, 0.05);
}

/* ===== MOBILE-ONLY FIXES (max-width: 768px) ===== */
@media (max-width: 768px) {

  /* === HERO PADDING === */
  .produk-hero {
    padding: 90px 16px 60px;
    overflow-x: hidden;
  }

  .hero-inner {
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }

  /* === LAYOUT: 1 kolom === */
  .hero-content {
    grid-template-columns: 1fr;
    gap: 28px;
    width: 100%;
    box-sizing: border-box;
  }

  .produk-visual,
  .produk-info {
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }

  /* === GALLERY: strip pindah ke BAWAH foto utama === */
  .visual-main-wrap {
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
    gap: 8px;
  }

  .visual-frame {
    order: 1;
    width: 100%;
    box-sizing: border-box;
    aspect-ratio: 4/3;
    flex: none;
  }

  .gallery-strip {
    order: 2;
    flex-direction: row;
    overflow-x: auto;
    gap: 6px;
    width: 100%;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .gallery-strip::-webkit-scrollbar {
    display: none;
  }

  .gallery-thumb {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
  }

  /* === NAMA PRODUK === */
  .produk-nama {
    font-size: 32px;
  }

  /* === DIVIDER DOT: tengah === */
  .info-divider {
    justify-content: center;
    width: 100%;
  }

  /* === TABS: scroll horizontal, tidak terpotong === */
  .produk-tabs {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    box-sizing: border-box;
    scrollbar-width: none;
    border-bottom: 1px solid rgba(200, 146, 42, 0.1);
  }

  .produk-tabs::-webkit-scrollbar {
    display: none;
  }

  .produk-tab-btn {
    flex-shrink: 0;
    padding: 10px 12px;
    font-size: 8px;
    letter-spacing: 1px;
    white-space: nowrap;
  }

  /* === TAB CONTENT & TABLE === */
  .produk-tab-content {
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }

  .techspec-table-wrap {
    width: 100%;
    box-sizing: border-box;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .techspec-table {
    min-width: 280px;
  }

  /* === COMPLIANCE ROW: 2 baris (2+1) === */
  .compliance-row {
    flex-wrap: wrap;
    width: 100%;
    box-sizing: border-box;
  }

  .compliance-item {
    flex: 0 0 50%;
    box-sizing: border-box;
    border-right: none;
    border-bottom: 1px solid rgba(200, 146, 42, 0.06);
    padding: 14px 8px;
  }

  .compliance-item:nth-child(1) {
    border-right: 1px solid rgba(200, 146, 42, 0.06);
  }

  .compliance-item:last-child {
    flex: 0 0 100%;
    border-right: none;
    border-bottom: none;
  }

  /* === SPEC GRID: 2 kolom tetap di HP === */
  .spec-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* === INQUIRY / REQUEST QUOTE FORM === */
  .inquiry-block {
    width: 100%;
    box-sizing: border-box;
    padding: 16px 14px;
  }

  .inquiry-form {
    width: 100%;
    box-sizing: border-box;
  }

  .inq-row {
    grid-template-columns: 1fr;
    width: 100%;
    box-sizing: border-box;
    gap: 12px;
  }

  .form-field {
    width: 100%;
    box-sizing: border-box;
  }

  .form-sel,
  .form-input-text,
  .form-textarea {
    width: 100%;
    box-sizing: border-box;
  }

  .qty-wrap {
    width: 100%;
    box-sizing: border-box;
  }

  .qty-input {
    flex: 1;
    width: auto;
  }

  /* === PAYMENT CARDS: 2 kolom di HP === */
  .payment-method-group {
    grid-template-columns: repeat(2, 1fr) !important;
    width: 100%;
    box-sizing: border-box;
  }

  /* === TOMBOL INQUIRY === */
  .btn-inquiry,
  .btn-inquiry--login {
    width: 100%;
    box-sizing: border-box;
  }

  /* === EXPORT BADGES === */
  .export-badges {
    flex-wrap: wrap;
    gap: 6px;
  }

  /* === DETAIL BLOCK === */
  .produk-detail-block {
    width: 100%;
    box-sizing: border-box;
  }

}

/* === EXTRA SMALL (max-width: 420px) === */
@media (max-width: 420px) {

  .produk-nama {
    font-size: 26px;
  }

  .spec-grid {
    grid-template-columns: 1fr;
  }

  .spec-item:nth-child(odd) {
    border-right: none;
    padding-right: 0;
  }

  .spec-item:nth-child(even) {
    padding-left: 0;
  }

  .compliance-item {
    flex: 0 0 100%;
    border-right: none !important;
  }

  .compliance-item:nth-child(1) {
    border-right: none !important;
  }
}