/* =====================================================
   BASE (SEMUA PRODUK)
===================================================== */
:root{
  --radius:18px;
  --shadow:0 30px 60px rgba(0,0,0,.12);
  --text:#0f172a;
  --muted:#64748b;
}

/* HERO */
.product-hero{
  padding:120px 0;
  text-align:center;
  color:#fff;
}

.product-eyebrow{
  font-size:12px;
  letter-spacing:2px;
  text-transform:uppercase;
  margin-bottom:14px;
}

.product-title{
  font-size:44px;
  font-weight:700;
}

.product-subtitle{
  max-width:720px;
  margin:20px auto 0;
  font-size:16px;
  opacity:.85;
}

/* CONTENT */
.product-section{
  padding:90px 0;
  background:#fff;
}

.product-image{
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}

/* CTA */
.product-cta{
  background:#0b0f14;
  color:#fff;
  padding:90px 0;
  text-align:center;
}

/* =====================================================
   THEME RED – AIR HYDRAULIC JACK
===================================================== */
.theme-red{
  --accent:#d32f2f;
  --hero-bg:radial-gradient(circle at top,#2b2b2b,#0b0f14);
}

.theme-red .product-hero{ background:var(--hero-bg); }
.theme-red .product-eyebrow{ color:var(--accent); }
.theme-red .btn-primary{ background:var(--accent); border:none; }

/* =====================================================
   THEME BLUE – SENATOR TOOLING
===================================================== */
.theme-blue{
  --accent:#2563eb;
  --hero-bg:radial-gradient(circle at top,#1e3a8a,#0b0f14);
}

.theme-blue .product-hero{ background:var(--hero-bg); }
.theme-blue .product-eyebrow{ color:#93c5fd; }
.theme-blue .btn-primary{ background:var(--accent); border:none; }

/* =====================================================
   THEME YELLOW – RC CORDLESS
===================================================== */
.theme-yellow{
  --accent:#facc15;
  --hero-bg:radial-gradient(circle at top,#1c1c1c,#000);
}

.theme-yellow .product-hero{ background:var(--hero-bg); }
.theme-yellow .product-eyebrow{ color:var(--accent); }
.theme-yellow .btn-primary{
  background:#111;
  color:var(--accent);
  border:1px solid var(--accent);
}


/* =====================================================
   SENATOR BLUE THEME (MATCH HYDRAULIC STRUCTURE)
===================================================== */

.senator-theme{
  background:radial-gradient(circle at top,#1f4fa3,#0b1f3a);
}

/* GROUP GRID */
.product-group-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:32px;
  margin-bottom:80px;
}

.group-card{
  background:#fff;
  border-radius:16px;
  padding:20px;
  box-shadow:0 25px 50px rgba(0,0,0,.08);
}

.group-card img{
  width:100%;
  border-radius:12px;
  margin-bottom:16px;
}

.group-card h4{
  color:#1f4fa3;
  margin-bottom:10px;
}

/* FEATURE / APP */
.feature-app-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:48px;
  margin-bottom:80px;
}

/* CTA */
.detail-cta{
  text-align:center;
  background:#f4f7fb;
  padding:60px 40px;
  border-radius:18px;
}

/* BUTTON OVERRIDE */
.senator-theme .btn-primary{
  background:#1f4fa3;
}

.senator-theme .btn-outline{
  border-color:#fff;
  color:#fff;
}

/* RESPONSIVE */
@media(max-width:900px){
  .product-group-grid{
    grid-template-columns:1fr;
  }
  .feature-app-grid{
    grid-template-columns:1fr;
  }
}


/* =====================================================
   RODCRAFT YELLOW THEME (MATCH STRUCTURE)
===================================================== */

.rodcraft-theme{
  background:radial-gradient(circle at top,#1c1c1c,#000);
}

/* HERO */
.rodcraft-theme h1{
  color:#ffcc00;
}

.rodcraft-theme .btn-primary{
  background:#ffcc00;
  color:#000;
  font-weight:700;
}

.rodcraft-theme .btn-outline{
  border:2px solid #ffcc00;
  color:#ffcc00;
}

/* HERO IMAGE */
.hero-image{
  margin-top:-80px;
}
.hero-image img{
  width:100%;
  border-radius:22px;
  box-shadow:0 35px 70px rgba(0,0,0,.6);
}

/* TECH PANEL */
.tech-panel{
  background:#f6f7fa;
  padding:80px 0;
}
.tech-panel img{
  width:100%;
  max-width:900px;
  display:block;
  margin:auto;
}

/* GALLERY */
.gallery-section{
  background:#0d0d0d;
  padding:100px 0;
}
.gallery-section h2{
  color:#ffcc00;
  margin-bottom:40px;
}
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}
.gallery-item{
  background:#151515;
  border-radius:20px;
  overflow:hidden;
}
.gallery-item img{
  width:100%;
  height:280px;
  object-fit:cover;
}

/* MODELS */
.models-box{
  background:#f4f6f9;
  padding:40px;
  border-radius:18px;
  max-width:560px;
}

/* ================= CP RED THEME ================= */
.cp-theme{
  background:radial-gradient(circle at top,#2a2a2a,#0f0f0f);
  color:#fff;
}

.cp-theme h1{
  color:#fff;
}

.btn-primary{
  background:#d32f2f;
  color:#fff;
  padding:12px 22px;
  border-radius:8px;
  font-weight:700;
  text-decoration:none;
}

.btn-outline{
  border:2px solid #fff;
  color:#fff;
  padding:10px 20px;
  border-radius:8px;
}

/* MODEL GRID */
.model-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:24px;
  margin-top:30px;
}

.model-card{
  background:#fff;
  border-radius:16px;
  padding:20px;
  box-shadow:0 15px 30px rgba(0,0,0,.08);
}

.model-card img{
  width:100%;
  max-height:220px;
  object-fit:contain;
  margin-bottom:12px;
}

/* TECH VISUAL */
.tech-visual{
  background:#f6f7f9;
  padding:80px 0;
}
.tech-visual img{
  width:100%;
  max-width:800px;
  display:block;
  margin:auto;
}

/* SPEC TABLE */
.spec-table{
  width:100%;
  border-collapse:collapse;
}
.spec-table th,
.spec-table td{
  border:1px solid #ddd;
  padding:10px;
}

.kobe-hero {
  background: linear-gradient(135deg, #0b3c8c, #111);
  color: #fff;
  padding: 120px 0;
}

.kobe-badge {
  background: #fff;
  color: #0b3c8c;
  font-weight: 700;
}

.kobe-cta {
  background: #0b3c8c;
  color: #fff;
}
/* ================= KOBE THEME ================= */
.kobe-hero {
  background: linear-gradient(135deg, #0b1f3a, #0e3b7c);
  color: #fff;
  padding: 100px 0;
}

.kobe-badge {
  background: #ffffff;
  color: #0b3c8a;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 20px;
}

.feature-card,
.range-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.range-card img {
  max-height: 160px;
  margin-bottom: 20px;
}

.tech-list li {
  margin-bottom: 12px;
  font-weight: 500;
}

.enterprise-cta {
  background: #0b1f3a;
  color: #ffffff;
  padding: 80px 0;
}
/* ===============================
   KOBE HERO IMAGE FIX
================================ */
.kobe-hero .product-hero-img {
  max-width: 420px;   /* sebelumnya kebesaran */
  width: 100%;
  height: auto;
  margin: 0 auto;
}

/* desktop lebih rapi */
@media (min-width: 992px) {
  .kobe-hero .product-hero-img {
    max-width: 460px;
  }
}

/* mobile lebih kecil */
@media (max-width: 768px) {
  .kobe-hero .product-hero-img {
    max-width: 300px;
    margin-top: 30px;
  }
}
