  /* ===========================
   VIDEO CONSULTATION SECTION
=========================== */
.video-section {
  padding: 60px 0;
}

.video-img {
  width: 100%;
  height: 100%;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
}

/* Right Content Box */
.video-box {
  background: #fafafa;
  padding: 30px;
  border-radius: 12px;
}

/* Benefits */
.benefit-box {
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  border-left: 5px solid #0a8f55;
  margin-bottom: 20px;
}

/* Button */
.btn-main {
  background: #0a8f55;
  color: #fff;
  padding: 12px 20px;
  border-radius: 6px;
  border: none;
  width: 100%;
  font-size: 16px;
  font-weight: 600;
}
.btn-main:hover {
  background: #066b3f;
}

/* ===========================
   FORM STYLING
=========================== */
.consult-form input,
.consult-form select {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  margin-bottom: 15px;
  font-size: 15px;
}

/* ===========================
   RELATED PRODUCTS
=========================== */
.related-wrapper {
  padding: 50px 0;
  margin-top: 60px;
}

.related-wrapper h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 30px;
}

/* Card Styling */
.product-card {
  background: #fff;
  border-radius: 12px;
  padding: 15px;
  border: 1px solid #eaeaea;
  transition: all 0.3s ease;
  height: 100%;
}

.product-card:hover {
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
  transform: translateY(-3px);
}

.product-img {
  width: 100%;
  height: 220px;
  border-radius: 10px;
  object-fit: cover;
  margin-bottom: 12px;
}

.product-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.price-box {
  margin-bottom: 12px;
}

.new-price {
  font-size: 16px;
  font-weight: 700;
  color: #2b7a0b;
}

.old-price {
  font-size: 14px;
  text-decoration: line-through;
  color: #999;
  margin-left: 8px;
}

.btn-cart {
  width: 100%;
  padding: 10px 0;
  background: #2b7a0b;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  transition: 0.3s;
}
.btn-cart:hover {
  background: #1e5b07;
}

/* ===========================
   RESPONSIVE FIXES
=========================== */

/* Tablets */
@media (max-width: 768px) {
  .video-section {
    padding: 40px 0;
  }
  .video-box {
    margin-top: 20px;
  }
  .product-img {
    height: 200px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .video-section {
    padding: 30px 0;
  }

  .video-img {
    max-height: 260px;
  }

  .related-wrapper {
    padding: 30px 0;
  }

  .product-card {
    padding: 12px;
  }

  .product-title {
    font-size: 15px;
  }

  .btn-cart {
    padding: 9px;
  }
}
