@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800&family=Inter:wght@400;500;600&display=swap');

/* ── Design Tokens ─────────────────────────────────────── */
:root {
  --lck-primary:        #1E40AF;
  --lck-primary-hover:  #1D4ED8;
  --lck-primary-dark:   #1E3A8A;
  --lck-primary-light:  #3B82F6;
  --lck-surface:        #EFF6FF;
  --lck-white:          #FFFFFF;
  --lck-text:           #0F172A;
  --lck-text-muted:     #64748B;
  --lck-border:         #BFDBFE;
  --lck-danger:         #DC2626;
  --lck-success:        #16A34A;
  --lck-whatsapp:       #25D366;
  --lck-shadow:         0 1px 3px rgba(0, 0, 0, .08);
  --lck-shadow-md:      0 4px 12px rgba(0, 0, 0, .12);
  --lck-radius:         6px;
  --lck-radius-lg:      12px;
}

/* ── Base ───────────────────────────────────────────────── */
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--lck-text);
  background: var(--lck-white);
  font-size: 15px;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6,
.display-1, .display-2, .display-3, .display-4,
.navbar-brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  letter-spacing: .02em;
}

/* ── Navbar ─────────────────────────────────────────────── */
.lck-navbar {
  background: var(--lck-primary-dark);
  padding: .75rem 0;
}

.lck-navbar .navbar-brand img {
  height: 52px;
  width: auto;
}

.lck-navbar .navbar-brand span {
  color: #FFFFFF;
  font-size: 1.3rem;
  letter-spacing: .04em;
}

.lck-navbar .nav-link {
  color: rgba(255, 255, 255, .85) !important;
  font-weight: 500;
  font-size: .9rem;
  transition: color .15s;
}

.lck-navbar .nav-link:hover,
.lck-navbar .nav-link.active {
  color: #FFFFFF !important;
}

.lck-navbar .lck-contact-link {
  color: var(--lck-whatsapp) !important;
  font-weight: 600;
}

.lck-navbar .lck-contact-link:hover {
  color: #1ebe57 !important;
}

/* ── Buttons ────────────────────────────────────────────── */
.btn-lck-primary {
  background: var(--lck-primary);
  color: #fff;
  border: none;
  border-radius: var(--lck-radius);
  font-weight: 600;
  transition: background .15s, transform .1s;
}

.btn-lck-primary:hover {
  background: var(--lck-primary-hover);
  color: #fff;
  transform: translateY(-1px);
}

.btn-whatsapp {
  background: var(--lck-whatsapp);
  color: #fff;
  border: none;
  border-radius: var(--lck-radius);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  transition: background .15s, transform .1s;
}

.btn-whatsapp:hover {
  background: #1ebe57;
  color: #fff;
  transform: translateY(-1px);
}

.btn-whatsapp-outline {
  border: 2px solid var(--lck-whatsapp);
  color: var(--lck-whatsapp);
  background: transparent;
  border-radius: var(--lck-radius);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  transition: all .15s;
}

.btn-whatsapp-outline:hover {
  background: var(--lck-whatsapp);
  color: #fff;
}

/* ── Cards ──────────────────────────────────────────────── */
.lck-card {
  background: var(--lck-white);
  border: 1px solid var(--lck-border);
  border-radius: var(--lck-radius-lg);
  box-shadow: var(--lck-shadow);
  transition: box-shadow .2s, transform .2s;
}

.lck-card:hover {
  box-shadow: var(--lck-shadow-md);
  transform: translateY(-2px);
}

/* ── Product Cards ──────────────────────────────────────── */
.product-card {
  border: 1px solid var(--lck-border);
  border-radius: var(--lck-radius-lg);
  overflow: hidden;
  background: var(--lck-white);
  box-shadow: var(--lck-shadow);
  transition: box-shadow .2s, transform .2s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  box-shadow: var(--lck-shadow-md);
  transform: translateY(-3px);
}

.product-card .product-img-wrap {
  position: relative;
  overflow: hidden;
  background: var(--lck-surface);
  aspect-ratio: 4/3;
}

.product-card .product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.05);
}

.product-card .card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1rem;
}

.product-card .product-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--lck-primary);
}

.product-card .quote-badge {
  display: inline-block;
  background: var(--lck-surface);
  color: var(--lck-primary);
  border: 1px solid var(--lck-border);
  border-radius: var(--lck-radius);
  padding: .15rem .55rem;
  font-size: .78rem;
  font-weight: 600;
}

/* ── Section Styles ─────────────────────────────────────── */
.lck-section {
  padding: 4rem 0;
}

.lck-section-alt {
  padding: 4rem 0;
  background: var(--lck-surface);
}

.lck-section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--lck-primary-dark);
  margin-bottom: .5rem;
}

.lck-section-subtitle {
  color: var(--lck-text-muted);
  font-size: 1rem;
  margin-bottom: 2.5rem;
}

/* ── Hero ───────────────────────────────────────────────── */
.lck-hero {
  background: linear-gradient(135deg, var(--lck-primary-dark) 0%, var(--lck-primary) 60%, var(--lck-primary-light) 100%);
  color: #fff;
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.lck-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.lck-hero .lck-slogan {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  margin-bottom: .75rem;
}

.lck-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

/* ── Badges ─────────────────────────────────────────────── */
.badge-lck {
  background: var(--lck-primary);
  color: #fff;
  border-radius: 4px;
  font-size: .72rem;
  font-weight: 600;
  padding: .2em .5em;
}

.badge-stock-in {
  background: #dcfce7;
  color: var(--lck-success);
  border-radius: 4px;
  font-size: .72rem;
  font-weight: 600;
  padding: .2em .5em;
}

.badge-stock-out {
  background: #fee2e2;
  color: var(--lck-danger);
  border-radius: 4px;
  font-size: .72rem;
  font-weight: 600;
  padding: .2em .5em;
}

/* ── Footer ─────────────────────────────────────────────── */
.lck-footer {
  background: var(--lck-primary-dark);
  color: rgba(255, 255, 255, .8);
  padding: 3.5rem 0 1.5rem;
}

.lck-footer h5 {
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.lck-footer a {
  color: rgba(255, 255, 255, .7);
  text-decoration: none;
  transition: color .15s;
}

.lck-footer a:hover {
  color: #fff;
}

.lck-footer .lck-footer-slogan {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
  margin-top: .35rem;
}

.lck-footer .footer-divider {
  border-color: rgba(255, 255, 255, .1);
  margin: 2rem 0 1rem;
}

.lck-footer .footer-bottom {
  font-size: .82rem;
  color: rgba(255, 255, 255, .4);
}

/* ── Floating WhatsApp Button ───────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  background: var(--lck-whatsapp);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  z-index: 1050;
  box-shadow: 0 4px 16px rgba(37, 211, 102, .45);
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 22px rgba(37, 211, 102, .55);
  color: #fff;
}

.whatsapp-float .wa-tooltip {
  position: absolute;
  right: 68px;
  background: var(--lck-text);
  color: #fff;
  font-size: .78rem;
  font-weight: 600;
  padding: .3rem .65rem;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}

.whatsapp-float:hover .wa-tooltip {
  opacity: 1;
}

/* ── Sidebar Filter (Shop) ──────────────────────────────── */
.lck-filter-card {
  background: var(--lck-white);
  border: 1px solid var(--lck-border);
  border-radius: var(--lck-radius-lg);
  padding: 1.25rem;
  margin-bottom: 1rem;
}

.lck-filter-card h6 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--lck-primary-dark);
  margin-bottom: .75rem;
}

/* ── Breadcrumb ─────────────────────────────────────────── */
.lck-breadcrumb {
  background: var(--lck-surface);
  padding: .6rem 0;
  border-bottom: 1px solid var(--lck-border);
  font-size: .85rem;
}

.lck-breadcrumb .breadcrumb-item a {
  color: var(--lck-primary);
  text-decoration: none;
}

.lck-breadcrumb .breadcrumb-item.active {
  color: var(--lck-text-muted);
}

/* ── Vehicle Series Cards ───────────────────────────────── */
.vehicle-card {
  border: 2px solid var(--lck-border);
  border-radius: var(--lck-radius-lg);
  padding: 1.5rem 1rem;
  text-align: center;
  background: var(--lck-white);
  text-decoration: none;
  color: var(--lck-text);
  display: block;
  transition: all .2s;
}

.vehicle-card:hover {
  border-color: var(--lck-primary);
  background: var(--lck-surface);
  color: var(--lck-primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--lck-shadow-md);
}

.vehicle-card .vehicle-series {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--lck-primary);
}

.vehicle-card .vehicle-years {
  font-size: .82rem;
  color: var(--lck-text-muted);
}

/* ── Forms ──────────────────────────────────────────────── */
.lck-form .form-control:focus,
.lck-form .form-select:focus {
  border-color: var(--lck-primary-light);
  box-shadow: 0 0 0 .2rem rgba(59, 130, 246, .2);
}

.lck-form label {
  font-weight: 500;
  font-size: .9rem;
  color: var(--lck-text);
  margin-bottom: .3rem;
}

/* ── Utility ────────────────────────────────────────────── */
.text-lck-primary  { color: var(--lck-primary) !important; }
.text-lck-dark     { color: var(--lck-primary-dark) !important; }
.bg-lck-surface    { background: var(--lck-surface) !important; }
.bg-lck-dark       { background: var(--lck-primary-dark) !important; }
.border-lck        { border-color: var(--lck-border) !important; }
.font-heading      { font-family: 'Barlow Condensed', sans-serif !important; }
