:root {
  --brand:#0d2b5b;        /* deep blue */
  --brand-accent:#d4af37; /* rich gold */
  --text:#111;            /* dark text */
  --bg:#fff;
  --muted:#f4f6fa;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;color:var(--text);background:var(--bg);line-height:1.6}
a{color:var(--brand)}

.header{background:linear-gradient(90deg,var(--brand),#10306b);color:#fff}
.container{max-width:1100px;margin:0 auto;padding:16px 20px}
.brand{font-weight:800;text-decoration:none;color:#fff;letter-spacing:.3px}

.nav{display:flex;gap:16px;align-items:center;flex-wrap:wrap}
.nav a{
  color:#fff;
  text-decoration:none;
  padding:8px 10px;
  border-radius:8px;
  transition:0.3s;
}
/* hover + keyboard focus */
.nav a:hover,
.nav a:focus-visible {
  background: var(--brand-accent) !important;
  color: #111 !important;
}

/* while clicking/pressing (temporary) */
.nav a:active {
  background: var(--brand-accent) !important;
  color: #111 !important;
  filter: brightness(.95);
}





.hero{padding:48px 0;text-align:center}

.btn{
  display:inline-block;
  margin-top:14px;
  padding:12px 18px;
  border-radius:999px;
  text-decoration:none;
  background:var(--brand-accent);
  color:#111;
  font-weight:700;
  box-shadow:0 6px 18px rgba(0,0,0,.12);
}
.btn:hover{
  filter:brightness(1.05);
}

.grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.card{
  background:#fff;
  border-radius:14px;
  padding:16px;
  border:1px solid #e7ecf3;
  box-shadow:0 6px 18px rgba(0,0,0,.05);
  transition:0.3s;
}
.card:hover{transform:translateY(-4px);box-shadow:0 10px 20px rgba(0,0,0,.08)}

.card h3{margin:.2rem 0 .4rem;color:var(--brand)}
.card p{color:#333}

.badge{
  display:inline-block;
  background:var(--brand-accent);
  color:#fff;
  border-radius:999px;
  padding:4px 10px;
  font-size:.85rem;
  margin-right:6px;
}

h1,h2,h3{color:var(--brand)}
h1 strong,h2 strong,h3 strong{color:var(--brand-accent)}

.footer{background:var(--muted);margin-top:48px}
.footer p{margin:0}
.footer a{color:var(--brand-accent);font-weight:600;text-decoration:none}
.footer a:hover{text-decoration:underline}

/* product page */
.breadcrumb{font-size:.9rem;margin:8px 0 16px}
.product-hero{display:grid;grid-template-columns:1.2fr 1fr;gap:24px;align-items:center}
.product-hero img{
  width:100%;
  height:500px; /* taller for motor-bike */
  object-fit:contain; /* show whole photo */
  border-radius:14px;
  background:#e8edf5;
}
.specs{background:#fff;border:1px solid #e7ecf3;border-radius:14px;padding:14px}
.specs dt{font-weight:700}
.specs dd{margin:0 0 8px 0}
.cta-box{background:linear-gradient(180deg,#fff,#fafbff);border:1px solid #e7ecf3;border-radius:14px;padding:16px}
.kv{display:grid;grid-template-columns:1fr 1fr;gap:8px}
.kv div{background:#fff;border:1px solid #e7ecf3;border-radius:12px;padding:10px;min-height:72px}

@media (max-width: 880px){
  .grid{grid-template-columns:1fr}
  .product-hero{grid-template-columns:1fr}
}

/* Mobile responsiveness */
@media (max-width: 900px){
  .grid{grid-template-columns:repeat(2,1fr)}
  .product-hero{grid-template-columns:1fr}
  .product-hero img{height:420px}
  .kv{grid-template-columns:1fr}
}

@media (max-width: 640px){
  .grid{grid-template-columns:1fr}
  .container{padding:14px}
  .hero{padding:28px 0}
  .product-hero img{height:360px}
  .gallery{grid-template-columns:repeat(2,1fr)}
  .gallery img{height:200px}
  /* Mobile nav */
  .nav-toggle{display:block}
  .nav{display:none;flex-direction:column;align-items:flex-start;background:#0f2d61;padding:10px;border-radius:12px;margin-top:10px}
  .nav.open{display:flex}
  .nav a{width:100%;padding:10px 12px}
}

.gold-text {
  color: #d4af37;   /* gold */
  font-weight: 600; /* makes it pop */
}





