/* Variation 2: Product-First / Catalog */

/* Compact Hero - not full viewport */
.hero.hero-compact {
  min-height: auto;
  padding: 120px 0 60px;
}

/* Search-like UI in hero */
.hero-search-bar {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  max-width: 500px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.hero-search-bar:hover {
  border-color: var(--yellow);
  background: rgba(255,255,255,0.15);
}
.hero-search-bar svg {
  width: 22px; height: 22px;
  stroke: var(--yellow); fill: none; stroke-width: 2;
}
.hero-search-bar span {
  color: rgba(255,255,255,0.5);
  font-size: 1rem;
}

/* Hero split layout */
.hero-split {
  display: flex;
  align-items: center;
  gap: 40px;
}
.hero-split .hero-content {
  flex: 1;
}
.hero-split .hero-image {
  flex: 0 0 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-split .hero-image img {
  max-width: 100%;
  height: auto;
  drop-shadow: 0 20px 40px rgba(0,0,0,0.3);
  filter: drop-shadow(0 10px 30px rgba(245, 166, 35, 0.2));
}

@media (max-width: 768px) {
  .hero-split {
    flex-direction: column;
    text-align: center;
  }
  .hero-split .hero-image {
    flex: none;
    max-width: 300px;
    margin: 0 auto;
  }
}

/* Category Grid - uses .categories-grid from base styles */

/* Tabbed Brands */
.brand-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 30px;
}
.brand-tab {
  padding: 12px 32px;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-500);
  cursor: pointer;
  transition: all 0.3s ease;
}
.brand-tab:first-child { border-radius: 8px 0 0 8px; }
.brand-tab:last-child { border-radius: 0 8px 8px 0; }
.brand-tab.active {
  background: var(--navy);
  color: var(--yellow);
  border-color: var(--navy);
}
.brand-slider-panel { display: none; }
.brand-slider-panel.active { display: block; }

/* Quick Enquiry Bar */
.enquiry-bar {
  background: var(--navy);
  padding: 40px 0;
}
.enquiry-bar-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}
.enquiry-bar h3 {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
}
.enquiry-bar h3 span { color: var(--yellow); }
.enquiry-input {
  padding: 14px 20px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-size: 0.95rem;
  min-width: 280px;
  outline: none;
  transition: border-color 0.3s ease;
}
.enquiry-input::placeholder { color: rgba(255,255,255,0.4); }
.enquiry-input:focus { border-color: var(--yellow); }

/* Popular Parts */
.popular-parts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.part-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
}
.part-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--yellow);
}
.part-card .part-icon {
  width: 50px; height: 50px;
  margin: 0 auto 12px;
}
.part-card h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.part-card p {
  font-size: 0.8rem;
  color: var(--gray-500);
}
.part-card .enquire-link {
  display: inline-block;
  margin-top: 10px;
  color: var(--yellow-dark);
  font-size: 0.8rem;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 1024px) {
    .popular-parts-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .popular-parts-grid { grid-template-columns: 1fr; }
  .enquiry-bar-inner { flex-direction: column; text-align: center; }
  .enquiry-input { min-width: 100%; }
  .hero-search-bar { max-width: 100%; }
}
@media (max-width: 480px) {
  }
