body {
    margin: 0px;
    padding: 0px;
}

/* scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #afe5ea;
}


::-webkit-scrollbar-thumb {
    background-color: #34a332;
    border-radius: 10px;
}

/* == */
/* ////// */
header {
    position: fixed;
    top: 0;
    height: 90px;
    width: 100%;
    background-color: #fff;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 10px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    border: 2px #25A541 solid;
}

header div {
    display: flex;
    align-items: center;

}

.logo img {
    height: 45px;
}

.inputbutton input[type="search"] {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.inputbutton input[type="submit"] {
    padding: 8px 10px;
    background-color: #25A541;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.location select {
    padding: 8px;
    border-radius: 4px;
}

header p i {
    margin-right: 8px;
}

header p a {
    text-decoration: none;
    color: #25A541;
}

/*  */

/* menulist  */
.menulist ul {
    list-style: none;
    position: fixed;
    top: 88px;
    width: 100%;
    background-color: #fff;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    border: #25A541 solid;
    box-shadow: 0 18px 12px -14px #01ff2787;

}

.menulist a {
    margin: 0px;
    text-decoration: none;
    color: #000;
}

/* //////////////////// */
/*  */

#cart-container {
    width: 80%;
    margin: 20px auto;
    background: white;
    border-radius: 10px;
    border: #9fea93 solid;
    text-align: center;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    padding: 10px;
    border-bottom: 1px solid #ddd;
    text-align: center;
}

th {
    background: #28a745;
    color: white;
}

table img {
    width: 60px;
    height: 60px;
}

table button {
    padding: 5px 10px;
    margin: 5px;
    border: none;
    cursor: pointer;
}

table button:hover {
    opacity: 0.8;
}

table .remove-btn {
    background: #007bff;
    color: white;
}

table .qty-btn {
    background: #007bff;
    color: rgb(255, 255, 255);
}
/*  */
/*  */

.widgetContainer {
    margin: 24px;
    padding: 24px;
    background-color: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.banner_Image {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.banner_Image:hover {
    transform: scale(1.02);
}

.widgetContainerthree {
    margin: 23px;
    padding: 22px;
    background-color: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.widgetContainerthree img {
    border-radius: 10px;
    width: 387px;
}

.widgetContainerthree img:hover {
    transform: scale(1.02);
}
/*  */
/* footer */
.footer-section {
    background: #fff;
    position: relative;
    border-radius: 100px;
}

.footer-logo {
    margin-bottom: 30px;
}

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

.footer-text p {
    margin-bottom: 14px;
    font-size: 14px;
    color: #000;
    line-height: 28px;
}

.footer-social-icon span {
    color: #000;
    display: block;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 20px;
}

.footer-social-icon a {
    color: #000;
    font-size: 16px;
}

.footer-social-icon i {
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 38px;
    border-radius: 50%;
}

.facebook-bg {
    background: #3B5998;
}

.twitter-bg {
    background: #55ACEE;
}

.fa-instagram {
    background-image: url(./image\ 8.jpg);
}

.footer-widget-heading h3 {
    color: #000;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 40px;
    position: relative;
}

.footer-widget-heading h3::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -15px;
    height: 2px;
    width: 50px;
    background: #000;
}

.footer-widget ul li {
    display: inline-block;
    float: left;
    width: 50%;
    margin-bottom: 12px;
}

.footer-widget ul li a {
    color: #000;
    text-transform: capitalize;
    text-decoration: none;
}

.subscribe-form {
    position: relative;
    overflow: hidden;
}

.subscribe-form input {
    width: 100%;
    padding: 14px 20px;
    background: #fff;
    border: 1px solid #000;
}

.subscribe-form button {
    position: absolute;
    right: 0;
    background: #fff;
    padding: 13px 20px;
    border: 1px solid #000;
    top: 0;
}

.subscribe-form button i {
    color: #000;
    font-size: 22px;
    transform: rotate(-6deg);
}

.copyright-area {
    background: #fff;
    padding: 25px 0;
}

.copyright-text p {
    margin: 0;
    font-size: 14px;
    color: #000;
}

.copyright-text p a {
    color: #000;
    text-decoration: none;
}

.footer-menu li {
    display: inline-block;
    margin-left: 20px;
}

.footer-menu li a {
    font-size: 14px;
    color: #000;
    text-decoration: none;
}

/*  */