
body {
  font-family: Arial, sans-serif;
  background: #f4f4f4;
  margin: 0;
}

/* Product Box */
.product-box {
  background-color: #fff;
  border-radius: 8px;
  min-height: 100%;
  display: flex;
  align-items: flex-start;
}

.product-img {
  flex: 0 0 220px;
  margin-right: 20px;
}

.product-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 6px;
}

.product-content {
  flex: 1;
}

.product-content h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.product-content p {
  font-size: 14px;
  color: #444;
  text-align: justify;
}

.btn-group .btn {
  margin-right: 10px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .d-flex.product-box {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .product-img {
    width: 100%;
    margin-bottom: 1rem;
  }

  .product-content {
    text-align: center;
  }
}

/* Product Card Layout */
.product-card .row {
  gap: 0.5rem;
}

.product-card p {
  font-size: 0.9rem;
}

/* For two-column layout inside sections */
@media (min-width: 992px) {
  .two-column-section .col-lg-4 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

/* Product Card Style */
.product-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  padding: 15px;
  text-align: center;
  transition: transform 0.2s ease-in-out;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  border-radius: 8px;
}

/* Section Title */
.section-title {
  margin: 40px 0 10px;
  font-weight: bold;
  text-align: center;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: #007bff;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Category Section Box */
.category-section {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 30px;
}
