/* NAVBAR BASE */
.navbar2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  padding: 8px 50px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.nav-center {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-center a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-center a:hover {
  color: #2d5a83;
}

/* WALLET */
.wallet-link {
  text-decoration: none;
  display: inline-block;
}

.wallet-container {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #2d5a8310;
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px solid #2d5a8320;
  transition: all 0.3s ease;
}

.wallet-container:hover {
  background: #2d5a8320;
  transform: translateY(-2px);
}

.wallet-icon {
  width: 22px;
  height: 22px;
}

.wallet-text {
  font-size: 15px;
  font-weight: 500;
  color: #2d5a83;
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

.walletamountspan {
  font-weight: 600;
  color: #1a1a1a;
  background: #e3f2ff;
  padding: 2px 6px;
  border-radius: 6px;
  font-size: 14px;
}

/* PROFILE DROPDOWN */
.profile-dropdown {
  position: relative;
  display: inline-block;
  margin-left: 20px;
}

.profile-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #2d5a8310;
  border: 1px solid #2d5a8320;
  border-radius: 8px;
  padding: 6px 10px;
  cursor: pointer;
  transition: background 0.3s;
}

.profile-btn:hover {
  background: #2d5a8320;
}

.profile-icon {
  width: 20px;
  height: 20px;
}

.dropdown-arrow {
  width: 14px;
  height: 14px;
  opacity: 0.7;
  rotate:calc(180deg);
}

.dropdown-content {
  display: none;
  position: absolute;
  background: white;
  border-radius: 8px;
  min-width: 140px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  right: 0;
  top: 110%;
  overflow: hidden;
  z-index: 2000;
}

.dropdown-content a {
  color: #333;
  padding: 10px;
  display: block;
  text-decoration: none;
  transition: background 0.3s;
  font-size: 14px;
}

.dropdown-content a:hover {
  background: #f2f6fb;
  color: #2d5a83;
}

.profile-dropdown.active .dropdown-content {
  display: block;
}

/* LOGIN BUTTON */
.login-btn {
  background: #2d5a83;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 8px 16px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.3s;
}

.login-btn:hover {
  background: #20425f;
}

/* HAMBURGER MENU */
.nav-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  user-select: none;
}

/* RESPONSIVE DESIGN */
@media (max-width: 900px) {
  .navbar2 {
    padding: 8px 24px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-center {
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background: #fff;
    border-top: 1px solid #e0e0e0;
    padding: 20px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    text-align: center;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.5s ease;
  }

  .nav-center.active {
    max-height: 600px;
    opacity: 1;
  }

  /* Show Wallet on small screens */
  .wallet-container {
    justify-content: center;
  }

  /* Hide login button (in mobile we use dropdown) */
  .nav-right {
    display: none;
  }

  .profile-dropdown {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .wallet-container {
    padding: 5px 8px;
    gap: 6px;
  }

  .wallet-icon {
    width: 18px;
    height: 18px;
  }

  .wallet-text {
    font-size: 13px;
  }

  .walletamountspan {
    font-size: 12px;
    padding: 2px 4px;
  }

  /* .user-name {
    display: none;
  } */
}

.w-100 {
  width: 100%;
}

.image-person{
  width: 100%;
    height: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 2rem;
}

.cid-uvp8cn8Udv .row {
    align-items: center;
    padding-top: 2rem;
    padding-bottom: 2rem;
}
.cid-uvp8cn8Udv .row {
    flex-direction: row-reverse;
}

.page[data-page=home] .best-button {
background: transparent;
    border: 1px solid #2d5a83;
    border-radius: 6px;
    width: 100%;
    padding: 4px;
    margin-top: 4px;
}

/* Toolbar container */
#categoryMenu1 .toolbar-inner2 {
  display: grid;
  /* grid-template-columns: repeat(auto-fit, minmax(10px, 1fr)); */
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
  width: 100%;
  padding: 16px;
  background: #f8f9fa;
  border-radius: 12px;
}

/* Each category tab (vertical card on large screens) */
.page[data-page=home] .tab-link2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: #ffffff;
  border-radius: 12px;
  /* padding: 16px; */
  padding-bottom: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  min-height: 160px;
  border: 1px solid #f0f0f0;
}

/* Hover / active state */
.page[data-page=home] .tab-link2:hover,
.page[data-page=home] .tab-link2.active {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  border-color: #e0e0e0;
}

/* Image container (top - takes 60-70% of card) */
.page[data-page=home] .tab-link2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* border-radius: 8px; */
  margin-bottom: 12px;
  margin-right: 0;
  background: #f5f5f5;
  transition: transform 0.3s ease;
}

.page[data-page=home] .tab-link2:hover img {
  transform: scale(1.08);
}

/* Text container (bottom - centered) */
.page[data-page=home] .tab-link2 span {
  width: 100%;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: #333;
  word-wrap: break-word;
  overflow-wrap: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Tablet responsive */
@media (max-width: 768px) {
  #categoryMenu1 .toolbar-inner2 {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
    /* padding: 12px; */
  }

  .page[data-page=home] .tab-link2 {
    /* min-height: 140px;
    padding: 12px; */
  }

  .page[data-page=home] .tab-link2 img {
    /* max-width: 100px;
    height: 75px; */
    margin-bottom: 10px;
  }

  .page[data-page=home] .tab-link2 span {
    font-size: 14px;
  }
}

/* Mobile responsive (can switch to horizontal if needed) */
@media (max-width: 480px) {
  #categoryMenu1 .toolbar-inner2 {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 10px;
  }

  .page[data-page=home] .tab-link2 {
    min-height: 120px;
    /* padding: 10px; */
  }

  .page[data-page=home] .tab-link2 img {
    /* max-width: 80px; */
    height: 60px;
    margin-bottom: 8px;
  }

  .page[data-page=home] .tab-link2 span {
    font-size: 12px;
  }
}

/* Extra small devices */
@media (max-width: 360px) {
  #categoryMenu1 .toolbar-inner2 {
    gap: 8px;
    /* padding: 8px; */
  }

  .page[data-page=home] .tab-link2 {
    min-height: 110px;
    /* padding: 8px; */
  }

  .page[data-page=home] .tab-link2 img {
    max-width: 70px;
    /* height: 55px; */
  }

  .page[data-page=home] .tab-link2 span {
    font-size: 12px;
  }
}




















.web-title{
    font-size: 18px;
    font-weight: 500;
    margin: 20px 0px 0px 20px;
}

.padding-0{
    padding-top: 0px !important;
}



.hero-slider {
  position: relative;
  width: 100%;
  height: 380px;
  overflow: hidden;
  /* border-radius: 16px; */
}



.hero-slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slider .slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-slider img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  /* border-radius: 16px; */
  filter: brightness(0.8);
}

/* Text overlay */
.slide-text {
  position: absolute;
  bottom: 40px;
  left: 50px;
  color: #fff;
  z-index: 3;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
}

.slide-text h2 {
  font-size: 36px;
  margin-bottom: 10px;
  font-weight: 700;
}

.slide-text p {
  font-size: 18px;
  opacity: 0.9;
}

/* Navigation arrows */
.hero-slider .nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #ffffff20 !important;
  border: none;
  font-size: 28px;
  cursor: pointer;
  width: 40px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  z-index: 5;
}

.hero-slider .nav:hover {
  background: rgba(255, 255, 255, 0.85);
}

.hero-slider .prev {
  left: 0px;
  border-radius: 0 10px 10px 0;
}

.hero-slider .next {
  right: 0px;
  border-radius: 10px 0 0 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-slider {
    height: 280px;
  }

  .slide-text {
    bottom: 20px;
    left: 20px;
  }

  .slide-text h2 {
    font-size: 22px;
  }

  .slide-text p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .hero-slider {
    height: 200px;
  }

  .slide-text {
    display: none; /* hide text on very small screens for clarity */
  }
}



/* Default (Large screens) */
#bannerweb {
  /* padding-left: 30px;
  padding-right: 30px;
  padding-top: 30px; */
}

/* Medium screens (tablets, etc.) */
@media (max-width: 1024px) {
  #bannerweb {
    /* padding-left: 20px;
    padding-right: 20px;
    padding-top: 20px; */
  }
}

/* Small screens (mobile) */
@media (max-width: 600px) {
  #bannerweb {
    /* padding-left: 10px;
    padding-right: 10px;
    padding-top: 10px; */
  }
}



.product-card-link2 {
  text-decoration: none;
  color: inherit;
}

.product-card2 {
  background: #fff;
  border-radius: 14px;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 16px;
  text-align: center;
  margin-right: 10px;
  margin-left: 10px;
  min-width: 230px;
}

.product-card2:hover {
  transform: translateY(-4px);
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.08);
}

.image-container2 {
  position: relative;
}

.product-image2 {
  width: 100%;
  /* height: 150px; */
  object-fit: contain;
  border-radius: 12px;
}

.discount-badge2 {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: #2d5a83;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.15);
}

.product-info2 {
  margin-top: 12px;
}

.product-name2 {
  font-size: 15px;
  font-weight: 500;
  color: #333;
  margin-bottom: 6px;
  text-align: center;
  word-wrap: break-word;      /* breaks long words if needed */
  white-space: normal;        /* allows wrapping to next line */
  overflow: hidden;           /* ensures clean layout */
  text-overflow: ellipsis;    /* optional - adds ... if it's too long */
  display: -webkit-box;       /* for multiline ellipsis (optional) */
  -webkit-line-clamp: 2;      /* show max 2 lines (optional) */
  -webkit-box-orient: vertical;
}


.product-prices2 {
  display: flex;
  justify-content: left;
  gap: 8px;
  align-items: baseline;
}

.old-price2 {
  text-decoration: line-through;
  color: #ff5d5d;
  font-size: 14px;
}

.new-price2 {
  color: #2c2c2c;
  font-size: 16px;
  font-weight: 400;
}

/* Responsive design */
@media (max-width: 768px) {
  .product-card2 {
    padding: 12px;
    min-width: 150px;
  }

  .product-name2 {
    font-size: 14px;
  }

  .discount-badge2 {
    font-size: 12px;
  }
}


            .video-dot {
				display: inline-block;
				width: 10px;
				height: 10px;
				margin: 0 5px;
				background: #bbb;
				border-radius: 50%;
				cursor: pointer;
				transition: background 0.3s;
				}
				.video-dot.active {
				background: #2d5a83;
				}

				#videoContainer {
				display: flex;
				overflow-x: auto;
				scroll-snap-type: x mandatory;
				-webkit-overflow-scrolling: touch;
				scroll-behavior: smooth;
        justify-content: center;
				}
				.video-wrapper2 {
				flex: 0 0 50%;
				scroll-snap-align: start;
				scroll-margin-top: 80px;
				padding: 0 10px;
				box-sizing: border-box;
				}
				@media (max-width: 768px) {
					.video-wrapper2 {
						flex: 0 0 100%; /* 1 per row on small screens */
					}
				}

















                .site-footer {
  background-color: #eaf4ff;
  text-align: center;
  padding: 50px 20px;
  font-family: 'Manrope', sans-serif;
  color: #1a1a1a;
}

.footer-logo img {
  max-width: 180px;
  margin-bottom: 30px;
  min-width: 130px;
}

.footer-content {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  background-color: #fff;
  border-radius: 14px;
  padding: 40px;
  max-width: 1000px;
  margin: 0 auto 30px;
  /* box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.08); */
}

.footer-column {
  flex: 1 1 10px;
  text-align: left;
}

.footer-column h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #2c2c2c;
  font-weight: 500;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column li {
  margin: 6px 0;
}

.footer-column a {
  color: #2d5a83;
  text-decoration: none;
  font-size: 15px;
}

.footer-column a:hover {
  text-decoration: underline;
}

.footer-bottom {
  font-size: 14px;
  color: #2c2c2c;
  margin-bottom: 30px;
}

.footer-bottom a {
  color: #2d5a83;
  font-weight: 500;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  .footer-column {
    text-align: center;
  }
}
























/* 🌾 SRC Farms Apps Section */
.app-section {
  text-align: center;
  padding: 40px 20px;
  background: #fff;
}

.app-section h2 {
  font-size: 28px;
  font-weight: 500;
  color: #2d5a83;
  margin-bottom: 12px;
}

.app-section p {
  font-size: 15px;
  color: #2c2c2c;
  margin-bottom: 30px;
}

.app-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 50px;
}

.app-card {
  text-align: center;
}

.app-card img {
  width: 220px;
  height: auto;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.app-card img:hover {
  transform: scale(1.05);
}

.app-card span {
  display: block;
  margin-top: 10px;
  font-weight: 500;
  color: #2c2c2c;
  font-size: 14px;
}

/* 📱 Responsive */
@media (max-width: 600px) {
  .app-section h2 {
    font-size: 22px;
  }

  .app-section p {
    font-size: 14px;
    margin-bottom: 28px;
  }

  .app-card img {
    width: 180px;
  }

  .app-buttons {
    gap: 25px;
  }
}













.contact-section {
  background: #faf9f5;
  padding: 40px 20px;
  text-align: center;
}

.contact-section h2 {
  font-size: 30px;
  color: #2d5a83;
  font-weight: 500;
  margin-bottom: 50px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin: 0 auto;
}

.contact-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 24px;
  /* box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.08); */
  text-align: center;
}

.contact-card h3 {
  color: #2d5a83;
  margin-bottom: 8px;
}

.contact-card p {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
  line-height: 1.6;
}

/* 📱 Contact Info Column */
.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info a {
  color: #2c2c2c;
  font-weight: 600;
  text-decoration: none;
  margin: 4px 0;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: #1c3c57;
}

.whatsapp-block {
  margin-top: 20px;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.whatsapp-btn img {
  width: 20px;
  height: 20px;
}

/* 📱 Responsive */
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 600px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-card iframe {
    height: 200px;
  }

  .contact-section h2 {
    font-size: 24px;
    margin-bottom: 30px;
  }
}























.delivery-planner-grid{
  display: grid;
  grid-template-columns: 40% 60%; /* first = 30%, second = 70% */
  /* gap: 10px; */
}





.wallet-grid {
  display: grid;
  grid-template-columns: 35% 65%; /* first = 30%, second = 70% */
  /* gap: 10px; */
}

/* Responsive: On smaller screens (below 768px), make it single column */
@media (max-width: 768px) {
  .wallet-grid {
    grid-template-columns: 1fr; /* stack vertically */
  }
}








/* Container: grid-based layout */
.trending-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  padding: 20px;
  box-sizing: border-box;
}

/* Card styling */
.product-card3 {
  background: #fff;
  border-radius: 12px;
  /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08); */
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.product-card3:hover {
  transform: translateY(-4px);
  /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12); */
}

/* Image */
.product-image3 {
  width: 100%;
  height: 220px;
  object-fit: contain;
  /* background: #f9fafb; */
  /* padding: 10px; */
}

/* Info Section */
.product-info3 {
  /* padding: 12px 14px 18px; */
}

.product-name3 {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  line-height: 1.4;
  word-wrap: break-word;
}

.product-details3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* Price */
.product-price3 {
  color: #111;
  font-weight: 700;
  font-size: 15px;
}

/* Subscribe Button (example) */
.product-details3 button {
  background: #2d5a83;
  color: #fff;
  border: none;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s;
}

.product-details3 button:hover {
  background: #234566;
}

/* Responsive Grid Adjustments */
@media (min-width: 992px) {
  .trending-list {
    grid-template-columns: repeat(6, 1fr);
  }
}

@media (max-width: 991px) and (min-width: 600px) {
  .trending-list {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 599px) {
  .trending-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .product-image3 {
    height: 180px;
  }

  .product-name3 {
    font-size: 14px;
  }
}