/* === SHOWCASE PAGE === */

/* Hero */
.showcase-hero {
  background: #1a2e1f;
  padding: 10rem 2rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.showcase-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201,82,26,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(201,82,26,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.showcase-hero-inner {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
}
.showcase-hero .section-tag { color: #e8a87a; }
.showcase-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: #f5ece0;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.showcase-hero-sub {
  font-size: 1.05rem;
  color: rgba(245,236,224,0.7);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.showcase-hero-cta { margin: 0 auto; }

/* Grid section */
.showcase-grid-section { padding: 4rem 0 6rem; background: #f5ece0; }
.showcase-grid-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* Filters */
.showcase-filters {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.filter-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #3d5c3a;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.filter-pills { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.filter-pill {
  background: white;
  border: 1.5px solid rgba(26,46,31,0.2);
  color: #1a2e1f;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.filter-pill:hover { border-color: #c9521a; color: #c9521a; }
.filter-pill.active {
  background: #c9521a;
  border-color: #c9521a;
  color: white;
}

/* Vehicle grid */
.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1100px) { .vehicle-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 800px) { .vehicle-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .vehicle-grid { grid-template-columns: 1fr; } }

/* Vehicle card */
.vehicle-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(26,46,31,0.08);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}
.vehicle-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(26,46,31,0.14); }
.vehicle-card.hidden { display: none; }

.vehicle-img-wrap {
  position: relative;
  height: 180px;
  background: #1a2e1f;
  overflow: hidden;
}
.vehicle-img { width: 100%; height: 100%; object-fit: cover; }
.vehicle-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: #c9521a;
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.3rem 0.6rem;
  border-radius: 100px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.vehicle-info { padding: 1.25rem; display: flex; flex-direction: column; flex: 1; }
.vehicle-brand-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #c9521a;
  margin-bottom: 0.4rem;
}
.vehicle-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a2e1f;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.vehicle-desc {
  font-size: 0.8rem;
  color: #3d5c3a;
  line-height: 1.5;
  margin-bottom: 0.75rem;
  flex: 1;
}
.vehicle-specs {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.spec-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.72rem;
  color: #3d5c3a;
  background: rgba(26,46,31,0.06);
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  font-weight: 500;
}

.vehicle-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(26,46,31,0.1);
  padding-top: 1rem;
  margin-top: auto;
}
.vehicle-price-block { display: flex; flex-direction: column; }
.vehicle-price-label { font-size: 0.7rem; color: #6b8a6b; font-weight: 500; }
.vehicle-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 900;
  color: #c9521a;
  line-height: 1;
}

.btn-whatsapp-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #25D366;
  color: white;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.5rem 0.9rem;
  border-radius: 8px;
  transition: background 0.2s;
  flex-shrink: 0;
  white-space: nowrap;
}
.btn-whatsapp-cta:hover { background: #20bd5a; }

/* Closing CTA */
.showcase-closing {
  background: #1a2e1f;
  padding: 6rem 2rem;
  text-align: center;
}
.showcase-closing-inner { max-width: 600px; margin: 0 auto; }
.showcase-closing-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 900;
  color: #f5ece0;
  margin-bottom: 1rem;
}
.showcase-closing-sub {
  font-size: 1rem;
  color: rgba(245,236,224,0.65);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.showcase-closing-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }