/* ======================================== */
/* COMPONENTS.CSS — UI COMPONENT LIBRARY    */
/* Mobile-First Responsive Component Styles */
/* ======================================== */

/* ---------------------------------------- */
/* 1. PRODUCT CARD                          */
/* ---------------------------------------- */
.product-card {
  background: var(--bvm-bg-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: var(--space-sm);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card img {
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-sm);
}

.product-card h3 {
  font-size: var(--fs-h3);
  margin-bottom: var(--space-xs);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1);
}

/* ---------------------------------------- */
/* 2. CATEGORY HERO                         */
/* ---------------------------------------- */
.category-hero {
  position: relative;
  text-align: center;
  margin-bottom: var(--space-lg);
}

.category-hero-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  filter: brightness(0.75);
  border-radius: var(--radius-md);
}

.category-hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--bvm-text-light);
}

.category-hero-text h1 {
  font-size: var(--fs-h1);
  margin-bottom: var(--space-xs);
}

/* ---------------------------------------- */
/* 3. USP CARDS                             */
/* ---------------------------------------- */
.usp-card {
  background: var(--bvm-bg-light);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: 0.2s ease;
}

.usp-card img {
  height: 50px;
  margin-bottom: var(--space-sm);
}

.usp-card h3 {
  margin-bottom: var(--space-xs);
  font-size: var(--fs-h3);
}

.usp-card:hover {
  transform: translateY(-4px);
}

/* ---------------------------------------- */
/* 4. MANUFACTURING CARDS                   */
/* ---------------------------------------- */
.mfg-card {
  background: var(--bvm-bg-light);
  padding: var(--space-sm);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  text-align: center;
}

.mfg-card img {
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-sm);
}

/* ---------------------------------------- */
/* 5. INFO CARDS (Mission, Vision)          */
/* ---------------------------------------- */
.info-card {
  background: var(--bvm-bg-light);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.info-card img {
  height: 50px;
  margin-bottom: var(--space-sm);
}

/* ---------------------------------------- */
/* 6. VALUE CARDS                           */
/* ---------------------------------------- */
.value-card {
  background: var(--bvm-bg-light);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.value-card img {
  height: 45px;
  margin-bottom: var(--space-xs);
}

/* ---------------------------------------- */
/* 7. APPLICATION CARDS                     */
/* ---------------------------------------- */
.application-card {
  background: var(--bvm-bg-light);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.application-card img {
  height: 45px;
  margin-bottom: var(--space-xs);
}

/* ---------------------------------------- */
/* 8. BREADCRUMB                            */
/* ---------------------------------------- */
.breadcrumb {
  background: var(--bvm-bg-grey);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
  margin: var(--space-md) 0;
  font-size: var(--fs-small);
}

.breadcrumb a {
  color: var(--bvm-primary);
}

/* ---------------------------------------- */
/* 9. PRODUCT HERO (Product Details Page)   */
/* ---------------------------------------- */
.product-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.product-gallery img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.product-thumbnails {
  display: flex;
  gap: var(--space-xs);
  margin-top: var(--space-xs);
}

.product-thumbnails img {
  width: 70px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  opacity: 0.85;
}

.product-thumbnails img:hover {
  opacity: 1;
}

.product-info h1 {
  margin-bottom: var(--space-sm);
}

.product-features li {
  margin-bottom: var(--space-xs);
}

.product-actions {
  margin-top: var(--space-md);
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .product-hero {
    grid-template-columns: 1fr 1fr;
  }
}

/* ---------------------------------------- */
/* 10. SPECIFICATION TABLE                  */
/* ---------------------------------------- */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-md) 0;
  box-shadow: var(--shadow-soft);
}

.spec-table th,
.spec-table td {
  border: 1px solid #ddd;
  padding: var(--space-sm);
  font-size: var(--fs-small);
}

.spec-table th {
  background: var(--bvm-primary);
  color: var(--bvm-text-light);
}

/* ---------------------------------------- */
/* 11. RELATED PRODUCTS SECTION             */
/* ---------------------------------------- */
.related-card {
  background: var(--bvm-bg-light);
  padding: var(--space-sm);
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-card);
}

.related-card img {
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-xs);
}

/* ---------------------------------------- */
/* 12. GALLERY CARDS                        */
/* ---------------------------------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.gallery-item img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  cursor: pointer;
  transition: 0.2s ease;
}

.gallery-item img:hover {
  transform: scale(1.02);
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ---------------------------------------- */
/* 13. CONTACT CARDS                        */
/* ---------------------------------------- */
.contact-card {
  background: var(--bvm-bg-light);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.contact-card img {
  height: 45px;
  margin-bottom: var(--space-xs);
}

/* ---------------------------------------- */
/* 14. FORMS (Contact + Dealer)             */
/* ---------------------------------------- */
.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: var(--space-md);
}

.form-group label {
  margin-bottom: var(--space-xs);
  font-size: var(--fs-small);
}

.form-group input,
.form-group textarea {
  padding: var(--space-sm);
  border: 1px solid #ddd;
  border-radius: var(--radius-md);
  font-size: var(--fs-body);
}

.form-group.full-width {
  grid-column: span 2;
}

.contact-form,
.dealer-form {
  display: grid;
  grid-template-columns
