    @import url('https://fonts.googleapis.com/css2?family=Poppins:ital@0;1&display=swap');



    body{
        overflow-x: hidden;
    }

    *{
        font-family: 'Poppins', sans-serif;
    }

    .navbar{
        background-color: #fff;
        /* border-bottom: solid 5px black; */
    }

    .navbar-nav{
        margin: auto;
    }

    .navbar-nav li{
        width: 150px;
    }

    .navbar-brand img{
        width: 130px;
    }

    /* .carousel-item img{
        height: 690px !important;
        object-fit: contain;
        width: 100% !important;
    } */

    .w-100{
        width: 100% !important;
    }

    .d-block{
        display: block;
    }

    .about-card{
        border: none !important;
    }

    .about{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        
    }

    .about p {
        text-align: center;
        font-size: 14px !important;
        color: black;
    }

    .about h3{
        color: #81bb27;
        font-weight: bold;
        text-align: center;

    }

    .about button{
        background-color: transparent;
        padding: 10px;
        width: 150px;
        color: #81bb27;
        border: solid 2px #81bb27;
    }

    .about button:hover{
        background-color: #81bb27;
        color: #fff;
        transition: ease 1s;
    }

    .product-card img{
    width: 200px;
    margin: auto;
    }

    .product-card{
        /* border: none; */
        text-align: center;
    }

    .product-card button{
        background-color: #81bb27;
        color: #fff;
    }

    .view {

        display: flex;
        justify-content: center;
    }

    .view .btn{
        background-color: #81bb27;
        color: #fff;
        width: 150px;
        padding: 10px;
    }
    .product-btn{
        background-color: #81bb27;
        color: #fff;
        width: 140px;
    }


    .footer-product a{
    color: #808080;
    }


    .footer-links a{
        color: #808080
    }



    .page-show{
        background-color: #81bb27;
        width: 100%;
        height: 150px;
        color: #fff;
        font-weight: bold;
        display: flex;
        justify-content: center;
        align-items: center;
        
    }

    .page-show h2{
        font-size: 45px;
        /* font-weight: bold; */
    }


    .contact-main{
        display: flex;
        justify-content: space-around;
        align-items: center;
        /* flex-direction: column; */
    }

    .form{
        display: flex;
        flex-direction: column;
        /* justify-content: space-between; */
        align-items: center;
        justify-content: center;
    }

    .form input{
        margin-bottom: 20px;
        width: 500px;
        height: 50px;
        border: 2px solid #dfd8d8;
        
    }

    .form button{
        background-color: black;
        color: #fff;
        border: none;
        width: 200px;
        height: 50px;
        padding: 10px;
    }

    .form input::placeholder{
        padding-left: 20px;
    }


    #Message{
    margin-bottom: 20px;
    border: 2px solid #dfd8d8;
    }

    #Message::placeholder{
        padding-left: 20px;
    }



    #Message:focus{
        outline: 0px;
    }


    .form input:focus{
    outline: 0px;
    }


    .email h6{
        color: black;
        font-size: 20px;
    }

    .call h6{
        color: black;
        font-size: 20px;
    }

    .email h6{
        color: black;
        font-size: 20px;
    }

    .whatsup h6{
        color: black;
        font-size: 20px;
    }
    .contact-detail{
        justify-content: center;
        align-items: center;
    }




    .min{
        text-align: left;
    }


    /* 🛒 Cart Icon Counter */
.cart-icon {
  position: fixed;
  top: 20px;
  right: 30px;
  font-size: 22px;
  color: white;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  padding: 12px 15px;
  z-index: 1000;
  cursor: pointer;
  transition: all 0.3s ease;
}
.cart-icon:hover {
  transform: scale(1.1);
}
#cartCount {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #81bb27;
  color: white;
  font-size: 12px;
  padding: 3px 6px;
  border-radius: 50%;
}

/* 🧊 Glass Sidebar */
.cart-sidebar {
  position: fixed;
  top: 0;
  right: -400px;
  width: 350px;
  height: 100vh;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-left: 2px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 20px;
  transition: right 0.5s ease;
  z-index: 999;
  overflow-y: auto;
}
.cart-sidebar.active {
  right: 0;
}

/* Header & Buttons */
.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-header h4 {
  font-weight: bold;
  color: #81bb27;
}
.cart-header button {
  background: transparent;
  border: none;
  color: white;
  font-size: 22px;
  cursor: pointer;
}
.cart-footer {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
}
.clear-btn {
  background: transparent;
  border: 2px solid #81bb27;
  color: #81bb27;
  padding: 8px 14px;
  cursor: pointer;
  border-radius: 6px;
}
.checkout-btn {
  background: #81bb27;
  border: none;
  padding: 8px 14px;
  color: black;
  cursor: pointer;
  border-radius: 6px;
}
label{
    color: black;
}

/* Cart Items */
.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 10px;
}
.cart-item img {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  object-fit: cover;
}
.cart-item-details {
  flex: 1;
  margin-left: 10px;
}
.cart-item h6 {
  font-size: 16px;
  margin: 0;
  color: black;
}
.cart-item p {
  font-size: 13px;
  color: rgb(105, 101, 101);
}
.cart-item select {
  background: rgba(255, 255, 255, 0.1);
  color: #406b00;
  border: none;
  padding: 3px;
  border-radius: 4px;
  font-weight: 600;
}

/* Quantity Buttons */
.qty-controls {
  display: flex;
  align-items: center;
}
.qty-controls button {
  background: #81bb27;
  border: none;
  color: green;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  cursor: pointer;
}
.qty-controls span {
  margin: 0 8px;
}



    @media only screen and (max-width:767px) {
        .benefits-img{
            width: 200px;
        }

        .page-show h2{
            font-size: 30px;
        }
    }

    @media only screen and (max-width:735px) {
    .contact-main{
        display: flex;
        flex-direction: column;
    align-items: center;

    }


    .form input{
        width: 20em;
        height: 35px;
    
    }

    #Message{
        height: 5em;
        width: 20em;
    }

    }

    @media only screen and (max-width:319px) {

        .form input{
            width: 15em;
            height: 30px;
        
        }
        
        #Message{
            height: 5em;
            width: 15em;
        }
        

    }


    @media only screen and (max-width:619px) {
    
        
        .about p{
        font-size: 8px !important;
        
        }

        .about h3{
    font-size: 15px;
        }

        /* .about button{
            width: 90px;
            padding: 5px;
        } */
    }