.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: #45a049;
  color: #f6f6f6;
  font-size: 24px;
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: opacity 0.3s, visibility 0.3s;
  opacity: 0;
  visibility: hidden;
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Roboto", sans-serif;
  line-height: 1.6;
  background-color: #f8f8f8;
  color: #333;
}
.site-header {
  background-color: #4caf50;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
}
.logo img {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}
.logo h1 {
  font-size: 24px;
  color: #fff;
}
.site-nav ul {
  list-style: none;
  display: flex;
}
.site-nav li {
  margin-left: 20px;
}
.site-nav a {
  text-decoration: none;
  color: #fff;
  font-weight: 700;
}
.site-nav a:hover {
  color: #e0e0e0;
}
.cookies-section {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #fff;
  border-top: 1px solid #ccc;
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cookies-div {
  display: flex;
  align-items: center;
}
.cookies-div p {
  margin-right: 15px;
  font-size: 14px;
  color: #333;
}
.cookies-button {
  margin-right: 10px;
  padding: 8px 12px;
  border: none;
  background-color: #4caf50;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
}
.cookies-button:last-child {
  margin-right: 0;
}
.cookies-button:hover {
  background-color: #45a049;
}
.site-footer {
  background-color: #333;
  color: #fff;
  padding: 40px 20px;
}
.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.footer-logo,
.footer-contact,
.footer-hours {
  flex: 1;
  min-width: 200px;
  margin: 10px;
}
.footer-logo img {
  width: 50px;
  height: 50px;
}
.footer-logo p {
  margin-top: 10px;
  font-size: 16px;
}
.footer-contact h3,
.footer-hours h3 {
  margin-bottom: 10px;
  font-size: 18px;
}
.footer-contact p,
.footer-hours p {
  font-size: 14px;
  margin-bottom: 5px;
}
.footer-socials {
  text-align: center;
  margin-bottom: 20px;
}
.footer-socials a {
  margin: 0 10px;
}
.footer-socials img {
  width: 30px;
  height: 30px;
}
.footer-links ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.footer-links li {
  margin: 0 10px;
}
.footer-links a {
  text-decoration: none;
  color: #fff;
  font-size: 14px;
}
.footer-links a:hover {
  color: #ddd;
}
.footer-bottom {
  text-align: center;
  font-size: 14px;
}

@media screen and (max-width: 768px) {
  .site-header {
    flex-direction: column;
    text-align: center;
    padding: 15px;
  }
  .site-nav ul {
    flex-direction: column;
    padding: 0;
  }
  .site-nav li {
    margin: 10px 0;
  }
  .logo {
    margin-bottom: 15px;
  }
  .footer-container {
    flex-direction: column;
    align-items: center;
  }
  .footer-logo,
  .footer-contact,
  .footer-hours {
    margin: 15px 0;
    text-align: center;
  }
  .footer-links ul {
    flex-direction: column;
  }
  .footer-links li {
    margin: 5px 0;
  }
}

.hero {
  position: relative;
  width: 100%;
  height: 60vh;
  background: url("../assets/images/slider1.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.hero-content {
  position: relative;
  text-align: center;
  color: #fff;
  z-index: 1;
}
.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}
.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 30px;
}
.hero-btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #4caf50;
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 4px;
}
.hero-btn:hover {
  background-color: #45a049;
}

.about-shop {
  padding: 60px 20px;
  background-color: #f2f2f2;
}
.about-shop .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
.about-shop .container > div {
  flex: 1;
}
.about-shop h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #333;
}
.about-shop p {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #555;
  line-height: 1.6;
}
.shop-btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #4caf50;
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 4px;
}
.shop-btn:hover {
  background-color: #45a049;
}
@media (max-width: 768px) {
  .about-shop .container {
    flex-direction: column;
  }
}

.products {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
}
.products .container {
  max-width: 1200px;
  margin: 0 auto;
}
.products h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #333;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.product-card {
  background-color: #f8f8f8;
  padding: 20px;
  border-radius: 6px;
  transition: transform 0.3s;
}
.product-card:hover {
  transform: translateY(-5px);
}
.product-card img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  margin-bottom: 20px;
}
.product-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #333;
}
.product-card p {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #666;
  line-height: 1.6;
}
.product-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #4caf50;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s;
}
.product-btn:hover {
  background-color: #45a049;
}
@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}

.seed-care {
  padding: 60px 20px;
  background-color: #f9f9f9;
}
.seed-care .container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.seed-care h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #333;
}
.seed-care p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #555;
}
.care-list {
  list-style: none;
  padding: 0;
}
.care-list li {
  font-size: 1rem;
  margin-bottom: 15px;
  color: #444;
  position: relative;
  padding-left: 25px;
}
.care-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4caf50;
}

.farmer-testimonials {
  padding: 60px 20px;
  background-color: #f2f2f2;
  text-align: center;
}
.farmer-testimonials .container {
  max-width: 1200px;
  margin: 0 auto;
}
.farmer-testimonials h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #333;
}
.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-bottom: 60px;
}
.testimonial {
  background-color: #fff;
  padding: 20px;
  border-radius: 6px;
  width: 300px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}
.testimonial:hover {
  transform: translateY(-5px);
}
.testimonial img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}
.testimonial p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 10px;
  line-height: 1.5;
}
.testimonial h4 {
  font-size: 1.2rem;
  color: #333;
}
.harvest-gallery h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #333;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}
.gallery-grid img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 4px;
}
@media (max-width: 768px) {
  .testimonials-grid {
    flex-direction: column;
    align-items: center;
  }
  .gallery-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.order-seeds {
  padding: 60px 20px;
  background-color: #fff;
}
.order-seeds .container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.order-seeds h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #333;
}
.order-seeds form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.order-seeds .form-group {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.order-seeds label {
  margin-bottom: 5px;
  font-weight: bold;
  color: #555;
}
.order-seeds input,
.order-seeds select {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}
.order-btn {
  padding: 12px 24px;
  background-color: #4caf50;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}
.order-btn:hover {
  background-color: #45a049;
}
#successMessage {
  margin-top: 30px;
}
#successMessage h3 {
  font-size: 2rem;
  color: #4caf50;
}
#successMessage p {
  font-size: 1.2rem;
  color: #333;
}

.stores-info {
  padding: 60px 20px;
  background-color: #f9f9f9;
  color: #333;
}
.stores-info .container {
  max-width: 1200px;
  margin: 0 auto;
}
.stores-info h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  text-align: center;
}
.stores-info-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.storage-guidelines,
.store-details {
  flex: 1;
  min-width: 300px;
}
.storage-guidelines h3,
.store-details h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}
.storage-guidelines p,
.store-details p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
}
.storage-guidelines ul,
.store-details ul {
  list-style: disc inside;
  margin-left: 20px;
}
.store {
  background-color: #fff;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.store h4 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #4caf50;
}
@media (max-width: 768px) {
  .stores-info-content {
    flex-direction: column;
  }
}

.detailed-products {
  padding: 60px 20px;
  background-color: #fff;
  color: #333;
}
.detailed-products .container {
  max-width: 1200px;
  margin: 0 auto;
}
.detailed-products h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
}
.product-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}
.product-item img {
  width: 300px;
  height: auto;
  border-radius: 6px;
  object-fit: cover;
}
.product-description h3 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #4caf50;
}
.product-description p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  line-height: 1.6;
}
.product-description ul {
  list-style: disc inside;
  margin-left: 20px;
}
@media (max-width: 768px) {
  .product-item {
    flex-direction: column;
    text-align: center;
  }
  .product-item img {
    width: 100%;
  }
}

.title_background {
  background-color: lightgray;
  padding: 40px 20px;
  text-align: center;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.title {
  font-size: 2rem;
  font-weight: bold;
  color: black;
  margin: 0;
}

.text_background {
  background-color: whitesmoke;
  padding: 40px 20px;
}

.text {
  font-size: 1rem;
  line-height: 1.6;
  color: dimgray;
  text-align: justify;
  margin: 0;
}
