@font-face {
    font-family: 'Moonrising';
    src: url('../../public/fonts/Moonrising.ttf') format('truetype');
}
@font-face {
    font-family: 'Louis';
    src: url('../../public/fonts/Louis George Cafe.ttf') format('truetype');
}
@font-face {
    font-family: 'Roboto';
    src: url('../../public/fonts/Roboto-Regular.ttf') format('truetype');
}
body {
    font-family: "Louis";
    background-color: #f5f5f5; /* Light blue background */
    overflow-x: hidden;
}
/* Basic loader styles */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Overlay background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Make sure it appears on top of everything */
}

.spinner {
    border: 4px solid rgba(0, 0, 0, 0.1); /* Light border */
    border-left: 4px solid #1c5e20; /* Dark green border */
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

/* Keyframes for spinner rotation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.title{
    font-family: "Moonrising";
}
footer {
    background-color: #1c5e20;
    padding: 10px 0;
    color: white;
}

h2 {
    text-align: center;
    margin-bottom: 20px;
    font-weight: 600;
    color: #1c5e20;
    margin-bottom: 20px;
}
}

.card-title {
    font-size: 1.2rem;
    color: #333;
}

.card-text {
    font-size: 1rem;
    color: #555;
}

.btn {
    background-color: #1c5e20;
    color: white;
    border: none;
    border-radius: 5px;
}

.btn:hover {
    background-color: #1c5e20;
}
/* Banner styles */
.banner {
    background-color: #1c5e20;  /* Green color similar to the navbar */
    color: white;
    text-align: center;
    padding: 40px 0;  /* Adds some padding around the text */
    margin-bottom: 20px;  /* Space below the banner */
}

/* Optional: If you'd like to use an image as a banner background */
.banner {
    background-image: url('your-banner-image.jpg'); /* Path to your banner image */
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 80px 0; /* Adjust padding as per your image size */
}

/* Optional: Banner Text Styling */
.banner h1 {
    font-family: "Moonrising";
    font-size: 2rem; /* Larger heading */
    font-weight: bold;
}

.banner p {
    font-family: "Louis";
    font-size: 1rem; /* Medium text */
    font-weight: lighter;

}
/* Category Card Styling */
.category-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.category-img-card, .product-card-img{
    height: 170px;
    background: #fff;
}

.category-card img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    /*object-fit: cover;*/
    border-radius: 8px;
}

.category-card h5 {
    font-size: 1rem;
    margin-top: 10px;
    font-weight: bold;
    color: #1c5e20;
    font-family: "Louis";
}

.category-card a {
    text-decoration: none;
    color: inherit;
}

.category-card a:hover {
    text-decoration: none;
    color: #218838;
}
/* Banner styles */
.banner {
    background-color: #1c5e20;  /* Green color similar to the navbar */
    color: white;
    text-align: center;
    padding: 20px 0;  /* Adds some padding around the text */
    margin-bottom: 0px;  /* Space below the banner */
}

/* Product Card Styling */
.product-card {
    /*border: 1px solid #ddd;*/
    /*border-radius: 8px;*/
    padding: 20px;
    text-align: center;
    /*box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);*/
    margin-bottom: 10px;
    background-color: #fff;
}

.product-card img {
    width: auto;
    max-width: 100%;
    height:auto;
    max-height: 100%;
    /*object-fit: cover;*/
    border-radius: 8px;
}

.product-card h5 {
    font-size: 1rem;
    margin-top: 10px;
    font-weight: normal;
    font-family: "Louis";
}

.product-card p {
    font-size: 1rem;
    color: #1c5e20;
}

.product-card .btn {
    background-color: #1c5e20;
    color: white;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

.product-card .btn:hover {
    background-color: #218838;
}
#why-us {
    background-color: #f8f9fa;
    padding: 30px 0;
}

#why-us h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.card {
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /*transition: transform 0.3s ease;*/
}

.card:hover {
    /*transform: scale(1.05); */
    /* Slight zoom effect */
}

.card-body {
    text-align: center;
}

.card-img-top {
    width: 100%;
    height: 100%;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
}

.card-text {
    font-size: 1rem;
    color: #555;
}

@media (max-width: 768px) {
    .card-body {
        padding: 20px;
    }
}
/* Happy Plant Parents Section */
#happy-plant-parents {
    background-color: #f1f8f6;
    padding: 40px 0;
}

#happy-plant-parents h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1c5e20;
    margin-bottom: 30px;
}






/* General Section Styling */
#about-us {
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: #f9f9f9;
}

/* About Us Section */
#about-us h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1c5e20;
    margin-bottom: 20px;
}

#about-us .lead {
    font-size: 1.25rem;
    font-weight: 300;
    color: #555;
}

/* Team Members Section */
.team-member {
    text-align: center;
    margin-bottom: 30px;
}

.team-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.team-member h5 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
}

.team-member p {
    font-size: 1rem;
    color: #555;
}

/* Values Section */
#about-us .row h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #1c5e20;
    margin-bottom: 20px;
}

/* Contact Button Styling */
button {
    font-size: 1rem;
    padding: 10px 20px;
    background-color: #1c5e20;
    border: none;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #27ae60;
}

/* Responsive Design */
@media (max-width: 768px) {
    #about-us h2 {
        font-size: 2rem;
    }

    .team-member {
        margin-bottom: 20px;
    }
}

/*banner*/
/* Simple Banner Styling */
.banner1 {
    position: relative;
    width: 100%;
    height: 400px; /* You can adjust the height of the banner */
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the whole banner */
}

.banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    /*background: rgba(255, 255, 255, 0.5);*/
    /*padding: 1%;*/
}

.banner-text h3 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #1c5e20;
}

.banner-text p {
    font-size: 1.2rem;

    color: #1c5e20;
}

/* Text Slide-in */
.slide-in {
    opacity: 0;
    transform: translateX(-100%);
    animation: slideIn 1s forwards;
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
/* Style for the search bar with icon */
.search-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.input-group {
    width: 80%;
    max-width: 600px;
}

.input-group-text {
    background-color: #ddd;
    border-left: none;
    cursor: pointer;
}

#search-bar {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ddd;
}

#search-bar:focus {
    outline: none;
    border-color: #5cb85c;
}

.fas.fa-search {
    color: #5cb85c;
}
/* About Us Section */
.about-us-section {
    background-color: #f9f9f9; /* Light background */
    padding: 60px 20px; /* Spacing around the section */
    text-align: center;
}

.about-us-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    font-weight: bold;
    color: #333;
}

/* Container for content */
.about-us-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* Text content */
.about-us-text {
    flex: 1;
    padding: 20px;
    font-size: 18px;
    color: #555;
    line-height: 1.6;
    max-width: 500px;
}

/* Button (CTA) */
.btn-cta {
    margin-top: 20px;
    padding: 12px 30px;
    font-size: 16px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: background-color 0.3s ease;
}

.btn-cta:hover {
    background-color: #0056b3;
}

/* Image styling */
.about-us-image {
    flex: 1;
    max-width: 500px;
    height: auto;
    padding: 20px;
}

.about-us-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .about-us-content {
        flex-direction: column;
        text-align: left;
    }

    .about-us-image {
        margin-top: 20px;
    }

    .about-us-text {
        font-size: 16px;
    }
}
/* Style for the Proceed to Checkout button */
.proceed-btn {
    background-color: #007bff;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.proceed-btn:hover {
    background-color: #0056b3;
}

/* Popup (Hidden by default) */
.popup {
    display: none; /* Hidden initially */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

/* Popup Content */
.popup-content {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    width: 400px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Close button (X) */
.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 30px;
    cursor: pointer;
}

/* Form styling */
#checkout-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#checkout-form input {
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.submit-btn {
    background-color: #1c5e20;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

.submit-btn:hover {
    background-color: #218838;
}
 .popup-form {
            display: none; /* Hidden by default */
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
            z-index: 9999; /* Make sure the popup is on top */
            justify-content: center;
            align-items: center;
        }
        .popup-content {
            background-color: #fff;
            padding: 20px;
            border-radius: 8px;
            width: 400px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        .popup-content h2 {
            margin-top: 0;
        }
         .popup-content input, .popup-content textarea {
            width: 100%;
            padding: 10px;
            margin: 10px 0;
            border-radius: 4px;
            border: 1px solid #ccc;
        }

        .popup-content button {
            padding: 10px 15px;
            background-color: #1c5e20;
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
        }
         .popup-content button:hover {
            background-color: #1c5e20;
        }

        .close-btn {
            color: #aaa;
            float: right;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
        }
        .close-btn:hover,
        .close-btn:focus {
            color: black;
            text-decoration: none;
            cursor: pointer;
        }
        
        /* Style the About Us section */
        .about-us {
            /*padding: 20px;*/
            /*background-color: #f4f4f4;*/
            border-radius: 8px;
            /*margin: 20px;*/
        }

        .about-us h2 {
            margin-top: 0;
        }

        .about-us p {
            font-size: 16px;
            color: #555;
        }

        .about-us .more-info {
            display: none;
            margin-top: 20px;
            font-size: 14px;
            color: #333;
        }

        .about-us button {
            background-color: #1c5e20;
            color: white;
            padding: 10px 20px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
        }

        .about-us button:hover {
            background-color: #1c5e20;
        }
a, a:hover{
    text-decoration: none;
}
.fa-custom {
  padding: 15px;
  width: 50px;
  text-align: center;
  text-decoration: none;
  margin: 5px 2px;
  border: 1px solid;
}

.fa:hover {
    opacity: 0.7;
    color: white;
}

.fa-facebook {
  background: #3B5998;
  color: white;
}
.text.single-line {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-height: 30px;
}
.error{
    color: red;
}
#collapsibleNavbar a{
    color: #000;
}
.cart{
    margin-top: 3%;
}
.cart a{
    font-size: 13px;
}
.mycartdiv h5 {
    font-size: 16px;
    color: #000;
    margin-top: 4px;
    margin-bottom: 2px;
}
/*Cart page*/
.cart{
    margin-top: 3%;
    margin-bottom: 3%;
}
.cartitem{
    background: #fff;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12)
}
.cartimage{
    height: 145px;
}
.cartimage img{
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
}
.cartmtop{
    margin-top: 1%;
    background: #fff;
    box-shadow: 0 5px 10px 0 rgba(255, 255, 255, 0.16), 0 5px 10px 0 rgba(255, 255, 255, 0.12);
}
.cartpname{
    color: #5f6060;
    font-size: 14px;
    margin: 0;
    line-height: 2em;
    font-weight: 300;
    display: inline-block;
}
.cartpprice{
    font-size: 18px;
    color: #1c5e20;
    margin: 0;
    font-weight: 500;
}
.quantline{
    font-size: 14px;
    color: #777;
    margin: 0;
    line-height: 2em;
}
.quantity_plus, .quantity_minus{
    background: #1c5e20;
    padding: 0;
     border: 1px solid #1c5e20;
    width: 27px;
    height: 27px;
    color: #fff;
    font-size: 17px;
    text-align: center;
    margin: 0;
}
.quantity_plus:hover, .quantity_minus:hover{
    color: #fff;
    border: 1px solid #1c5e20;
    background: #1c5e20;
}

.quantity_text{
    background: none;
    padding: 0;
    border: 1px solid #777;
    width: 45px;
    height: 27px;
    color: #000;
    font-size: 17px;
    text-align: center;
    margin: 0;
}
.cartremove{
    font-size: 14px;
    font-weight: 400;
    color: #5f6060;
    border: 1px solid #777;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    text-align: center;
    vertical-align: middle;
    display: table-cell;
}
.rword{
    margin: 0;
    font-size: 14px;
    text-align: center;
    vertical-align: middle;
    display: table-cell;
    color: red;
    height: 25px;
    cursor: pointer;
    float: right;
    font-weight: 800;
}
.multiply{
    color: #1c5e20;
    font-weight: bold;
}
.oheading, .opheading, .grandtotal, .pgrandtotal{
    margin: 0;
    line-height: 2em;
    font-size: 13px;
}
.opheading{
    text-align: right;
}
.grandtotal{
    font-size: 15px;
    color: #000;
}
.pgrandtotal{
    text-align: right;
    font-size: 15px;
    color: #000;
}
.cline{
    color: #000;
    margin-top: 5%;
    font-size: 14px;
}
#couponname{
    width: 100%;
    height: 35px;
    border-radius: 0px;
    box-shadow: none;
}
#couponbtn{
    width: 100%;
    height: 34px;
    text-align: center;
    background: #fff;
    color: #afadb5;
    border: 2px solid #afadb5;
    outline: none;
    font-size: 14px;
}
#couponbtn:hover{
    color:#FF8C00;
    border: 2px solid #FF8C00;
}
#checkout{
    background: #1c5e20;
    width: 110px;
    height: 38px;
    border: none;
    color: #fff;
    font-size: 15px;
}
#checkout:hover{
    background:#1c5e20; 
}
#pcheckout{
    background: #1c5e20;
    width: 200px;
    height: 38px;
    border: none;
    color: #fff;
    font-size: 14px;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.16), 0 2px 4px 0 rgba(0, 0, 0, 0.12);
}
#pcheckout:hover{
    background:#1c5e20; 
}
.shadow{
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}

.pack-size{
    border: 1px solid #eee;
    padding: 2%;
    margin-bottom: 5%;
    font-size: 12px;
}
.pack-size-span-padding{
    padding-left: 3%;
}
#gallery_pdp img{
    border: 1px solid #eee;
}
.pname{
    font-size: 20px;
    line-height: 2em;
}
.border-bottom{
    border-bottom: 1px solid #eee;
}
.specification-heading{
    font-size: 17px;
    line-height: 2em;
}
.specification-description{
    font-size: 13px;
    line-height: 2em;
    color: #777;
    margin-bottom: 1%;
}
.bg-white{
    overflow: hidden;
}
.offer-banner span{
    position: absolute;
    right: 0;
    width: 90px;
    height: 90px;
    background: #e01212;
    border-radius: 50%;
    text-align: center;
    vertical-align: middle;
    color: #fff;
    padding-top: 2%;
}
.overlay{
    background: #fff;
}
.overlay h5{
    background: rgba(0,0,0,0.6);
    color: #fff;
    text-align: center;
    position: absolute;
    width: 85%;
    bottom: 0%;
    font-size: 14px;
    padding: 3px;
}

.error-main{
    background-color: #fff;
    box-shadow: 0px 10px 10px -10px #5D6572;
    margin-top: 5%;
    margin-bottom: 5%;
}
.error-main h1{
    font-weight: bold;
    color: #444444;
    font-size: 100px;
    text-shadow: 2px 4px 5px #6E6E6E;
}
.error-main h6{
    color: #42494F;
}
.error-main p{
    color: #9897A0;
    font-size: 14px; 
}
.min-height-350{
    min-height: 350px;
}
.nocart h3{
    font-size: 20px;
}
.bg-success{
    background: #1c5e20 !important;
}
.cicon {
    font-size: 20px;
    margin-right: 6px;
    color: #fff;
}
.navbar{
    background: #fec107;
}
.card_title_div {
    min-height: 80px;
}
.category_div{
    width: 100%;
    height: 160px;
    text-align: center;
}
.category_div img{
   width: 160px;
    height: 160px;
    max-width: 100%;
    max-height: 100%;
    border-radius: 50%;
    object-fit: cover;
}
.logolistTitle{
    margin-top: 10px;
    font-size: 16px;
    font-weight: 400;
    color: #323232;
    text-align: center;
}
#product-search, #product-search1{
    border-radius: 15px;
    padding: 5px;
}
#suggestions, #suggestions1 {
    position: absolute;
    z-index: 1000;
    background-color: white;
    border: 1px solid #ccc;
    width: 100%;
    display: none;
    list-style: none;
    padding: 0;
}
#suggestions li, #suggestions1 li {
    padding: 10px;
    cursor: pointer;
}
#suggestions li:hover, #suggestions1 li:hover {
    background-color: #f0f0f0;
}

.product-list {
  width: 80%;
  margin: 0 auto;
}
.product-item {
  position: relative;
  padding: 20px;
  text-align: center;
  width: 100%;
}
.product-item img {
    object-fit: cover;
    border-radius: 50%;
   width: 20vw;  /* Responsive width based on viewport width */
    height: 20vw; /* Ensures height is proportional to width */
    max-width: 180px; /* Limits the size on larger screens */
    max-height: 180px; /
    margin: auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background: #fff;
    margin: auto;
}

.slider-container {
  width: 100%;
}

.dropdown-submenu {
  position: relative;
}

.dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -6px;
  display: none;
  position: absolute;
}

.dropdown-submenu .dropdown-menu.show {
    display: block;
}

.dropdown-item.active, .dropdown-item:active{
    background: #1c5e20 !important;
}
.cart-count {
  /*font-size: 0.7rem;*/
  /*min-width: 18px;*/
  /*height: 18px;*/
  text-align: center;
  background: #1c5e20;
}
.pimage{
    width: auto;
    max-width: 100%;
    margin: auto;
    height: auto;
    object-fit: cover;
    max-height: 100%;
}
.cslider{
    height: 400px;
}
.carousel-inner{
    height: 100%;
}
@media (min-width: 768px) {
  .dropdown-submenu {
    position: relative;
  }

  .dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
  }

  /* Prevent overflow */
  .dropdown-submenu:hover .dropdown-menu {
    display: block;
  }

  .navbar-nav .dropdown-menu {
    position: absolute;
    z-index: 1000;
  }

  /* Responsive fix: flip submenu to left if near window edge */
  .dropdown-menu-end {
    left: auto;
    right: 100%;
  }
}
@media (max-width: 767.98px) {
    .dropdown-menu,
    .dropdown-submenu .dropdown-menu {
        position: static;
        float: none;
        width: 100%;
    }
}
.dropdown-item:focus, .dropdown-item:hover{
    background: #1c5e20;
    color: #fff !important;
}
.carousel-item{
    height: 100%;
}