.elementor-22848 .elementor-element.elementor-element-69c1625{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-afc1a44 *//* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background-color: #fffdf7;
  color: #333;
}

/* Header */
.header {
  background-color: #144d36;
  color: #fff;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.header .logo {
  font-size: 1.8rem;
  font-weight: bold;
}

.nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 20px;
  font-weight: 500;
}

.nav a:hover {
  text-decoration: underline;
}

/* Banner */
.banner {
  background: url('banner.jpg') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 100px 20px;
  background-color: #f0f0;
}

.banner h1 {
  font-size: 2.5rem;
  background-color: rgba(20, 77, 54, 0.7);
  color: #ffffff; /* <-- Add this line */
  display: inline-block;
  padding: 15px 25px;
  border-radius: 8px;
}

/* Featured Product */
.featured-product {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background-color: #fafaf6;
}

.featured-product img {
  width: 300px;
  border-radius: 12px;
  margin: 20px;
}

.product-info {
  max-width: 400px;
  margin: 20px;
}

.product-info h2 {
  color: #144d36;
}

.product-info .price {
  font-size: 1.5rem;
  color: #b48b00;
  margin: 10px 0;
}

button {
  background-color: #b48b00;
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 10px;
  transition: background 0.3s ease;
}

button:hover {
  background-color: #a07b00;
}

/* Product Grid */
.product-grid {
  padding: 40px 20px;
  background-color: #ffffff;
  text-align: center;
}

.product-grid h2 {
  margin-bottom: 20px;
  color: #144d36;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.product-card {
  background-color: #f2f8f4;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

.product-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
}

.product-card h3 {
  margin-bottom: 5px;
  font-size: 1.1rem;
}

/* Reviews */
.reviews {
  background-color: #fef9ec;
  padding: 40px 20px;
  text-align: center;
}

.review {
  margin-bottom: 20px;
  font-style: italic;
}

.review strong {
  display: block;
  margin-top: 10px;
  color: #144d36;
}

/* About Section */
.about {
  padding: 40px 20px;
  background-color: #fafaf6;
  text-align: center;
}

.about h2 {
  margin-bottom: 15px;
  color: #144d36;
}

/* Contact Form */
.contact {
  padding: 40px 20px;
  background-color: #ffffff;
  text-align: center;
}

.contact form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
}

.contact input,
.contact textarea {
  padding: 12px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.contact button {
  align-self: center;
}

/* Footer */
.footer {
  background-color: #144d36;
  color: #fff;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: center;
}

.footer a {
  color: #fff;
  margin: 5px 10px;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .header {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .banner {
    padding: 60px 20px;
  }

  .banner h1 {
    font-size: 1.8rem;
    padding: 10px 15px;
  }

  .featured-product {
    flex-direction: column;
    text-align: center;
  }

  .featured-product img {
    width: 90%;
  }

  .product-info {
    margin: 10px 0;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .product-card img {
    max-width: 100%;
    height: auto;
  }

  .contact form {
    width: 100%;
    padding: 0 10px;
  }

  .footer {
    flex-direction: column;
    align-items: center;
  }

  .footer a {
    margin: 5px 0;
  }
}/* End custom CSS */