.barrel-sec {
  background: #f9fff8;
  /* padding: 60px 0; */
  font-family: "Poppins", sans-serif;
}

.barrel-sec h2,
.barrel-sec h3 {
  font-family: "Playfair Display", serif;
  color: #4b8c3b;
  /* green from theme */
  margin-bottom: 15px;
}

.barrel-sec p {
  color: #333;
  line-height: 1.7;
  margin-bottom: 20px;
}

.container {
  width: 90%;
  max-width: 1200px;
}

.row {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.col-left {
  flex: 1;
}

.col-right {
  flex: 1;
}

.col-right img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
}

/* Feature Box */
.feature-box,
.tips-box {
  background: #e8f5e9;
  /* soft green */
  padding: 25px 30px;
  border-left: 5px solid #f2a83b;
  /* orange border */
  margin-top: 40px;
  border-radius: 8px;
}

/* Lists */
.feature-box ul,
.tips-box ul {
  margin: 0;
  padding-left: 20px;
}

.feature-box ul li,
.tips-box ul li {
  margin-bottom: 10px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .row {
    flex-direction: column;
  }
}

.cards-section {
  background: #f9fff8;
  padding: 60px 0;
  font-family: "Poppins", sans-serif;
}

.cards-section h2 {
  font-family: "Playfair Display", serif;
  color: #4b8c3b;
  text-align: center;
  margin-bottom: 50px;
}

.card-row {
  display: flex;
  gap: 30px;
  justify-content: center;
}
.barrel-sec p {
  font-weight: unset !important;
}
.card {
  background: #e8f5e9; /* soft green */
  border-left: 5px solid #f2a83b; /* orange accent */
  border-radius: 12px;
  overflow: hidden;
  width: 300px;
  text-align: center; /* center content */
  padding: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card img {
  width: 100%;
  /* border-radius: 10px; */
  margin-bottom: 20px;
}

.card h3 {
  font-family: "Playfair Display", serif;
  color: #4b8c3b;
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.card p {
  color: #333;
  line-height: 1.6;
  font-size: 1rem;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

/* Responsive */
@media (max-width: 992px) {
  .card {
    width: 45%; /* 2 cards per row */
  }
}

@media (max-width: 768px) {
  .card {
    width: 90%; /* 1 card per row */
  }
}

.card {
  width: 390px !important;
}

.product-cards-sec {
  background: #f9fff8;
  padding: 30px 20px 60px 20px; /* added side padding for full-width on mobile */
  font-family: "Poppins", sans-serif;
}

.product-cards-sec h2 {
  font-family: "Playfair Display", serif;
  color: #4b8c3b;
  text-align: center;
  margin-bottom: 50px;
}

.product-row {
  display: flex;
  flex-direction: column; /* stack cards vertically */
  gap: 30px;
  align-items: center;
}

.product-card {
  border-radius: 12px;
  overflow: hidden;
  width: 100%; /* full width */
  max-width: 1200px; /* optional max width */
  text-align: center;
  padding: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.product-card img {
  width: 100%;
  height: 400px;
  border-radius: 0;
  margin-bottom: 20px;
}

.product-card h3 {
  font-family: "Playfair Display", serif;
  color: #4b8c3b;
  margin-bottom: 10px;
  font-size: 1.6rem;
  text-align: center;
}

.product-card p {
  color: #333;
  line-height: 1.6;
  font-size: 1rem;
  text-align: center;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

/* Responsive */
@media (max-width: 1200px) {
  .product-card {
    width: 95%; /* slightly smaller on smaller screens */
  }
}

@media (max-width: 768px) {
  .product-card {
    width: 100%;
  }
}

.feature-sec {
  background: #fbfaf4; /* dark teal/grey from the screenshot */
  padding: 20px 20px;
  width: 100%;
  box-sizing: border-box;
}

.feature-row {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px;
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #f0c14b; /* golden/yellow for icons and text */
  text-align: center;
  flex: 1 1 200px; /* responsive */
}

.feature-card span.material-icons {
  font-size: 48px;
  margin-bottom: 10px;
}

.feature-card p {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .feature-row {
    flex-direction: column;
    gap: 20px;
  }
}

.about-sec {
  background: #ffffff; /* white background */
  padding: 60px 20px 0px 20px !important;
  font-family: "Poppins", sans-serif;
  color: #333;
}

.about-sec .container {
  max-width: 1320px;
  margin: 0 auto;
}

.about-sec h2 {
  font-size: 2rem;
  color: #4b8c3b; /* green accent like previous sections */
  margin-bottom: 20px;
  font-weight: 600;
}

.about-sec p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

.about-sec h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #4b8c3b;
}

.about-sec ul {
  list-style-type: disc;
  padding-left: 20px;
}

.about-sec ul li {
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 1.6;
}
