/* Reset default browser spacing */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
}

/* Header Section */
.top-header {
  background-color: #5F8B4C;
  padding: 20px 0px;
  magrin: 0%;
  width: 100%; /* FULL width */
}

.top-container {
  max-width: 1300px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.logo img {
  height: 100px;
  width: auto;
}

.header-search {
  flex: 1;
  display: flex;
  max-width: 600px;
}

.header-search input {
  flex: 1;
  padding: 15px 20px;
  border: none;
  border-radius: 6px 0 0 6px;
  font-size: 1rem;
}

.header-search button {
  background-color: #F0F1C5;
  border: none;
  padding: 0 20px;
  border-radius: 0 6px 6px 0;
  cursor: pointer;
  font-size: 1rem;
  color: #5F8B4C;
}

.header-search button:hover {
  background-color: #f3f4d4;
  color: #5F8B4C;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-right .icon {
  font-size: 18px;
  color: #fff;
  text-decoration: none;
}

.shop-btn {
  background-color: #F0F1C5;
  color: #5F8B4C;
  padding: 15px 40px;
  border-radius: 4%;
  font-weight: 600;
  text-decoration: none;
}

.shop-btn:hover {
  background-color: #f3f4d4;
  color: #5F8B4C;
}

/* Header Nav */

nav.main-nav {
    background: #fff;
    padding: 25px 0;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #eee;
}

.menu-top-menu-container ul {
    display: flex !important;
    justify-content: center !important;
    gap: 2rem !important;
    padding: 0 !important;
    margin: 0 !important;
}

ul#menu-top-menu li {
    list-style: none;
}

nav.main-nav a {
    text-decoration: none;
    color: #1d1d1d;
    font-weight: 600;
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
}

nav.main-nav a:hover {
    color: #5F8B4C;
}

/* Header Section */

/* Hero Section */

.hero-slider {
  position: relative;
  overflow: hidden;
  height: 72vh;
}

.hero-slide {
  width: 100%;
  height: 72vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: 0;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.4); /* 50% black overlay */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin-left: 5%;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
  padding: 20% 0;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.hero-btn {
  display: inline-block;
  background-color: #F0F1C5;
  color: #5F8B4C;
  padding: 15px 40px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4%;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.hero-btn:hover {
  background-color: #e0e1a8;
}

/* Hero Section */



/* Home Page CSS */


/* Feature Icons Section */

.features-section {
  background-color: #F0F1C5;
  color: #333;
  text-align: center;
  padding: 60px 20px;
  transition: background 0.5s ease-in-out;
}

.features-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-box {
  max-width: 300px;
  font-size: 1.1rem;
  line-height: 1.6;
  transition: transform 0.3s ease-in-out;
}

.feature-box:hover {
  transform: translateY(-10px);
}

.feature-box i {
  font-size: 36px;
  margin-bottom: 15px;
  color: #5F8B4C;
  display: block;
  animation: bounce 2s infinite;
}

.feature-box strong {
  color: #5F8B4C;
  font-size: 18px;
}

/* Feature Icons Section */

/* Product Listing Section 1 */

.product-section {
  background: #fff;
  padding: 60px 20px;
  font-family: 'Open Sans', sans-serif;
}

.product-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto 30px;
  position: relative;
}

.product-list-before-image {
  position: absolute;
  color: #5F8B4C;
  font-size: 64px;
  top: 15px;
  left: -80px;
}

.product-header h2 {
  font-size: 1.5rem;
  color: #5F8B4C;
  margin: -2px;
}

.product-header .view-all {
  color: #5F8B4C;
  font-weight: bold;
  text-decoration: none;
  margin-left: auto;
}

.leaf-decor {
  width: 32px;
  height: 32px;
}

.product-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  flex: 1 1 calc(20% - 24px);
  border: 1px solid #e0e0e0;
  text-align: center;
  padding: 20px;
  background: #fff;
  position: relative;
  transition: transform 0.3s ease;
  min-width: 220px;
}

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

.product-img {
  height: 160px;
  background: #f1f1f1;
  margin-bottom: 10px;
  position: relative;
}

.sold-label {
  position: absolute;
  top: 8px;
  right: 8px;
  background: #333;
  color: #fff;
  font-size: 0.75rem;
  padding: 2px 6px;
  border-radius: 2px;
}

.product-card h3 {
  font-size: 1rem;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.price {
  font-weight: bold;
  margin: 10px 0;
  color: #5F8B4C;
}

.add-to-cart {
  background: #F0F1C5;
  border: none;
  color: #333;
  padding: 10px 20px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
  border-radius: 4px;
}

.add-to-cart:hover:not([disabled]) {
  background: #e0e1a0;
}

.add-to-cart[disabled] {
  background: #e6e6e6;
  color: #999;
  cursor: not-allowed;
}

.product-list-after-image {
  position: absolute;
  color: #5F8B4C;
  font-size: 100px;
  right: 50px;
}

@media (max-width: 768px) {
  .product-grid {
    flex-direction: column;
    align-items: center;
  }
  .product-card {
    width: 90%;
  }
  .product-header {
    flex-direction: row;
    align-items: center;
  }
}

/* Product Listing Section 1 */

/* Product Listing Section 2 */

.micro-section {
  padding: 60px 20px;
  font-family: 'Open Sans', sans-serif;
}

.micro-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  max-width: 1200px;
  margin: 0 auto 30px;
}

.micro-section-before-image {
  position: absolute;
  color: #5F8B4C;
  font-size: 64px;
  top: 10px;
  left: -50px;
}

.micro-title {
  font-size: 1.5rem;
  margin: 0 -1px;
  color: #5F8B4C;
  flex: 1;
  text-align: left;
}

.micro-view-all {
  color: #5F8B4C;
  font-weight: bold;
  text-decoration: none;
}

.micro-leaf-left {
  font-size: 64px;
  color: #5F8B4C;
  position: absolute;
  top: -30px;
  left: 0;
}

.micro-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.micro-card {
  flex: 1 1 calc(20% - 24px);
  min-width: 220px;
  border: 1px solid #e0e0e0;
  padding: 20px;
  background: #fff;
  position: relative;
  text-align: center;
  transition: transform 0.3s ease;
}

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

.micro-img {
  height: 240px;
  background: #f3f3f3;
  margin-bottom: 10px;
}

.micro-sold {
  position: absolute;
  top: 8px;
  right: 8px;
  background: #333;
  color: #fff;
  font-size: 0.75rem;
  padding: 2px 6px;
  border-radius: 2px;
}

.micro-name {
  font-size: 1rem;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.micro-price {
  font-weight: bold;
  margin: 10px 0;
  color: #5F8B4C;
}

.micro-btn {
  background: #F0F1C5;
  border: none;
  color: #333;
  padding: 10px 20px;
  cursor: pointer;
  font-weight: 600;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.micro-btn:hover:not([disabled]) {
  background: #e0e1a0;
}

.micro-btn[disabled] {
  background: #e6e6e6;
  color: #999;
  cursor: not-allowed;
}

.micro-leaf-bottom {
  width: 100%;
  text-align: right;
  padding: 20px 40px 0 0;
}

.micro-leaf-bottom i {
  font-size: 48px;
  color: #5F8B4C;
}

.micro-section-after-image {
  position: absolute;
  color: #5F8B4C;
  font-size: 100px;
  bottom: -30px;
  right: -30px;
}

@media (max-width: 768px) {
  .micro-grid {
    flex-direction: column;
    align-items: center;
  }

  .micro-card {
    width: 90%;
  }

  .micro-header {
    flex-direction: row;
    align-items: center;
  }
}

/* Product Listing Section 2 */

/* Categories Grid Section */

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Makes 3 equal columns */
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.category-box {
  background-size: cover;
  background-position: center;
  height: 320px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
}

.category-btn-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
}

.category-box span {
  background: rgba(255, 255, 255, 0.8);
  padding: 15px 40px;
  font-size: 1.3rem;
  font-weight: bold;
  color: #5F8B4C;
  border-radius: 6px;
  text-align: center;
}

@media (max-width: 768px) {
  .category-grid.two-column {
    grid-template-columns: 1fr; /* Stack boxes vertically on mobile */
  }
}

/* Categories Grid Section */

/* Membership Info Section */

.membership-section {
  background-color: #F8F7EF;
  padding: 60px 20px;
  font-family: 'Open Sans', sans-serif;
}

.membership-container {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.membership-text {
  flex: 1;
  max-width: 450px;
}

.membership-text h3 {
  color: #5F8B4C;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.membership-text p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.membership-btn {
  background-color: #E8F0C7;
  padding: 15px 40px;
  color: #333;
  font-weight: bold;
  text-decoration: none;
  border-radius: 4px;
  font-size: 0.95rem;
  display: inline-block;
  transition: background 0.3s ease;
}

.membership-btn:hover {
  background-color: #d3e2a8;
}

.membership-image {
  flex: 1;
  min-height: 600px;
  max-width: 600px;
  background-size: cover;
  background-position: center;
  border-radius: 6px;
}

@media (max-width: 768px) {
  .membership-container {
    flex-direction: column;
  }

  .membership-image {
    width: 100%;
    height: 250px;
  }
}

/* Membership Info Section */

/* Transport Icons Section */

.transport-icons-section {
  background: #F0F1C5;
  padding: 60px 20px;
  text-align: center;
}

.transport-grid {
  display: flex;
  justify-content: center;
  gap: 120px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}

.transport-box {
  text-align: center;
}

.transport-box i {
  font-size: 32px;
  color: #5F8B4C;
}

.transport-box p {
  color: #5F8B4C;
  font-weight: bold;
  margin-top: 10px;
  font-size: 18px;
}

/* Transport Icons Section */

/* Background Image Text Section */

.background-message-section {
  background-image: url('https://i.ibb.co/MZd4VZ3/background-message.jpg'); /* Replace with your own */
  background-size: cover;
  background-position: center;
  padding: 100px 20px;
  text-align: center;
  color: white;
  font-family: 'Georgia', serif;
  position: relative;
}

.background-overlay {
  background-color: rgba(0, 0, 0, 0.4); /* subtle dark overlay */
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px;
  border-radius: 10px;
}

.background-overlay h2 {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #fff;
}

@media (max-width: 768px) {
  .background-overlay h2 {
    font-size: 1.2rem;
  }
}

/* Background Image Text Section */

/* Stay Up to Date Section */

.instagram-message-section {
  background-color: #fff;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.instagram-message-container {
  max-width: 600px;
  margin: 0 auto;
}

.instagram-title {
  font-size: 26px;
  color: #5F8B4C;
  font-family: 'Playfair Display', serif;
  margin-bottom: 15px;
}

.instagram-text {
  font-size: 16px;
  color: #2F2F2F;
  font-family: 'Barlow', sans-serif;
  margin-bottom: 25px;
  line-height: 1.6;
}

.instagram-btn {
  background-color: #E6F0C0;
  padding: 15px 40px;
  color: #2F2F2F;
  border: none;
  border-radius: 4px;
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.instagram-btn:hover {
  background-color: #dce8a8;
}

/* Stay Up to Date Section */

/* Cooking Gallery Section */

.cooking-gallery-section {
  background-color: #f8f6ec;
  padding: 60px 20px;
  text-align: center;
}

.cooking-gallery-header{
  text-align: left;
  padding-left: 120px;
}

.cooking-gallery-title {
  font-size: 28px;
  color: #5F8B4C;
  font-family: 'Playfair Display', serif;
  margin-bottom: 40px;
}

.cooking-gallery-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.gallery-image {
  width: 300px;
  height: 300px;
  background-color: #eee;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.gallery-image:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* Cooking Gallery Section */

/* Newsletter Subscription Section */

.newsletter-section {
  background-color: #f3f3f2;
  padding: 50px 20px;
  text-align: center;
}

.newsletter-title {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: #5F8B4C;
  margin-bottom: 15px;
}

.newsletter-description {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  color: #3a3a3a;
  margin-bottom: 25px;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.newsletter-form input[type="email"] {
  padding: 15px 30px;
  width: 300px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
}

.newsletter-form button {
  padding: 15px 40px;
  background-color: #dbe7b0;
  color: #3e3e3e;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.newsletter-form button:hover {
  background-color: #cbd89a;
}

/* Newsletter Subscription Section */


/* Home Page CSS */



/* Memberships Page CSS */


/* Inner Hero Section */

.inner-hero {
  background-image: url('https://i.ibb.co/JPf3HwY/Our-Greens-Strip-Image.jpg'); /* Replace with your actual image path */
  background-size: cover;
  background-position: center;
  height: 350px;
  position: relative;
}

/* Inner Hero Section */

/* Farm Membership Section */

.farm-membership-section {
  background-color: #f9f7ef;
  padding: 60px 20px;
}

.farm-membership-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

.farm-membership-text {
  flex: 1 1 400px;
  max-width: 400px;
  color: #2d2d2d;
  line-height: 24px;
}

.farm-membership-heading {
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  color: #5c9146;
  margin-bottom: 20px;
}

.farm-membership-sub-heading {
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  color: #333;
  margin-bottom: 20px;
}

.farm-membership-text ul {
  padding-left: 20px;
  margin-top: 20px;
  margin-bottom: 10px;
  list-style: disc;
  line-height: 30px;
  fot-size: 18px;
}

.farm-membership-button {
  display: inline-block;
  margin-top: 20px;
  background-color: #E8F0C7;
  font-family: 'Poppins', sans-serif;
  color: #333;
  padding: 15px 40px;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.farm-membership-button:hover {
  background-color: #d3e2a8;
}

.farm-membership-image img {
  width: 100%;
  max-width: 600px;
  border-radius: 6px;
}

/* Farm Membership Section */

/* Sign Up Popup Section */

.modal {
  display: none; 
  position: fixed; 
  z-index: 1000; 
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%; 
  background-color: rgba(0,0,0,0.5);
}
.modal-content {
  background: #fff;
  padding: 20px;
  margin: 10% auto;
  width: 40%;
  height: 60%;
  border-radius: 8px;
  align-content: center;
}
.close-btn {
  float: right;
  cursor: pointer;
  font-size: 24px;
}

/* Sign Up Popup Section */

/* Money Goes Section */

.money-goes-section {
  background-color: #fff;
  padding: 60px 20px;
}

.money-goes-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

.money-goes-image img {
  flex: 1;
  min-height: 500px;
  max-width: 600px;
  background-size: cover;
  background-position: center;
  border-radius: 6px;
}

.money-goes-text {
  flex: 1 1 400px;
  max-width: 400px;
  color: #2d2d2d;
  line-height: 24px;
}

.money-goes-heading {
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  color: #5c9146;
  margin-bottom: 20px;
}

.money-goes-text ul {
  padding-left: 20px;
  margin-top: 20px;
  margin-bottom: 10px;
  list-style: disc;
  line-height: 30px;
  fot-size: 18px;
}

/* Money Goes Section */

/* Membership Details Section */

.membership-details-section {
  background-color: #fcfaf3;
  padding: 60px 20px;
}

.membership-details-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

.membership-details-text {
  flex: 1 1 400px;
  max-width: 400px;
  color: #2d2d2d;
  line-height: 24px;
}

.membership-details-heading {
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  color: #5c9146;
  margin-bottom: 20px;
}

.membership-details-text ul {
  padding-left: 20px;
  margin-top: 20px;
  margin-bottom: 10px;
  list-style: disc;
  line-height: 30px;
  fot-size: 18px;
}

.membership-details-image img {
  flex: 1;
  min-height: 600px;
  max-width: 600px;
  background-size: cover;
  background-position: center;
  border-radius: 6px;
}

/* Membership Details Section */


/* Memberships Page CSS */



/* Our Greens Page CSS */


/* Inner Hero Section */

.inner-hero {
  background-image: url('https://i.ibb.co/JPf3HwY/Our-Greens-Strip-Image.jpg'); /* Replace with your actual image path */
  background-size: cover;
  background-position: center;
  height: 350px;
  position: relative;
}

.inner-hero .overlay {
  background-color: rgba(0, 0, 0, 0.4); /* semi-transparent black overlay */
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.inner-hero .text-container {
  color: #fff;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
}

.inner-hero .subheading {
  font-size: 16px;
  font-weight: 300;
  margin: 0;
}

.inner-hero .title {
  font-size: 48px;
  font-weight: bold;
  margin-top: 10px;
}

/* Inner Hero Section */

/* Greens Section */

.greens-section {
  background: #f7f5ed;
  padding: 50px 200px;
  text-align: left;
}

.greens-section h2 {
  font-family: 'Poppins', sans-serif;
  color: #5F8B4C;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 30px;
}

.greens-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.green-item img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 10px;
}

.green-item h3 {
  font-size: 16px;
  font-weight: 600;
  padding-top: 10px;
  padding-left: 5px;
  padding-right: 5px;
  margin: 0 0 8px;
}

.green-item p {
  font-size: 14px;
  line-height: 1.5;
  padding-left: 5px;
  padding-right: 5px;
  margin: 0;
  color: #333;
}

/* Greens Section */

/* Greens Info Section */

.greens-info {
  padding: 60px 0;
  background: #fff;
}

.greens-info .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  flex-wrap: wrap;
}

.greens-info .text-content {
  flex: 1;
  max-width: 500px;
  padding-left: 100px;
  min-width: 300px;
}

.greens-info h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  color: #5F8B4C;
  font-weight: 600;
  margin-bottom: 20px;
}

.greens-info p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 15px;
}

.greens-info strong {
  font-weight: 700;
}

.greens-info .btn {
  background-color: #E8F0C7;
  font-family: 'Poppins', sans-serif;
  color: #333;
  font-weight: bold;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 4px;
  display: inline-block;
  transition: background 0.3s ease;
}

.greens-info .btn:hover {
  background-color: #d3e2a8;
}

.greens-info .image-content {
  flex: 1;
  max-width: 650px;
  min-width: 300px;
  padding-right: 100px;
}

.greens-info .image-content img {
  max-height: 650px;
  width: 100%;
  border-radius: 6px;
}

/* Greens Info Section */


/* Our Greens Page CSS */



/* Our Farms Page CSS */


/* Inner Hero Section */

.our-farm-hero-slider {
  position: relative;
  overflow: hidden;
  height: 350px;
}

.our-farm-hero-slide {
  width: 100%;
  height: 350px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.our-farm-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: 0;
}

.our-farm-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.4); /* 50% black overlay */
  z-index: 1;
}

.our-farm-hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  color: #fff;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
  padding: 20% 0;
}

.our-farm-hero-content h1 {
  font-size: 48px;
  font-weight: bold;
  margin-top: 10px;
}

/* Inner Hero Section */

/* Future Farming Section */

.future-farming {
  display: flex;
  align-items: stretch; /* this is key */
  justify-content: space-between;
  padding: 80px 10%;
  background: #fff;
  gap: 60px;
  flex-wrap: wrap;
}

.farming-text {
  flex: 1;
  max-width: 500px;
  padding-left: 100px;
  text-align: right;
  padding-top: 20px;
}

.farming-text h3 {
  font-size: 1.5rem;
  font-family: 'Poppins', sans-serif;
  font-weight: bold;
  margin-bottom: 16px;
  color: #5F8B4C;
}

.farming-text p {
  margin-bottom: 15px;
  color: #2b2b2b;
  line-height: 1.6;
}

.farming-video {
  flex: 1;
  min-width: 550px;
  padding-right: 100px;
}

.video-box {
  width: 100%;
  height: 100%;
  max-height: 700px; /* You can increase this */
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

/* Future Farming Section */

/* Forward Thinking Section */

.forward-thinking {
  display: flex;
  align-items: stretch; /* this is key */
  justify-content: space-between;
  padding: 80px 10%;
  background: #fff;
  gap: 60px;
  flex-wrap: wrap;
}

.forward-video {
  flex: 1;
  min-width: 550px;
  padding-left: 100px;
}

.video-box {
  width: 100%;
  height: 100%;
  max-height: 700px; /* You can increase this */
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.forward-text {
  flex: 1;
  max-width: 500px;
  padding-right: 100px;
  padding-top: 20px;
}

.forward-text h3 {
  font-size: 1.5rem;
  font-family: 'Poppins', sans-serif;
  font-weight: bold;
  margin-bottom: 16px;
  color: #5F8B4C;
}

.forward-text p {
  margin-bottom: 15px;
  color: #2b2b2b;
  line-height: 1.6;
}

/* Forward Thinking Section */

/* Nutrition Section */

.nutrition-section {
  background: #F0F1C5;
  color: #000;
  padding: 80px 10%;
  text-align: center;
}

.nutrition-section h2 {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 60px;
  color: #5F8B4C;
}

.nutrition-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  text-align: left;
  justify-items: center;
}

.nutrition-item {
  max-width: 300px;
}

.nutrition-item i {
  font-size: 50px;
  margin-bottom: 20px;
  color: #5F8B4C;
}

.nutrition-item h4 {
  font-size: 1.1rem;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
  color: #5F8B4C;
}

.nutrition-item p {
  font-size: 15px;
  line-height: 1.6;
  color: #000;
}

/* Nutrition Section */

/* Season Section */

.season-section {
  background-color: #f5f1e9;
  padding: 80px 10%;
}

.season-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.text-column {
  flex: 1;
  max-width: 450px;
  margin-right: 40px;
  padding-left: 50px;
  padding-right: 30px;
}

.text-column h3 {
  font-size: 1.5rem;
  font-family: 'Poppins', sans-serif;
  font-weight: bold;
  margin-bottom: 20px;
  color: #5F8B4C;
  text-align: left;
}

.text-column p {
  font-size: 18px;
  line-height: 1.7;
  color: #333;
  text-align: left;
}

.image-column {
  flex: 1;
  min-width: 300px;
  padding-right: 50px;
}

.image-column img {
  width: 100%;
  border-radius: 6px;
  display: block;
}

/* Season Section */

/* Farmer Section */

.farmer-section {
  background-color: #fff;
  padding: 80px 10%;
}

.farmer-content {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.farmer-image {
  flex: 1;
  padding-left: 100px;
  min-width: 350px;
}

.farmer-image img {
  width: 100%;
  border-radius: 4px;
}

.farmer-text {
  flex: 1;
  padding-right: 100px;
  min-width: 300px;
}

.farmer-text h3 {
  font-size: 1.5rem;
  font-family: 'Poppins', sans-serif;
  color: #5F8B4C;
  font-weight: 700;
  margin-bottom: 15px;
}

.farmer-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 20px;
}

.farmer-btn {
  background-color: #E8F0C7;
  font-family: 'Poppins', sans-serif;
  color: #333;
  font-weight: bold;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 4px;
  display: inline-block;
  transition: background 0.3s ease;
}

.farmer-btn:hover {
  background-color: #d3e2a8;
}

/* Farmer Section */


/* Our Farms Page CSS */



/* Our Farms Store Page CSS */


/* Inner Hero Section */

.inner-hero {
  background-image: url('https://i.ibb.co/JPf3HwY/Our-Greens-Strip-Image.jpg'); /* Replace with your actual image path */
  background-size: cover;
  background-position: center;
  height: 350px;
  position: relative;
}

/* Inner Hero Section */

/* Farm To Fork Section */

.farm-to-fork-section {
  background-color: #f9f7ef;
  padding: 60px 20px;
 
}

.farm-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

.farm-text {
  flex: 1 1 400px;
  max-width: 400px;
  color: #2d2d2d;
  line-height: 24px;
}

.farm-heading {
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  color: #5c9146;
  margin-bottom: 20px;
}

.farm-highlight {
  font-weight: 500;
  color: #2d2d2d;
  margin: 15px 0;
}

.farm-button {
  display: inline-block;
  margin-top: 20px;
  background-color: #E8F0C7;
  font-family: 'Poppins', sans-serif;
  color: #333;
  padding: 15px 40px;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.farm-button:hover {
  background-color: #d3e2a8;
}

.farm-image img {
  width: 100%;
  max-width: 600px;
  border-radius: 6px;
}

.our-farm-video-slider {
  position: relative;
  overflow: hidden;
  height: 70vh;
}

/* Farm To Fork Section */

/* Product Gallery Section */

.online-store-product-gallery {
  background-color: #fff;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
}

.online-store-gallery-wrapper {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.online-store-product-card {
  flex: 1 1 300px;
  max-width: 370px;
  border-radius: 6px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.online-store-product-card img {
  width: 100%;
  height: 280px;
  display: block;
}

.online-store-product-card:hover {
  transform: scale(1.03);
}

/* Product Gallery Section */

/* Online Store Section */

.online-store-shop-section {
  background-color: #f9f7ef;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
}

.online-store-shop-container {
  max-width: 600px;
  margin: 0 auto;
}

.online-store-shop-text {
  color: #2d2d2d;
  max-width: 700px;
}

.online-store-shop-heading {
  font-size: 1.5rem;
  color: #5F8B4C;
  font-weight: 700;
  margin-bottom: 20px;
}

.online-store-shop-text p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.online-store-shop-text strong {
  font-weight: 700;
  color: #222;
}

.online-store-shop-button {
  display: inline-block;
  background-color: #E8F0C7;
  color: #333;
  text-decoration: none;
  padding: 15px 40px;
  font-weight: 600;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.online-store-shop-button:hover {
  background-color: #d3e2a8;
}

/* Online Store Section */


/* Our Farms Store Page CSS */



/* Recipes Page CSS */


/* Inner Hero Section */

.inner-hero {
  background-image: url('https://i.ibb.co/JPf3HwY/Our-Greens-Strip-Image.jpg'); /* Replace with your actual image path */
  background-size: cover;
  background-position: center;
  height: 350px;
  position: relative;
}

/* Inner Hero Section */

/* Recipes Section */

.vf-recipes-section {
  background-color: #ffffff;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
}
.vf-recipes-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}
.vf-recipe-card {
  flex: 1 1 30%;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  text-align: left;
}
.vf-recipe-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.vf-recipe-card h3 {
  font-size: 20px;
  line-height: 30px;
  margin: 16px;
  color: #2e2e2e;
}
.vf-recipe-card p {
  font-size: 14px;
  color: #555;
  line-height: 24px;
  margin: 0 16px 16px;
}
.vf-recipe-button {
  background-color: #E8F0C7;
  color: #333;
  padding: 10px 40px;
  font-size: 14px;
  font-weight: bold;
  margin: 0 16px 30px;
  display: inline-block;
  text-decoration: none;
  border-radius: 4px;
}

.vf-recipe-button:hover {
  background-color: #d3e2a8;
}

/* Recipes Section */

/* Recipes Inner Section */

.recipe-detail-section {
  background-color: #fff;
  padding: 60px 20px;
  font-family: 'Open Sans', sans-serif;
}

.recipe-detail-container {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.recipe-detail-text {
  flex: 1;
  max-width: 550px;
}

.recipe-detail-text h3 {
  color: #5F8B4C;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.recipe-detail-text h4 {
  color: #5F8B4C;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.recipe-detail-text .vinaigrette {
  color: #333;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.recipe-detail-text p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.recipe-detail-image {
  flex: 1;
  min-height: 800px;
  max-width: 650px;
  background-size: cover;
  background-position: center;
  border-radius: 6px;
}

.recipe-detail-text ul {
	margin-left: 20px;
	line-height: 1.8;
	margin-bottom: 20px;
}

@media (max-width: 768px) {
  .recipe-detail-container {
    flex-direction: column;
  }

  .recipe-detail-image {
    width: 100%;
    height: 250px;
  }
}


/* Recipes Inner Section */

/* Recipes Inner Long Section */

.recipe-detail-long-section {
  padding: 1px 20px 50px 0;
  background-color: #fff;
}

.recipe-detail-long-wrapper {
  max-width: 1150px;
  margin: 0 auto;
}

.recipe-detail-long-wrapper h3 {
  color: #5F8B4C;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-family: 'Poppins', sans-serif;
}

.recipe-detail-long-wrapper h4 {
  color: #333;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-family: 'Poppins', sans-serif;
}

.recipe-detail-long-wrapper p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.recipe-detail-long-wrapper ul {
	margin-left: 20px;
	line-height: 1.8;
	margin-bottom: 20px;
}

/* Recipes Inner Long Section */


/* Recipes Page CSS */



/* Careers Page CSS */


/* Inner Hero Section */

.inner-hero {
  background-image: url('https://i.ibb.co/JPf3HwY/Our-Greens-Strip-Image.jpg'); /* Replace with your actual image path */
  background-size: cover;
  background-position: center;
  height: 350px;
  position: relative;
}

/* Inner Hero Section */

/* Careers Section */

.vf-careers-section {
  padding: 60px 20px;
  background-color: #fff;
}

.vf-careers-wrapper {
  background-color: #dedcd4;
  padding: 40px;
  border-radius: 6px;
  max-width: 1200px;
  margin: auto;
}

.vf-careers-wrapper h3,
.vf-careers-wrapper h4 {
  color: #5F8B4C;
  font-family: 'Poppins', sans-serif;
  margin-top: 1.5rem;
  margin-bottom: 20px;
}

.vf-careers-wrapper p {
  color: #333;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.vf-careers-wrapper ul {
  padding-left: 20px;
  margin-bottom: 20px;
  list-style: disc;
  line-height: 30px;
}

.vf-careers-wrapper .vf-apply-now-button {
  background-color: #E8F0C7;
  font-family: 'Poppins', sans-serif;
  color: #333;
  padding: 15px 40px;
  font-size: 14px;
  font-weight: bold;
  margin: 15px 0 16px;
  display: inline-block;
  text-decoration: none;
  border-radius: 4px;
}

.vf-careers-wrapper .vf-apply-now-button:hover {
  background-color: #d3e2a8;
}

/* Careers Section */


/* Careers Page CSS */



/* FAQ's Page CSS */


/* Inner Hero Section */

.inner-hero {
  background-image: url('https://i.ibb.co/JPf3HwY/Our-Greens-Strip-Image.jpg'); /* Replace with your actual image path */
  background-size: cover;
  background-position: center;
  height: 350px;
  position: relative;
}

/* Inner Hero Section */

/* FAQ'S Section */

.vf-faq-section {
  padding: 60px 20px;
  background-color: #ffffff;
}
.vf-faq-wrapper {
  max-width: 1200px;
  margin: auto;
}
.vf-faq-wrapper h2 {
  font-size: 1.5rem;
  font-family: 'Poppins', sans-serif;
  color: #5F8B4C;
  margin-bottom: 30px;
}
.vf-faq-item {
  margin-bottom: 20px;
  padding-right: 290px;
}
.vf-faq-item h4 {
  font-size: 1.2rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 8px;
}
.vf-faq-item p {
  font-size: 17px;
  color: #333;
  line-height: 25px;
  margin-left: 0;
}

/* FAQ'S Section */


/* FAQ's Page CSS */



/* Contact Us Page CSS */


/* Inner Hero Section */

.inner-hero {
  background-image: url('https://i.ibb.co/JPf3HwY/Our-Greens-Strip-Image.jpg'); /* Replace with your actual image path */
  background-size: cover;
  background-position: center;
  height: 350px;
  position: relative;
}

/* Inner Hero Section */

/* Contact Section */

.vf-contactus-section {
  padding: 60px 20px;
  background-color: #f5f3ec;
}

.vf-contactus-wrapper {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1200px;
  margin: auto;
}

.vf-contactus-text {
  max-width: 500px;
  flex: 1;
  padding-left: 50px;
}

.vf-contactus-text h3 {
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  color: #5c9146;
  margin-bottom: 20px;
  margin-top: 20px;
}

.vf-contactus-text h4 {
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  color: #333;
  margin-bottom: 20px;
}

.vf-contactus-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #2b2b2b;
  margin-bottom: 20px;
}

.vf-contactus-img {
  flex: 1 1 45%;
  max-width: 600px;
  max-height: 650px;
}

.vf-contactus-img img {
  width: 100%;
  border-radius: 6px;
  max-height: 650px;
}

/* Contact Section */

/* Contact Update Section */

.vf-contactus-update-section {
  padding: 1px 20px 50px 0;
  background-color: #f5f3ec;
}

.vf-contactus-update-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.vf-contactus-update-wrapper p {
  font-size: 16px;
  line-height: 1.6;
  color: #2b2b2b;
  margin-bottom: 20px;
}

.vf-contactus-update-wrapper h4 {
  margin-top: 30px;
  margin-bottom: 16px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  color: #5c9146;
}

/* Contact Update Section */

/* Contact Form Section */

.vf-contact-us-modern {
  padding: 60px 20px;
  background-color: #fff;
}

.vf-contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.vf-contact-info {
  flex: 1 1 40%;
  background: #f4f2e9;
  color: #333;
  padding: 40px 30px;
  border-radius: 6px;
  text-align: center center;
}

.vf-contact-info p {
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 28px;
}
.vf-contact-icons {
  margin-top: 20px;
}

.vf-contact-icons a {
  font-size: 18px;
  display: inline-block;
  transition: transform 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background-color: #333;
  color: #f4f2e9;
  border-radius: 3px;
  text-decoration: none;
  margin: 0 3px;
}

.vf-contact-form-box {
  flex: 1 1 50%;
  background-color: #f9f9f9;
  padding: 40px 30px;
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.vf-contact-form-box form {
  display: flex;
  flex-direction: column;
}

.vf-contact-form-box input,
.vf-contact-form-box textarea {
  margin-bottom: 15px;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}

.vf-contact-form-box button {
  background-color: #E8F0C7;
  font-family: 'Poppins', sans-serif;
  color: #333;
  font-weight: bold;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 4px;
  display: inline-block;
  border: none;
  transition: background 0.3s ease;
}

.vf-contact-form-box button:hover {
  background-color: #d3e2a8;
}

/* Contact Form Section */


/* Contact Us Page CSS */



/* Retail Shop Page CSS */


/* Inner Hero Section */

.inner-hero {
  background-image: url('https://i.ibb.co/JPf3HwY/Our-Greens-Strip-Image.jpg'); /* Replace with your actual image path */
  background-size: cover;
  background-position: center;
  height: 350px;
  position: relative;
}

/* Inner Hero Section */

/* Shop Icons Section */

.vf-shop-icons {
  background-color: #F0F1C5;
  color: #333;
  text-align: left;
  padding: 60px 20px;
  transition: background 0.5s ease-in-out;
}

.vf-shop-wrapper {
  display: flex;
  justify-content: space-around;
  gap: 2px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}

.vf-shop-icon-item {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #333;
  font-size: 1.2rem;
}

.vf-shop-icon-item i {
  font-size: 2em;
  color: #5F8B4C;
}

.vf-shop-icon-item p {
  margin: 0;
  font-size: 1.3rem;
  color: #333;
  font-weight: 600;
  line-height: 30px;
  font-family: 'Poppins', sans-serif;
}

.vf-shop-icon-item strong {
  display: block;
  font-weight: bold;
  color: #333;
  font-size: 16px;
}

/* Shop Icons Section */

/* VP Member Notic Section */

.vf-member-notice {
  background-color: #fff;
  padding: 50px 20px;
  color: white;
  text-align: center;
}

.vf-member-notice-content {
  max-width: 1000px;
  margin: 0 auto;
  font-size: 1.2em;
  line-height: 1.6em;
  color: #333;
}

/* VP Member Notic Section */

/* Product Listing 1 Section */

.leafy-greens-product-section {
  background: #f4f2e9;
  padding: 60px 20px;
  font-family: 'Open Sans', sans-serif;
}

.leafy-greens-product-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto 30px;
  position: relative;
}

.leafy-greens-product-header h2 {
  font-size: 1.5rem;
  color: #5F8B4C;
  margin: -2px;
}

.leafy-greens-product-header .view-all {
  color: #5F8B4C;
  font-weight: bold;
  text-decoration: none;
  margin-left: auto;
}

.leafy-greens-product-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.leafy-greens-product-card {
  flex: 1 1 calc(20% - 24px);
  border: 1px solid #e0e0e0;
  text-align: center;
  padding: 20px;
  background: #fff;
  position: relative;
  transition: transform 0.3s ease;
  min-width: 220px;
}

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

.leafy-greens-product-img {
  height: 160px;
  background: #f1f1f1;
  margin-bottom: 10px;
  position: relative;
}

.sold-label {
  position: absolute;
  top: 8px;
  right: 8px;
  background: #333;
  color: #fff;
  font-size: 0.75rem;
  padding: 2px 6px;
  border-radius: 2px;
}

.leafy-greens-product-card h3 {
  font-size: 1rem;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.price {
  font-weight: bold;
  margin: 10px 0;
  color: #5F8B4C;
}

.add-to-cart {
  background: #F0F1C5;
  border: none;
  color: #333;
  padding: 10px 20px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
  border-radius: 4px;
}

.add-to-cart:hover:not([disabled]) {
  background: #e0e1a0;
}

.add-to-cart[disabled] {
  background: #e6e6e6;
  color: #999;
  cursor: not-allowed;
}

@media (max-width: 768px) {
  .leafy-greens-product-grid {
    flex-direction: column;
    align-items: center;
  }
  .leafy-greens-product-card {
    width: 90%;
  }
  .leafy-greens-product-header {
    flex-direction: row;
    align-items: center;
  }
}

/* Product Listing 1 Section */

/* Product Listing Section 2 */

.microgreens-section {
  padding: 60px 20px;
  background: #fff;
  font-family: 'Open Sans', sans-serif;
}

.microgreens-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  max-width: 1200px;
  margin: 0 auto 30px;
}

.microgreens-title {
  font-size: 1.5rem;
  margin: 0 -1px;
  color: #5F8B4C;
  flex: 1;
  text-align: left;
}

.microgreens-view-all {
  color: #5F8B4C;
  font-weight: bold;
  text-decoration: none;
}

.microgreens-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.microgreens-card {
  flex: 1 1 calc(20% - 24px);
  min-width: 220px;
  border: 1px solid #e0e0e0;
  padding: 20px;
  background: #fff;
  position: relative;
  text-align: center;
  transition: transform 0.3s ease;
}

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

.microgreens-img {
  height: 240px;
  background: #f3f3f3;
  margin-bottom: 10px;
}

.microgreens-sold {
  position: absolute;
  top: 8px;
  right: 8px;
  background: #333;
  color: #fff;
  font-size: 0.75rem;
  padding: 2px 6px;
  border-radius: 2px;
}

.microgreens-name {
  font-size: 1rem;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.microgreens-price {
  font-weight: bold;
  margin: 10px 0;
  color: #5F8B4C;
}

.microgreens-btn {
  background: #F0F1C5;
  border: none;
  color: #333;
  padding: 10px 20px;
  cursor: pointer;
  font-weight: 600;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.microgreens-btn:hover:not([disabled]) {
  background: #e0e1a0;
}

.microgreens-btn[disabled] {
  background: #e6e6e6;
  color: #999;
  cursor: not-allowed;
}

@media (max-width: 768px) {
  .microgreens-grid {
    flex-direction: column;
    align-items: center;
  }

  .microgreens-card {
    width: 90%;
  }

  .microgreens-header {
    flex-direction: row;
    align-items: center;
  }
}

/* Product Listing Section 2 */


/* Retail Shop Page CSS */



/* Wholesale Shop Page CSS */


/* Wholesale Shop Section */

.vf-order-request {
  padding: 50px 20px;
  background: #f9f9f9;
  font-family: Poppins, sans-serif;
}

.vf-order-wrapper {
  max-width: 800px;
  margin: auto;
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.vf-order-header {
  text-align: center;
  margin-bottom: 30px;
}

.vf-order-header img {
  max-width: 150px;
  margin-bottom: 20px;
}

.vf-order-header h2 {
  font-size: 1.6rem;
  color: #5F8B4C;
  margin-bottom: 15px;
}

.vf-order-header p {
  color: #333;
  margin-bottom: 15px;
  line-height: 25px;
  padding-left: 100px;
  padding-right: 100px;
}

.vf-order-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 16px;
  font-family: Poppins, sans-serif;
  margin-bottom: 20px;
}

.vf-order-row input,
.vf-order-row select,
.vf-order-form textarea {
  flex: 1;
  padding: 10px;
  font-size: 1em;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.vf-order-form textarea {
  width: 100%;
  min-height: 80px;
}

.vf-order-form textarea{
  font-size: 16px;
  font-family: Poppins, sans-serif;
}
.vf-order-note {
  font-size: 1em;
  color: #333;
  margin-top: 15px;
  margin-bottom: 20px;
}

.vf-order-form h3 {
  margin-top: 40px;
  font-size: 1.3em;
  color: #5F8B4C;
  margin-bottom: 15px;
}

.vf-order-form p {
  color: #333;
  margin-bottom: 25px;
  line-height: 25px;
  padding-right: 70px;
}

.vf-field-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.vf-field-group label {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 5px;
  color: #333;
}

.vf-field-group label small {
  display: block;
  font-weight: 500;
  font-size: 18px;
  color: #777;
  margin-top: 2px;
}

.vf-hidden {
  display: none;
}

#vf-confirm-message {
  background-color: #e6f9e7;
  color: #2d6a4f;
  padding: 15px;
  text-align: center;
  border: 1px solid #b6e2c8;
  border-radius: 6px;
  margin-top: 20px;
  font-weight: 500;
}

.vf-divider {
  border: none;
  border-top: 1px solid #eee;
  margin: 30px 0;
}

.vf-button {
  width: 100%;
  height: 60px;
  background: #F0F1C5;
  color: #5F8B4C;
  font-family: Poppins, sans-serif;
  font-weight: 600;
  border: none;
  padding: 10px 20px;
  font-size: 1em;
  border-radius: 4px;
  cursor: pointer;
}

.vf-button:hover {
  background: #f3f4d4;
}

/* Wholesale Shop Section */


/* Wholesale Shop Page CSS */



/* Footer Section */

.site-footer {
  background-color: #5f8a52; /* Match header background */
  color: #ffffff;
  padding: 60px 40px;
  font-family: 'Roboto', sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column {
  flex: 1;
  min-width: 250px;
  margin: 20px;
}

.footer-logo {
  max-width: 120px;
  margin-bottom: 10px;
}

.footer-description {
  font-size: 15px;
  line-height: 1.6;
  color: #f1f1f1;
  width: 280px;
}

.footer-column h4 {
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #ffffff;
}

.get-in-touch p{
  padding: 6px;
}

.useful-link {
	padding-left: 100px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
  list-style: none !important;
}

.footer-links a {
  color: #f1f1f1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #d6e9c6;
}

.footer-social-icons {
  margin-top: 15px;
}

.footer-social-icons a {
  display: inline-block;
  transition: transform 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background-color: #ffffff;
  color: #5f8a52;
  border-radius: 3px;
  text-decoration: none;
  margin: 0 3px;
}

.footer-social-icons i {
  width: 20px;
  height: 20px;
  font-size: 20px;
}

.footer-social-icons a:hover {
  transform: scale(1.1);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-column {
    margin: 20px 0;
  }

  .footer-logo {
    margin: 0 auto 15px;
  }
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  margin-left: 30px;
  margin-right: 30px;
  border-top: 1px solid #fff;
  padding-top: 30px;
  font-size: 17px;
  color: #fff;
}

/* Footer Section */

/* Page Loader */

#page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease-out;
}

#page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.spinner {
  border: 6px solid #f3f3f3;
  border-top: 6px solid #5F8B4C;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Page Loader */

/* Primary Nav CSS */

.nav{
	display: flex;
}

/* Primary Nav CSS */