@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");

/* Reset default margins and paddings */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* For Firefox */
html {
  scrollbar-color: #579728 #FAA22B;
  /* thumb color, track color */
  scrollbar-width: thin;
  /* can be 'auto', 'thin', or 'none' */
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  background: #F4FAEB;
  overflow-x: hidden;

}

/* Sticky Header */
header {
  top: 0;
  z-index: 1000;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Navbar Links */
.navbar-nav .nav-link {
  color: #000;
  font-size: 15px;
  font-weight: 600;
  padding: 10px 15px;
}

.navbar-nav .nav-link {
  margin-right: 35px;
}

.navbar-light .navbar-nav .nav-link {
  color: #000 !important;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #579728 !important;
  text-decoration: underline;
  text-underline-offset: 20px;
}

/* User Actions */
.navbar-collapse .d-flex a {
  color: #333;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

.navbar-collapse .badge {
  font-size: 10px;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
}

.start-10 {
  left: 30%;
}

/* Mobile Tweaks */
@media (max-width: 991px) {
  .navbar-collapse {
    background-color: #fff;
    padding: 1rem;
    border-top: 1px solid #ddd;
  }

  .navbar-nav .nav-link {
    padding: 10px 0;
    text-align: center;
  }

  .navbar-collapse .d-flex {
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }
}

@media (min-width: 992px) {
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
    justify-content: space-around;
  }
}

/* ==================================
---------Footer----------------------
=======================================*/
/* Footer Styling */
footer {
  background-color: #1c2526;
  color: #b0b0b0;
}

footer h5 {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 15px;
}

footer p,
footer a {
  color: #b0b0b0;
  font-size: 14px;
  line-height: 1.6;
  text-decoration: none;
}

footer a:hover {
  color: #fff;
}

footer ul {
  list-style: none;
  padding: 0;
}

footer ul li {
  margin-bottom: 8px;
}

/* Logo Section */
.footer-logo img {
  max-width: 200px;
  margin-bottom: 15px;
}

.footer-logo p {
  margin-bottom: 10px;
}

/* Contact Us Section */
.contact-info li {
  display: flex;
  align-items: center;
  /* Vertically align icon and text */
  margin-bottom: 20px;
}

.contact-info a {
  color: #fff;
  /* Yellow color for contact links */
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
  /* Prevent address from wrapping */
}

.contact-info a:hover {
  color: #fff;
}

.contact-info i {
  margin-right: 8px;
  color: #FAA22B;
  font-size: 14px;
  width: 16px;
  /* Ensure consistent icon width for alignment */
  text-align: center;
}

/* Bottom Section */
.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 15px;
  margin-top: 30px;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom a {
  color: #b0b0b0;
  margin: 0 10px;
}

.footer-bottom a:hover {
  color: #fff;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom p {
    margin-bottom: 10px;
  }

  .footer-bottom .bottom-links {
    margin-top: 10px;
  }

  footer h5 {
    margin-top: 20px;
  }

  .contact-info a {
    white-space: normal;
    /* Allow wrapping on smaller screens */
  }
}

/* Banner Section */

/* .hero-section {
    padding: 50px 10%;
} */
.hero-text h1 {
  font-size: 46px;
  font-weight: 400;
}

.hero-text span {
  color: #579728;
  font-size: 56px;
  font-weight: 800;
}

.hero-text p {
  color: #666;
  margin: 20px 0;
}

.hero-btn {
  background: #579728;
  color: white;
  padding: 12px 20px;
  text-decoration: none;
  font-size: 18px;
  /* border-radius: 5px; */
  display: inline-block;
  border: none;
}

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

.hero-image img {
  max-width: 100%;
  height: auto;
}

.border-end {
  border-right: 2px solid #dee2e6 !important;
}

/* =================== HERO SECTION STYLES =================== */
/* #heroCarousel {
    position: relative;
    width: 100%;
    height: 100vh;
    background: #f8f8f8;
} */

.hero-btn img {
  width: 20px;
  margin-left: 5px;
}

/* =================== CUSTOM NAVIGATION STYLES =================== */
.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  background-color: rgb(250 162 43);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: #579728;
}

/* Custom Arrows */
.custom-prev-icon,
.custom-next-icon {
  font-size: 30px;
  color: #fff;
  font-weight: bold;
}

/* Positioning the Buttons */
.carousel-control-prev {
  left: 10px;
}

.carousel-control-next {
  right: 10px;
}

/* Custom Indicator (Dot) Styles */
.carousel-indicators {
  position: absolute;
  bottom: 20px;
  border: none !important;
}

.carousel-indicators button {
  width: 30px !important;
  height: 3px !important;
  margin: 0 5px;
  border: none !important;
  background: #ffc23d !important;
  transition: 0.3s;
}

.carousel-indicators .active {
  width: 30px;
  height: 3px;
  background: #579728 !important;
  border: none !important;
}

/* Responsive Styles */

/* Tablets (screen width <= 768px) */
@media (max-width: 768px) {

  .carousel-control-prev,
  .carousel-control-next {
    width: 40px;
    height: 40px;
  }

  .custom-prev-icon,
  .custom-next-icon {
    font-size: 24px;
  }

  .carousel-control-prev {
    left: 5px;
  }

  .carousel-control-next {
    right: 5px;
  }

  .carousel-indicators {
    bottom: 15px;
  }

  .carousel-indicators button {
    width: 25px !important;
    height: 2.5px !important;
    margin: 0 4px;
  }

  .carousel-indicators .active {
    width: 25px;
    height: 2.5px;
  }
}

/* Mobile (screen width <= 576px) */
@media (max-width: 576px) {

  .carousel-control-prev,
  .carousel-control-next {
    width: 22px;
    height: 22px;
    background-color: rgba(255, 213, 0, 0.9);
    /* Slightly more opaque for visibility */
  }

  .custom-prev-icon,
  .custom-next-icon {
    font-size: 20px;
  }

  .carousel-control-prev {
    left: 2px;
  }

  .carousel-control-next {
    right: 2px;
  }

  .carousel-indicators {
    bottom: 10px;
  }

  .carousel-indicators button {
    width: 20px !important;
    height: 2px !important;
    margin: 0 3px;
  }

  .carousel-indicators .active {
    width: 20px;
    height: 2px;
  }
}

/* Large Screens (screen width >= 1200px) */
@media (min-width: 1200px) {

  .carousel-control-prev,
  .carousel-control-next {
    width: 60px;
    height: 60px;
  }

  .custom-prev-icon,
  .custom-next-icon {
    font-size: 36px;
  }

 
  .carousel-control-prev-icon, .carousel-control-next-icon {
    display: inline-block;
    width: 1rem !important;
    height: 1rem !important;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 100% 100%;
}

  .carousel-control-prev {
    left: 15px;
  }

  .carousel-control-next {
    right: 15px;
  }

  .carousel-indicators {
    bottom: 25px;
  }

  .carousel-indicators button {
    width: 35px !important;
    height: 4px !important;
    margin: 0 6px;
  }

  .carousel-indicators .active {
    width: 35px;
    height: 4px;
  }
}

/* Product Section */
/* Product Section */
section.product-section {
  padding: 50px 0;
  text-align: center;
  background: #F4FAEB;
}

.section-titles h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: justify !important;
}

.section-titles p {
  font-size: 16px;
  color: #666;
  text-align: justify !important;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-title p {
  font-size: 16px;
  color: #666;
}

.product-box {
  /* background: white; */
  border-radius: 10px;
  /* padding: 10px; */
  /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
  text-align: center;
  margin: 15px auto;
  /* min-height: 370px; */
}

/* .product-box:hover {
  transform: scale(1.05);
  border: 1px solid #FAA22B;
} */

.product-box-bg {
  /* background: #fff; */
  padding: 5px;
  margin: 5px;
  border-radius: 10px;
  display: flex;
  justify-content: space-around;
}

.product-box img {
  width: 500px !important;
  height: 210px;
  object-fit: contain;
}

.product-box h5 {
  font-size: 20px;
  font-weight: 600;
  margin: 10px 0;
  max-height: 50px;
  text-align: center;
}

.product-size {
  text-align: center;
}
.category-box {
  border-radius: 10px;
  padding: 10px;
  text-align: center;
  /* margin: 10px 30px; */
  min-height: 215px;
}

.category-box:hover {
  /* transform: scale(1.05);
  border: 1px solid #FAA22B; */
}

.category-box-bg {
  /* background: #fff; */
  /* background: linear-gradient(to right, rgba(87, 151, 40, 0.3), rgba(245, 197, 24, 0.3)); */
  /* padding: 20px; */
  /* margin: 10px; */
  border-radius: 10px;
  display: flex;
  justify-content: space-around;
}
/* .category-name{
  background: #fff;
} */
.category-box img {
  width: 100% !important;
  height: 400px;
  object-fit: contain;
}

.category-box h5 {
  font-size: 20px;
  font-weight: 600;
  margin: 10px 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .category-box-bg {
    justify-content: center;
  }

  .category-box img {
    width: 100px !important;
    height: 100px;
  }

  .category-box h5 {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .category-box img {
    width: 100% !important;
    height: 300px;
  }

  .category-box h5 {
    font-size: 16px;
  }
}

.price {
  color: #b70213;
  font-weight: 700;
  /* Bolder font for price */
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 24px;
  /* Larger font size to match the image */
  display: inline;
  /* Keep price and MRP on the same line */
}

.price small {
  font-size: 14px;
  /* Smaller rupee symbol */
  vertical-align: super;
  /* Align rupee symbol slightly above */
}

.old-price {
  text-decoration: line-through;
  color: #666;
  /* Gray color for MRP */
  font-size: 14px;
  /* Smaller font size for MRP */
  font-weight: 400;
  /* Less bold than the price */
  margin-left: 8px;
  /* Space between price and MRP */
  font-family: "Plus Jakarta Sans", sans-serif;
}

.old-price small {
  font-size: 10px;
  /* Even smaller rupee symbol for MRP */
  vertical-align: super;
}

/* Cart Icon Styling */
.add-to-cart {
  display: block;
  font-size: 14px;
  color: #ffffff;
  text-decoration: none;
  /* margin-top: 10px; */
  transition: color 0.3s ease;
  background: #579728;
  padding: 5px;
  border-radius: 5px;
}

.add-to-cart:hover {
  color: #FAA22B;
  /* Matches the hover border color */
}

/* Navigation Arrows */
.owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex !important;
  justify-content: space-between;
  pointer-events: none;
}

.owl-nav button {
  pointer-events: all;
  background: none;
  border: none;
  padding: 0 10px;
  background: #FCB24E;
}

.owl-nav button.owl-prev {
  /* background: url("../img/angle-small-left.png") no-repeat center !important; */
  background-size: contain;
  width: 30px;
  height: 30px;
  left: -35px;
  position: relative;

}

.owl-nav button.owl-next {
  /* background: url("../img/angle-small-right.png") no-repeat center !important; */
  background-size: contain;
  width: 30px;
  /* Adjust based on your image size */
  height: 30px;
  right: -12px;
  position: relative;
}

/* Remove default text content */
.owl-nav button span {
  display: none;
  /* Hide any default text */
}

/* @media (max-width: 991px) {
  .owl-nav {
    display: none !important;
  }

} */

/* Food Section */

.food-section {
  background: white;
}

.food-image-box img {
  height: 460px;
  width: 562px;
}

@media (max-width: 768px) {
  .food-image-box img {
    width: 100%;
    /* Full width for smaller screens */
    height: auto;
    /* Maintain aspect ratio */
  }
}

.brand-text {
  color: black;
}

.custom-btn {
  background-color: #579728;
  color: white;
  text-decoration: none;
  padding: 12px 22px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.custom-btn:hover {
  background-color: #ffc23d;
  color: white;
  text-decoration: none;
  padding: 12px 22px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.custom-btn i {
  font-size: 14px;
}

.description {
  color: #2a353c;
  font-size: 14px;
}

/* -------------------------------------------
Why Choose Us
-----------------------------------------------*/

.why-choose-section {
  background-color: #e1f5d5;
  /* Light Green Background */
  padding: 60px 0;
}

.section-subtitle {
  color: #555;
  font-size: 16px;
  margin-bottom: 30px;
}

.feature-box {
  display: flex;
  align-items: center;
}

.feature-icon img {
  width: 75px;
  height: 75px;
}

.feature-title {
  font-size: 18px;
  font-weight: 600;
}

.feature-desc {
  font-size: 14px;
  color: #555;
}

.product-image-box {
  text-align: center;
}

.product-image {
  width: 100%;
  height: auto;
}

/* mobile App */

.mobile-app-section {
  background-color: #fff;
  padding: 60px 0;
}

.section-title h2 {
  font-size: 38px;
  font-weight: bold;
  margin-bottom: 10px;
  font-family: "Plus Jakarta Sans";
}

.section-title p {
  font-size: 15px;

  font-family: "Plus Jakarta Sans";
}

.section-subtitle {
  color: #555;
  font-size: 16px;
  margin-bottom: 30px;
}

.app-feature {
  text-align: center;
  margin-bottom: 30px;
}

.app-image {
  max-width: 250px;
  height: auto;
  margin-bottom: 15px;
}

.app-title {
  font-size: 20px;
  font-weight: 800;
}

/* Responsive Adjustments */
/* For tablets and smaller laptops (max-width: 991px) */
@media (max-width: 991px) {
  .top-bar .logo {
    text-align: center;
  }

  .search-bar {
    max-width: 100%;
    margin: 10px 0;
  }

  .user-actions {
    justify-content: center;
    gap: 10px;
  }

  .user-actions a {
    padding: 0 5px;
  }

  .category-dropdown .btn,
  .location-dropdown .btn {
    padding: 6px 10px;
    font-size: 13px;
  }

  .nav-bar .nav-link {
    padding: 5px 10px;
    font-size: 13px;
    margin-right: 20px;
    /* Reduced from 50px for better spacing */
  }

  .hero-text h1 {
    font-size: 36px;
    /* Slightly smaller for tablets */
  }

  .hero-text span {
    font-size: 46px;
    /* Adjusted for better fit */
  }


}

/* For mobile devices (max-width: 767px) */
@media (max-width: 767px) {
  .top-bar .row {
    flex-direction: row;
    align-items: center;
  }

  .top-bar .logo {
    margin-bottom: 10px;
  }

  .search-bar {
    margin: 10px 0;
    width: 90%;
  }

  .user-actions {
    flex-direction: row;
    justify-content: space-around;
    width: 100%;
  }

  .user-actions a {
    padding: 0 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .user-actions a img {
    width: 20px;
    height: 20px;
  }

  .nav-bar {
    padding: 5px 0;
  }

  .nav-bar .navbar-toggler {
    border: none;
    padding: 5px;
  }

  .nav-bar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 0.55)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }

  .nav-bar .navbar-collapse {
    background-color: #fff;
    padding: 10px;
    border-top: 1px solid #ddd;
  }

  .nav-bar .navbar-nav {
    text-align: center;
  }

  .nav-bar .nav-link {
    padding: 10px;
    font-size: 14px;
    margin-right: 0;
    /* Reset margin for mobile */
    text-align: justify;
  }

  .category-dropdown,
  .location-dropdown {
    width: 100%;
  }

  .category-dropdown .btn,
  .location-dropdown .btn {
    width: 100%;
    text-align: left;
    justify-content: end;
  }

  /* Hero Section */
  .hero-text h1 {
    font-size: 28px;
    /* Smaller for mobile */
  }

  .hero-text span {
    font-size: 36px;
    /* Adjusted for mobile */
  }

  .hero-text p {
    font-size: 14px;
  }

  .hero-btn {
    padding: 10px 15px;
    font-size: 16px;
  }

  /* Product Section */
  .product-box {
    padding: 8px;
    min-height: fit-content;
  }

  .product-box img {
    width: 200px;
    height: 200px;
  }

  .product-box h5 {
    font-size: 16px;
  }

  .price,
  .old-price {
    font-size: 14px;
  }

  /* Food Section */
  .food-image {
    width: 100%;
    height: auto;
    /* Maintain aspect ratio */
  }

  /* Why Choose Us */
  .why-choose-section {
    padding: 40px 0;
  }

  .feature-box {
    text-align: center;
    margin-bottom: 20px;
  }

  .feature-icon img {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
  }

  /* Mobile App Section */
  .section-title h2 {
    font-size: 28px;
  }

  .section-title p {
    font-size: 14px;
  }

  .app-image {
    max-width: 200px;
  }

  .app-title {
    font-size: 18px;
  }
}

/* For very small screens (max-width: 576px) */
@media (max-width: 576px) {
  .top-bar .logo img {
    max-width: 120px;
    max-height: 60px;
  }

  .search-bar input {
    font-size: 12px;
    padding: 8px 35px 8px 10px;
  }

  .search-bar button {
    padding: 0 15px;
  }

  .hero-text h1 {
    font-size: 24px;
  }

  .hero-text span {
    font-size: 30px;
  }

  .hero-btn {
    padding: 8px 12px;
    font-size: 14px;
  }

  .product-box img {
    width: 100%;
    height: 300px;
  }

  .product-box h5 {
    font-size: 14px;
    height: fit-content;
  }

  .section-title h2 {
    font-size: 24px;
  }

  .footer-logo img {
    max-width: 80px;
  }

  .footer-bottom {
    font-size: 12px;
  }
}

/* ---------------------------------------------
PRODUCT DETAILS
------------------------------------------------*/

.breadcrumb-nav {
  margin-bottom: 25px;
  background: #f8f9fa;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
  flex-wrap: wrap;
}

.breadcrumb-item {
  position: relative;
  padding: 5px 10px;
}

.breadcrumb-item a {
  color: #b70213;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding-bottom: 2px;
}

.breadcrumb-item a:hover {
  color: #8c0210;
}

.breadcrumb-item a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #b70213;
  transition: width 0.3s ease;
}

.breadcrumb-item a:hover::after {
  width: 100%;
}

.breadcrumb-item:not(:last-child)::after {
  content: "›";
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
  font-size: 18px;
  font-weight: bold;
}

.breadcrumb-item.active {
  color: #2c3e50;
  font-weight: 600;
  font-size: 14px;
}

.breadcrumb-item:last-child::after {
  content: none;
}

.product-detail {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 20px;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.product-images {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  min-width: 0;
}

.main-image {
  position: relative;
  width: 100%;
  margin-bottom: 10px;
}

.main-image img {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 10px;
  display: block;
}

.magnifier-lens {
  position: absolute;
  width: 100px;
  height: 100px;
  border: 2px solid #FAA22B;
  background: rgba(255, 255, 255, 0.5);
  pointer-events: none;
  display: none;
  z-index: 10;
}

.magnified-image {
  position: absolute;
  top: 0;
  left: 100%;
  width: 300px;
  height: 300px;
  border: 1px solid #ddd;
  overflow: hidden;
  display: none;
  z-index: 100;
  background: #fff;
}

.magnified-image img {
  position: absolute;
}

.thumbnail-gallery {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.thumbnail-gallery img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 5px;
  cursor: pointer;
  border: 1px solid #ddd;
  transition: border 0.3s ease;
}

.thumbnail-gallery img:hover {
  border: 1px solid #FAA22B;
}

.thumbnail-gallery img.active {
  border: 2px solid #FAA22B;
}

.product-info {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  min-width: 0;
}

.product-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #2c3e50;
}

.brand {
  font-size: 14px;
  color: #b70213;
  margin-bottom: 10px;
}

.brand a {
  color: #b70213;
  text-decoration: none;
}

.brand a:hover {
  text-decoration: underline;
}

.ratings {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.stars {
  color: #FAA22B;
}

.ratings span {
  font-size: 14px;
  color: #666;
}

.price-section {
  margin-bottom: 20px;
}

.price {
  color: #b70213;
  font-weight: 700;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 20px;
  display: inline;
}

@media(max-width:767px) {
  .price {
    font-size: 14px;
  }
}

.price small {
  font-size: 12px;
  vertical-align: super;
}

.old-price {
  text-decoration: line-through;
  color: #666;
  font-size: 11px;
  font-weight: 400;
  margin-left: 8px;
}

.old-price small {
  font-size: 10px;
  vertical-align: super;
}

.buy-box {
  background: #f7f8fa;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.stock {
  font-size: 14px;
  color: #28a745;
  margin-bottom: 10px;
}

.quantity {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.quantity label {
  font-size: 14px;
}

.quantity-controls {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 5px;
  overflow: hidden;
}

.quantity-controls button {
  width: 30px;
  height: 30px;
  border: none;
  background: #f8f9fa;
  cursor: pointer;
  font-size: 16px;
  padding: 0;
  transition: background 0.3s ease;
}

.quantity-controls button:hover {
  background: #e9ecef;
}

.quantity-controls button:disabled {
  background: #f8f9fa;
  cursor: not-allowed;
  opacity: 0.6;
}

.quantity-controls input {
  width: 40px;
  height: 30px;
  border: none;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  text-align: center;
  font-size: 14px;
  padding: 0;
}

.quantity-controls input:focus {
  outline: none;
}

.product-details {
  margin: 15px 0;
  padding-top: 15px;
  border-top: 1px solid #ddd;
}

.product-details h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #2c3e50;
}

.product-details p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 10px;
}

.product-details ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-details li {
  font-size: 14px;
  color: #666;
  padding: 5px 0;
  position: relative;
  padding-left: 15px;
}

.product-details li:before {
  content: "•";
  color: #b70213;
  position: absolute;
  left: 0;
}

/* .buy-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
} */
.buy-buttons button {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease;
  flex: 1;
  min-width: 100px;
}

.add-to-cart-btn {
  background: #FAA22B;
  color: #fff;
}

.add-to-cart-btn:hover {
  background: #e0b015;
}

.buy-now-btn {
  background: #579728;
  color: #fff;
}

.buy-now-btn:hover {
  background: #468c1f;
}

@media (max-width: 767px) {
  .product-detail {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }

  .product-images {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
  }

  .product-info {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
  }

  .main-image img {
    max-width: 285px;
  }

  .thumbnail-gallery img {
    width: 40px;
    height: 40px;
  }

  .magnified-image {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 400px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .product-detail {
    grid-template-columns: 1fr 1.5fr;
  }

  .product-title {
    font-size: 28px;
  }

  .price {
    font-size: 24px;
  }

  .price small {
    font-size: 14px;
  }
}

@media (min-width: 992px) {
  .product-detail {
    gap: 30px;
    padding: 30px;
  }
}

/* =============================================
--------------Contact Page----------------------
================================================*/
/* Contact Section */
.hb-contact-area {
  position: relative;
  min-height: 80vh;
  display: grid;
  place-items: center;
  padding: 40px 0;
  overflow: hidden;
  background: #f4f4f4;
  /* z-index:1; */
}

.hb-contact-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #579728 50%, #fff 50%);
  clip-path: polygon(0 0, 100% 0, 70% 100%, 0 100%);
}

/* Contact Wrapper */
.hb-contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  width: 100%;
  padding: 20px;
  z-index: 999;
}

/* Contact Info */
.hb-contact-details {
  grid-column: 1 / 2;
  min-width: 300px;
  background-color: rgba(255, 255, 255, 0.95);
  padding: 40px;
  border-radius: 15px 0 15px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transform: translateY(20px);
  position: relative;
}

.hb-contact-details h2 {
  font-size: 38px;
  color: rgb(0, 0, 0);
  margin-bottom: 30px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hb-info-item {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  margin: 25px 0;
  color: #333;
  background-color: #fff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.hb-info-item:hover {
  transform: translateX(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hb-info-item i {
  font-size: 18px;
  color: #579728;
  margin-right: 20px;
  transition: transform 0.3s;
}

.hb-info-item:hover i {
  transform: scale(1.3) rotate(10deg);
}

.hb-info-item a,
.hb-info-item span {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.hb-info-item a:hover {
  color: #579728;
}

/* Map */
.hb-map-container {
  margin-top: 30px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hb-map-container iframe {
  width: 100%;
  height: 200px;
  border: none;
}

/* Contact Form */
.hb-message-box {
  grid-column: 2 / 3;
  min-width: 300px;
  max-width: 500px;
  background-color: #fff;
  padding: 40px;
  border-radius: 0 15px 0 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transform: translateY(20px);
}

.hb-message-box h2 {
  font-size: 2.2rem;
  color: #333;
  margin-bottom: 20px;
  font-weight: 700;
  position: relative;
}

.hb-message-box h2::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: #579728;
}

.hb-form-field {
  margin-bottom: 25px;
  position: relative;
}

.hb-form-field label {
  position: absolute;
  top: -10px;
  left: 15px;
  background-color: #fff;
  padding: 0 5px;
  font-size: 0.95rem;
  color: #579728;
  font-weight: 500;
}

.hb-form-field input,
.hb-form-field textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid #579728;
  border-radius: 8px;
  box-sizing: border-box;
  background-color: #fff;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.hb-form-field textarea {
  height: 130px;
  resize: none;
}

.hb-form-field input:focus,
.hb-form-field textarea:focus {
  border-color: #e07b00;
  box-shadow: 0 0 10px rgba(255, 140, 0, 0.3);
  outline: none;
}

.hb-send-btn {
  background-color: #579728;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s, transform 0.3s;
}

.hb-send-btn:hover {
  background-color: #e07b00;
  transform: translateY(-3px);
}

/* Error Messages */
.hb-error-text {
  color: #ff4444;
  font-size: 0.9rem;
  display: none;
  margin-top: 5px;
  position: absolute;
  bottom: -20px;
  left: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hb-contact-layout {
    grid-template-columns: 1fr;
  }

  .hb-contact-details,
  .hb-message-box {
    transform: translateY(0);
    border-radius: 15px;
    grid-column: 1 / 2;
  }

  .hb-contact-bg {
    clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%);
  }

  .hb-contact-details h2 {
    font-size: 2.2rem;
  }

  .hb-info-item {
    font-size: 1rem;
  }

  .hb-info-item i {
    font-size: 1.5rem;
  }

  .hb-map-container iframe {
    height: 150px;
  }
}

/*------------------------------------------
 Cart Page 
 ------------------------------------------*/

/* Cart Container */
.cart-container {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.cart-header {
  background-color: #579728;
  color: #fff;
  padding: 10px 15px;
  font-weight: 600;
  font-size: 14px;
}

.cart-body {
  padding: 20px;
}

.cart-item {
  padding: 15px 0;
  border-bottom: 1px solid #e9ecef;
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item-img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  margin-right: 10px;
}

.cart-remove-btn {
  background: none;
  border: none;
  color: #dc3545;
  font-size: 20px;
  padding: 0;
  margin-right: 10px;
  cursor: pointer;
}

.cart-item-details {
  flex-grow: 1;
}

.cart-item-name {
  font-size: 14px;
  font-weight: 500;
}

.cart-item-color {
  font-size: 12px;
  color: #6c757d;
}

.cart-item-price,
.cart-item-subtotal {
  font-size: 14px;
  font-weight: 500;
}

.cart-quantity {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ced4da;
  border-radius: 5px;
  width: 80px;
}

.quantity-btn {
  background: none;
  border: none;
  padding: 5px 10px;
  font-size: 16px;
  cursor: pointer;
  color: #6c757d;
}

.quantity-input {
  border: none;
  text-align: center;
  width: 30px;
  font-size: 14px;
  padding: 0;
}

.cart-footer {
  padding-top: 20px;
}

.coupon-section {
  display: flex;
  align-items: center;
}

.coupon-input {
  border: 1px solid #ced4da;
  border-radius: 5px 0 0 5px;
  padding: 8px;
  font-size: 14px;
  width: 150px;
}

.apply-coupon-btn {
  background-color: #579728;
  color: #fff;
  border: none;
  padding: 8px 15px;
  border-radius: 0 5px 5px 0;
  font-size: 14px;
  cursor: pointer;
}

.apply-coupon-btn:hover {
  background-color: #218838;
}

.clear-cart-btn {
  background: none;
  border: none;
  color: #579728;
  font-size: 14px;
  cursor: pointer;
}

/* Order Summary */
.summary-container {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.summary-header {
  background-color: #f8f9fa;
  padding: 15px;
  font-size: 16px;
  font-weight: 600;
}

.summary-body {
  padding: 20px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 10px;
}

.summary-row span {
  color: #6c757d;
}

.summary-row span:last-child {
  color: #000;
}

.summary-row.text-danger span:last-child {
  color: #dc3545;
}

.summary-divider {
  border-top: 1px solid #e9ecef;
  margin: 15px 0;
}

.summary-total {
  font-weight: 600;
}

.checkout-btn {
  background-color: #579728;
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 25px;
  width: 100%;
  font-size: 14px;
  cursor: pointer;
}

.checkout-btn:hover {
  background-color: #218838;
}

/* Responsive Adjustments */
@media (max-width: 767px) {

  .cart-header,
  .cart-item-price,
  .cart-item-subtotal,
  .cart-item-name,
  .cart-item-color {
    font-size: 12px;
  }

  .cart-item-img {
    width: 40px;
    height: 40px;
  }

  .cart-quantity {
    width: 70px;
  }

  .quantity-input {
    width: 25px;
  }

  .coupon-input {
    width: 120px;
  }
}

/* My Account */

.myaccount {
  background-color: #f8f9fa;
}

/* Sidebar */
.custom-sidebar {
  /* background-color: #fff; */
  padding: 20px 30px;
  margin: 10px 0px;
  height: 100%;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.sidebar-header {
  color: #000;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 10px;
}

.custom-nav-link {
  color: #000;
  padding: 10px 10px;
  font-size: 14px;
  font-weight: 400;
  display: block;
  background: #fff;
  margin: 10px;
}

.custom-nav-link.active {
  color: #fff;
  padding: 10px 10px;
  font-size: 14px;
  font-weight: 400;
  display: block;
  background: #FAA22B;
  margin: 10px;
}

.custom-nav-link:hover {
  color: #fff;
  background: #FAA22B;

  text-decoration: none;
}

.custom-nav-link-danger {
  color: #dc3545 !important;
}

/* Main Content */
.custom-main-content {
  padding: 20px;
}

.custom-card {
  border: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.custom-card-body {
  padding: 20px;
  /* Reduced from 30px for a tighter layout */
}

.profile-pic-container {
  position: relative;
  width: fit-content;
  margin: 0 auto 20px;
  text-align: center;
}

.profile-pic-label {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 500;
  color: #000;
}

.profile-pic {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.edit-icon {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #28a745;
  border-radius: 50%;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.edit-img {
  width: 20px;
  height: 20px;
}

.custom-form-label {
  font-size: 13px;
  /* Reduced from 14px to match smaller inputs */
  font-weight: 500;
  color: #000;
  margin-bottom: 4px;
  /* Slightly reduced for compactness */
}

.custom-input,
.custom-select {
  border-radius: 5px;
  border: 1px solid #ced4da;
  padding: 6px 10px;
  /* Reduced padding for smaller size */
  font-size: 13px;
  /* Smaller font for neatness */
  font-weight: 400;
  color: #000;
  background-color: #fff;
  height: 34px;
  /* Reduced height for compactness */
  width: 100%;
  box-sizing: border-box;
  /* Ensures padding doesn’t increase size */
}

.custom-input:focus,
.custom-select:focus {
  border-color: #28a745;
  box-shadow: none;
  outline: none;
  /* Removes default browser outline */
}

.custom-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: 14px;
  /* Smaller arrow for proportionality */
  background-position: right 10px center;
  /* Adjusted position */
  background-repeat: no-repeat;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.custom-btn-success {
  background-color: #579728;
  border: none;
  padding: 10px 30px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 25px;
  text-transform: uppercase;
  color: #fff;
}

.custom-btn-success:hover {
  background-color: #218838;
}

.custom-status-text {
  font-size: 12px;
}

.custom-status-text .text-success {
  color: #28a745;
}

.custom-status-text .text-secondary {
  color: #6c757d;
  text-decoration: none;
}

.custom-status-text .text-secondary:hover {
  text-decoration: underline;
}

.custom-text-center {
  text-align: center;
}

.custom-text-end {
  text-align: right;
}

.custom-mb-3 {
  margin-bottom: 0.75rem;
  /* Reduced from 1rem for tighter spacing */
}

.custom-mt-3 {
  margin-top: 1rem;
}

/* My Orders Page */
.orders-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #333;
}

.orders-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.order-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 15px;
  transition: box-shadow 0.3s ease;
}

.order-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.order-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.order-id {
  font-weight: 600;
  color: #579728;
}

.order-date {
  font-size: 0.9rem;
  color: #666;
}

.order-body {
  display: flex;
  align-items: center;
  gap: 15px;
}

.order-image {
  flex: 0 0 auto;
}

.product-thumbnail {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
}

.order-details {
  flex: 1;
}

.order-details p {
  margin: 5px 0;
  font-size: 0.95rem;
}

.status-shipped {
  color: #ffa500;
  font-weight: 500;
}

.status-delivered {
  color: #28a745;
  font-weight: 500;
}

.order-actions {
  display: flex;
  gap: 10px;
}

.btn-outline-primary,
.btn-outline-secondary {
  font-size: 0.85rem;
  padding: 5px 15px;
}

.empty-state {
  text-align: center;
  padding: 40px;
  color: #666;
}

.empty-state .btn-primary {
  margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {

  .order-header,
  .order-body {
    flex-direction: column;
    align-items: flex-start;
  }

  .order-date {
    margin-top: 5px;
  }

  .order-body {
    gap: 10px;
  }

  .order-actions {
    margin-top: 10px;
    width: 100%;
    justify-content: space-between;
  }

  .btn-outline-primary,
  .btn-outline-secondary {
    width: 48%;
  }

  .product-thumbnail {
    width: 60px;
    height: 60px;
  }
}

/* address Management */
.location-hub {
  border-radius: 25px;
  padding: 35px;
  box-shadow: 0 15px 40px rgba(87, 151, 40, 0.1);
  position: relative;
  overflow: hidden;
}

.hub-title-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 35px;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
  gap: 15px;
}

.hub-title-bar h2 {
  font-size: 32px;
  margin: 0;
  letter-spacing: -0.5px;
}

.new-location-trigger {
  padding: 12px 30px;
  background: #579728;
  color: white;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s ease;
  box-shadow: 0 5px 15px rgba(87, 151, 40, 0.4);
}

.new-location-trigger:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 25px rgba(87, 151, 40, 0.6);
  color: #fff;
  background: #46801e !important;
}

.location-gallery {
  padding: 0;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.location-panel {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0px 2px 5px rgb(0 0 0 / 15%);
  transition: all 0.4s ease;
}

.location-panel:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(87, 151, 40, 0.25);
}

/* Responsive styles */
@media (max-width: 1024px) {
  .hub-title-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .hub-title-bar h2 {
    font-size: 28px;
  }

  .new-location-trigger {
    align-self: stretch;
    width: 100%;
    text-align: center;
  }

  .location-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .location-hub {
    padding: 20px;
  }

  .hub-title-bar h2 {
    font-size: 24px;
  }

  .new-location-trigger {
    font-size: 14px;
    padding: 10px 20px;
  }

  .location-panel {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  }
}

.panel-info {
  position: relative;
  z-index: 2;
  padding: 25px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 3px solid rgba(87, 151, 40, 0.3);
  flex-wrap: wrap;
  gap: 10px;
}

.panel-head .label {
  font-size: 20px;
  font-weight: 700;
  color: #579728;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.primary-marker {
  background: #FAA22B;
  color: #ffffff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 3px 10px rgba(245, 197, 24, 0.4);
  white-space: nowrap;
}

.panel-body {
  flex: 1;
  padding: 15px 0;
}

.panel-body p {
  margin: 12px 0;
  color: #2d3748;
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.panel-body p:hover {
  color: #579728;
}

.panel-body .symbol {
  font-size: 18px;
  color: #718096;
  transition: all 0.3s ease;
}

.panel-body p:hover .symbol {
  color: #FAA22B;
}

.panel-controls {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  margin-top: 20px;
  flex-wrap: wrap;
}

.control-btn {
  padding: 10px 25px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.4s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.control-btn.modify {
  background: #579728;
  color: white;
}

.control-btn.modify:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(87, 151, 40, 0.5);
  background: #46801e;
}

.control-btn.remove {
  background: #FAA22B;
  color: #ffffff;
}

.control-btn.remove:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(245, 197, 24, 0.5);
  background: #dc3545;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .panel-info {
    padding: 20px;
  }

  .panel-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .panel-head .label {
    font-size: 18px;
  }

  .panel-body p {
    font-size: 14px;
    gap: 8px;
  }

  .panel-body .symbol {
    font-size: 16px;
  }

  .control-btn {
    width: 100%;
    text-align: center;
    font-size: 13px;
    padding: 10px 20px;
  }

  .panel-controls {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .panel-info {
    padding: 15px;
  }

  .panel-head .label {
    font-size: 16px;
  }

  .primary-marker {
    font-size: 11px;
    padding: 4px 10px;
  }

  .panel-body p {
    font-size: 13px;
  }

  .control-btn {
    font-size: 12px;
    padding: 8px 16px;
  }
}

/* Empty State */
.no-locations {
  display: none;
  background: #f8faf5;
  border-radius: 25px;
  padding: 70px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(87, 151, 40, 0.1);
}

.no-locations h3 {
  font-size: 32px;
  font-weight: 800;
  color: #579728;
  margin-bottom: 15px;
}

.no-locations p {
  font-size: 18px;
  color: #718096;
}

/* Responsive Design */
@media (max-width: 768px) {
  .location-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .location-panel {
    padding: 20px;
  }

  .hub-title-bar h2 {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .hub-title-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .new-location-trigger {
    width: 100%;
    padding: 12px;
  }

  .panel-controls {
    flex-direction: row;
    gap: 10px;
  }

  .control-btn {
    width: 100%;
  }
}

/* Add Addresses */

.address-manager {
  background: #ffffff;
  border-radius: 25px;
  padding: 35px;
  box-shadow: 0 15px 40px rgba(87, 151, 40, 0.1);
}

.add-address-section h2 {
  font-size: 28px;
  /* font-weight: 800;
    color: #579728; */
  margin-bottom: 25px;
  text-align: center;
}

#add-address-form {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

#add-address-form>div {
  flex: 1 1 calc(50% - 10px);
  min-width: 0;
}

#add-address-form input,
#add-address-form select {
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 15px;
  color: #2d3748;
  background: #fff;
  transition: border-color 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}

#add-address-form input:focus,
#add-address-form select:focus {
  outline: none;
  border-color: #579728;
  box-shadow: 0 0 5px rgba(87, 151, 40, 0.3);
}

#add-address-form input:required:valid,
#add-address-form select:required:valid {
  border-color: #579728;
}

#add-address-form button {
  padding: 12px 30px;
  background: #579728;
  color: white;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s ease;
  box-shadow: 0 5px 15px rgba(87, 151, 40, 0.4);
  width: fit-content;
  margin: 0 auto;
}

#add-address-form button:hover {
  transform: translateY(-3px) scale(1.03);
  background: #46801e;
  box-shadow: 0 8px 25px rgba(87, 151, 40, 0.6);
}

/* Empty State */
.empty-state {
  display: none;
  background: #f8faf5;
  border-radius: 25px;
  padding: 70px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(87, 151, 40, 0.1);
}

.empty-state h3 {
  font-size: 32px;
  font-weight: 800;
  color: #579728;
  margin-bottom: 15px;
}

.empty-state p {
  font-size: 18px;
  color: #718096;
}

/* Responsive Design */
@media (max-width: 768px) {
  .address-manager {
    padding: 25px;
  }

  .add-address-section h2 {
    font-size: 24px;
  }

  #add-address-form>div {
    flex: 1 1 100%;
  }
}

@media (max-width: 480px) {
  .address-manager {
    padding: 20px;
  }

  #add-address-form input,
  #add-address-form select {
    padding: 10px 12px;
    font-size: 14px;
  }

  #add-address-form button {
    padding: 8px 18px;
    font-size: 13px;
  }
}

/* View Details */

.invoice-top-section {
  display: flex;
  justify-content: space-between;
  padding-bottom: 25px;
  margin-bottom: 25px;
  border-radius: 10px;
  padding: 20px;
}

.invoice-top-section div {
  text-align: left;
  color: #333;
  padding: 10px;
  border-radius: 8px;
}

.invoice-top-section div strong {
  color: #2c3e50;
  font-size: 18px;
  font-weight: 600;
}

.invoice-heading {
  text-align: center;
  color: #34495e;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #3498db, #8e44ad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.item-table {
  margin-bottom: 25px;
  overflow: hidden;
  width: 100%;
}

.item-table thead th {
  background: #579728;
  color: white;
  border: none;
  font-weight: 600;
  padding: 15px;
  text-align: center;
}

.item-table tbody tr {
  transition: all 0.3s ease;
}

.item-table tbody tr:hover {
  background: #ecf0f1;
  transform: scale(1.02);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.item-table tbody td {
  vertical-align: middle;
  border-bottom: 1px solid #ddd;
  padding: 15px;
  text-align: center;
}

.item-table img {
  width: 70px;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.item-table img:hover {
  transform: scale(1.1);
}

.item-row {
  display: flex;
  align-items: center;
  gap: 15px;
}

.original-price {
  color: #7f8c8d;
  text-decoration: line-through;
  font-size: 14px;
}

.discount {
  color: #e74c3c;
  font-weight: 600;
  margin-left: 5px;
}

.item-quantity,
.item-rate,
.item-amount {
  font-weight: 500;
  color: #2c3e50;
}

.btn-outline-danger {
  border-color: #e74c3c;
  color: #e74c3c;
  transition: all 0.3s ease;
  padding: 5px 15px;
  border-radius: 10px;
}

.btn-outline-danger:hover {
  background: linear-gradient(90deg, #e74c3c, #c0392b);
  color: white;
  border-color: #c0392b;
}

.summary-box {
  padding: 15px;
  border-radius: 15px;
  text-align: right;
  font-size: 16px;
  color: #2c3e50;
  margin-bottom: 20px;
}

.summary-title {
  font-size: 20px;
  font-weight: 600;
  color: #34495e;
  margin-bottom: 15px;
}

.summary-value {
  font-weight: 500;
  color: #2c3e50;
}

.discount-text {
  color: #e74c3c;
}

.summary-total {
  font-size: 22px;
  font-weight: 700;
}

.footer-text {
  text-align: center;
  color: #7f8c8d;
  font-size: 14px;
  margin-top: 20px;
  padding: 10px;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.footer-link {
  color: #579728;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: rgb(55, 111, 15);
  text-decoration: underline;
}

.action-row {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-evenly;
  margin: 10px 0px;
}

/* Stylish Quantity Controls */
.quantity-box {
  display: flex;
  align-items: center;
  background: #f1f1f1;
  border-radius: 30px;
  padding: 4px 10px;
  min-width: 120px;
  justify-content: space-between;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
}

.qty-btn {
  border: none;
  background-color: transparent;
  font-size: 20px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #333;
  transition: background 0.2s;
  line-height: 1;
}

.qty-btn:hover {
  background-color: #e0e0e0;
}

.qty-input {
  width: 30px;
  border: none;
  background: none;
  text-align: center;
  font-size: 16px;
  pointer-events: none;
  font-weight: 500;
}

/* Stylish Add Button */
.btn-add {
  background-color: #579728;
  color: white;
  font-weight: 500;
  border-radius: 30px;
  padding: 8px 20px;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.btn-add:hover {
  background-color: #ffffff;
  transform: scale(1.05);
  color: #579728;
  border: 1px solid #579728;
}

@media (max-width: 576px) {
  .action-row {
    flex-direction: column;
    align-items: stretch;
  }
}

.weight {
  font-size: 14px;
  color: #555;
  margin-top: -8px;
  margin-bottom: 5px;
}

.badge-weight {
  background-color: #FAA22B;
  color: #ffffff;
  font-size: 11px;
  font-weight: 500;
  padding: 4px 8px;
  border-radius: 20px;
  display: inline-block;
  white-space: nowrap;
  margin-top: -35px;
}

/* Responsive Adjustments */

/* Tablets and smaller devices (max-width: 768px) */
@media (max-width: 768px) {
  .invoice-top-section {
    flex-direction: column;
    padding: 15px;
    margin-bottom: 15px;
  }

  .invoice-top-section div {
    text-align: center;
    padding: 8px;
    margin-bottom: 10px;
  }

  .invoice-top-section div strong {
    font-size: 16px;
  }

  .invoice-heading {
    font-size: 24px;
    letter-spacing: 1px;
  }

  .item-table thead th {
    padding: 10px;
    font-size: 14px;
  }

  .item-table tbody td {
    padding: 10px;
    font-size: 14px;
  }

  .item-table img {
    width: 50px;
  }

  .item-row {
    flex-direction: column;
    gap: 10px;
  }

  .original-price {
    font-size: 12px;
  }

  .discount {
    font-size: 12px;
  }

  .item-quantity,
  .item-rate,
  .item-amount {
    font-size: 14px;
  }

  .btn-outline-danger {
    padding: 4px 12px;
    font-size: 14px;
  }

  .summary-box {
    padding: 10px;
    text-align: center;
    font-size: 14px;
  }

  .summary-title {
    font-size: 18px;
  }

  .summary-total {
    font-size: 20px;
  }

  .action-row {
    flex-direction: row;
    gap: 8px;
  }
}

/* Mobile devices (max-width: 576px) */
@media (max-width: 576px) {
  .invoice-top-section {
    padding: 10px;
    margin-bottom: 10px;
  }

  .invoice-top-section div {
    padding: 5px;
    margin-bottom: 8px;
    text-align: justify;
  }

  .invoice-top-section div strong {
    font-size: 14px;
  }

  .invoice-heading {
    font-size: 20px;
    letter-spacing: 0.5px;
  }

  .item-table thead th {
    padding: 8px;
    font-size: 12px;
  }

  .item-table tbody td {
    padding: 8px;
    font-size: 12px;
  }

  .item-table img {
    width: 40px;
  }

  .item-row {
    gap: 8px;
  }

  .original-price {
    font-size: 10px;
  }

  .discount {
    font-size: 10px;
  }

  .item-quantity,
  .item-rate,
  .item-amount {
    font-size: 12px;
  }

  .btn-outline-danger {
    padding: 3px 10px;
    font-size: 12px;
    display: flex;
    align-items: center;
  }

  .summary-box {
    padding: 8px;
    font-size: 12px;
  }

  .summary-title {
    font-size: 16px;
  }

  .summary-total {
    font-size: 18px;
  }

  .footer-text {
    font-size: 12px;
    padding: 8px;
  }

  .action-row {
    gap: 1px;
  }
}

/* -----------------------
  Check Out
----------------------------*/

.checkout-container {
  max-width: 1200px;
  margin: auto;
}

.billing-form-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;
}

.form-block {
  margin-bottom: 15px;
}

.form-block label {
  font-weight: 500;
  display: block;
  margin-bottom: 5px;
  color: #000;
}

.form-input,
.form-select-custom {
  width: 100%;
  border-radius: 30px;
  padding: 8px 20px;
  border: 1px solid #ced4da;
  background-color: white;
  font-size: 13px;
}

.delivery-options {
  margin-top: 25px;
}

.delivery-options label {
  font-weight: 500;
  margin-left: 8px;
}

.summary-box {
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 12px;
  padding: 25px;
}

.summary-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.summary-total {
  font-weight: 600;
}

.summary-discount {
  color: #dc3545;
}

.proceed-btn {
  width: 100%;
  background-color: #205c32;
  color: white;
  border: none;
  border-radius: 25px;
  padding: 12px;
  font-weight: 500;
  margin-top: 20px;
}

.form-radio {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.form-radio input[type="radio"] {
  accent-color: #205c32;
}

/* Login Page */

.login-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
}

.login-form {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 400px;
}

.login-form h2 {
  margin: 0 0 20px;
  font-size: 24px;
  text-align: center;
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

input[type="tel"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
}

.otp-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
}

.otp-form {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 400px;
}

.otp-form h2 {
  margin: 0 0 20px;
  font-size: 24px;
  text-align: center;
}

.resend-link {
  display: block;
  text-align: center;
  margin-top: 15px;
  color: #007bff;
  text-decoration: none;
}

.resend-link:hover {
  text-decoration: underline;
}

section.about-section {
  padding: 50px 0;
  background: #f7f8fa;
}

.mission-vision-box {
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
  min-height: 200px;
}

.mission-vision-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.mission-vision-desc {
  font-size: 1rem;
  color: #6c757d;
}

.btn-primary:hover {
  color: #fff;
  background-color: #FAA22B;
  border-color: #FAA22B;
}


/* Owl Carousel Dot Styles */
.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #579728;
  display: block;
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  transition: opacity 0.2s ease;
  border-radius: 50%;
  /* Changed from 30px to 50% for a perfect circle */
}

/* Remove default button styles from dot buttons */
.owl-carousel button.owl-dot {
  background: transparent;
  color: #faa22b;
  border: none;
  padding: 0 !important;
  font: inherit;
  cursor: pointer;
}

/* Active dot styling (optional improvement) */
.owl-theme .owl-dots .owl-dot.active span {
  background: #faa22b;
  /* Active dot color */
  opacity: 1;
}

.owl-carousel .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 10;
}

.owl-carousel .owl-prev,
.owl-carousel .owl-next {
  width: 50px;
  height: 50px;
    background-color: #FCB24E !important;
    color: #fff !important;
      border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  margin: 0 10px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.owl-carousel .owl-prev:hover,
.owl-carousel .owl-next:hover {
  background-color: #1b5e20;
  transform: scale(1.2);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.owl-carousel .owl-prev:focus,
.owl-carousel .owl-next:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(129, 199, 132, 0.3);
}

/* Custom Icons (using Font Awesome 5) */
.owl-carousel .owl-prev::before {
  content: '\f053';
  /* Font Awesome 5 left arrow */
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  /* Solid style for Font Awesome 5 */
}

.owl-carousel .owl-next::before {
  content: '\f054';
  /* Font Awesome 5 right arrow */
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  /* Solid style for Font Awesome 5 */
}


/* --------------------------------------------
Best Seller Products
-----------------------------------------------*/

.best-seller-section {
  padding: 60px 0;
  background-color: #f8f9fa;
}


/* HOME PAGE CHANGES */

.progress-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 941px;
  margin: 0 auto;
}

#progress-stats .headings p span {
  color: #1F2457;
}

#progress-stats .headings p span:after {
  background-repeat: no-repeat;
  background-size: contain;
}

.progress-statsowrap {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.progress-box {
  flex: 1 1 calc(50% - 16px);
  max-width: calc(50% - 16px);
  background: rgba(255, 255, 255, 0.80);
  border-radius: 24px;
  box-shadow: 0px 4px 32px 0px rgba(0, 0, 0, 0.08);
  background-image: url('images/asset.svg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  padding: 16px 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.progresser {
  position: relative;
  width: 120px;
  height: 120px;
}

.circle {
  transform: rotate(-90deg);
  width: 100%;
  height: 100%;
}

.circle-bg,
.circle-progress {
  fill: none;
  stroke-width: 10;
  r: 40;
  cx: 50;
  cy: 50;
}

.circle-bg {
  stroke: #eee;
}

.circle-progress {
  fill: none;
  stroke-dasharray: 251;
  stroke-dashoffset: 251;
  transition: stroke-dashoffset 1.5s ease-out;
  stroke-linecap: round;
}

.percentage {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 32px;
  font-weight: 700;
  line-height: 130%;
  letter-spacing: -0.64px;
  color: #1F2457;
}

.desc {
  margin-top: 12px;
  font-size: 20px;
  font-weight: 600;
  color: #4D4D4D;
}

.remndr {
  margin-top: 32px;
  text-align: center;
  font-size: 16px;
  color: #4D4D4D;
}

@media (max-width: 1024px) {
  .progress-box {
    flex: 1 1 calc(50% - 16px);
    max-width: calc(50% - 16px);
  }
}

@media (max-width: 640px) {
  .progress-container {
    max-width: 100%;
    margin: 0 16px;
  }

  .progress-statsowrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .progress-box {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .progresser {
    width: 80px;
    height: 80px;
  }

  .percentage {
    font-size: 16px;
  }

  .desc {
    font-size: 12px;
  }

  .remndr {
    font-size: 10px;
    margin-top: 16px;
  }
}

@media (min-width: 1440px) {
  .progress-container {
    max-width: 1280px;
  }
}

/* Defining Testimonials section with light green background and wave effect */
.testimonials-section {
  padding: 60px 0;
  background: linear-gradient(to right, rgba(87, 151, 40, 0.3), rgba(245, 197, 24, 0.3));
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(76, 175, 80, 0.08), transparent 70%);
  z-index: -1;
}

@keyframes wave {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.4;
  }

  50% {
    transform: scale(1.03);
    opacity: 0.2;
  }
}

/* Testimonial Card Styling */
.hygi-testimonial-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  min-height: 320px;
  height: auto;
  margin: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
  text-align: left;
  border: 1px solid #D3D8DA;
}

/* Testimonial Content */
.testimonial-content {
  position: relative;
  padding: 20px;
}

.testimonial-content blockquote {
  font-size: 1rem;
  font-style: italic;
  color: #333;
  margin: 0;
  flex-grow: 1;
  display: flex;
  align-items: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height: 1.5;
}

.testimonial-author {
  margin-top: 10px;
  text-align: right;
}

.testimonial-author cite {
  font-size: 0.9rem;
  font-weight: 600;
  color: #579728;
}

/* Profile Image */
.hygi-testimonial-profile {
  width: 100% !important;
  height: 250px;
  border: 2px solid #4caf50;
  background-color: #e8f5e9;
  object-fit: cover;
  border-radius: 10px 10px 0px 0px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.hygi-testimonial-card:hover .hygi-testimonial-profile {
  border-color: #2e7d32;
  box-shadow: 0 4px 8px rgba(76, 175, 80, 0.3);
}

/* Owl Carousel Styling */
.hygi-owl-carousel {
  position: relative;
}

.hygi-owl-carousel .hygi-owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 10;
}

.hygi-owl-carousel .hygi-owl-prev,
.hygi-owl-carousel .hygi-owl-next {
  width: 50px;
  height: 50px;
  background-color: rgba(129, 199, 132, 0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  margin: 0 20px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.hygi-owl-carousel .hygi-owl-prev:hover,
.hygi-owl-carousel .hygi-owl-next:hover {
  background-color: #1b5e20;
  transform: scale(1.2);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.hygi-owl-carousel .hygi-owl-prev:focus,
.hygi-owl-carousel .hygi-owl-next:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(129, 199, 132, 0.3);
}

.hygi-owl-carousel .hygi-owl-prev i::before {
  content: '\f284';
}

.hygi-owl-carousel .hygi-owl-next i::before {
  content: '\f285';
}

.hygi-owl-carousel .hygi-owl-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.hygi-owl-carousel .hygi-owl-dot {
  width: 12px;
  height: 12px;
  background-color: #81c784 !important;
  /* Light green default color */
  border: 2px solid #4caf50 !important;
  /* Green border for contrast */
  border-radius: 50%;
  margin: 0 6px;
  display: inline-block;
  transition: all 0.3s ease;
  cursor: pointer;
}

.hygi-owl-carousel .hygi-owl-dot:hover {
  background-color: #a5d6a7;
  /* Lighter green on hover */
  transform: scale(1.3);
  /* Slight scale up on hover */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hygi-owl-carousel .hygi-owl-dot.active {
  width: 14px;
  height: 14px;
  background-color: #2e7d32;
  /* Darker green for active state */
  border-color: #2e7d32;
  box-shadow: 0 2px 6px rgba(46, 125, 50, 0.3);
}

/* Responsive Styles */
@media (max-width: 991px) {
  .hygi-testimonial-card {
    margin-bottom: 20px;
    min-height: 320px;
    /* Maintain min-height */
    height: auto;
  }

  .hygi-testimonial-profile {
    height: 120px;
    /* Adjusted for smaller screens */
  }

  .testimonial-content blockquote {
    font-size: 0.9rem;
    /* Slightly smaller text */
  }

  .testimonial-author cite {
    font-size: 0.85rem;
    /* Adjusted author text size */
  }

  .hygi-owl-carousel .hygi-owl-dot {
    width: 10px;
    height: 10px;
    margin: 0 5px;
  }

  .hygi-owl-carousel .hygi-owl-dot.active {
    width: 12px;
    height: 12px;
  }
}

@media (max-width: 767px) {
  .testimonials-section {
    padding: 40px 0;
  }

  .hygi-testimonial-card {
    min-height: 280px;
    /* Reduced min-height for mobile */
    height: auto;
    margin: 5px;
  }

  .hygi-testimonial-profile {
    height: 190px;
    /* Further reduced for mobile */
    border-radius: 8px 8px 0px 0px;
    /* Adjusted border-radius */
  }

  .testimonial-content {
    padding: 15px;
    /* Reduced padding */
  }

  .testimonial-content blockquote {
    font-size: 0.8rem;
    /* Smaller text for mobile */
  }

  .testimonial-author cite {
    font-size: 0.75rem;
    /* Smaller author text */
  }

  .hygi-owl-carousel .hygi-owl-prev,
  .hygi-owl-carousel .hygi-owl-next {
    width: 42px;
    height: 42px;
    font-size: 22px;
    margin: 0 25px;
  }

  .hygi-owl-carousel .hygi-owl-dot {
    width: 8px;
    height: 8px;
    margin: 0 4px;
    border-width: 1px;
  }

  .hygi-owl-carousel .hygi-owl-dot.active {
    width: 10px;
    height: 10px;
  }
}

/* Best Seller Section */
.best-seller-section {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.best-seller-box {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.best-seller-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.best-seller-box img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

.best-seller-box h5 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1F2457;
  margin: 15px 0 10px;
}

.best-seller-box p {
  font-size: 0.9rem;
  color: #4D4D4D;
  margin-bottom: 15px;
}

.best-seller-carousel .owl-nav {
  position: absolute;
  top: -50px;
  right: 20px;
  display: flex;
  gap: 10px;
}

.best-seller-carousel .owl-prev,
.best-seller-carousel .owl-next {
  width: 40px;
  height: 40px;
  background-color: #579728;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  transition: all 0.3s ease;
}

.best-seller-carousel .owl-prev:hover,
.best-seller-carousel .owl-next:hover {
  background-color: #2e7d32;
  transform: scale(1.1);
}

@media (max-width: 767px) {
  .best-seller-section {
    padding: 40px 0;
  }

  .best-seller-box img {
    height: 150px;
  }

  .best-seller-box h5 {
    font-size: 1rem;
  }

  .best-seller-box p {
    font-size: 0.8rem;
  }
}


.mobile-app-feature{
  padding-top:150px;
}
@media (max-width: 991px) {
  .mobile-app-feature {
    padding-top: 0px;
  }

}