.banner {
    background: #ffcaa2;
    padding: 50px 0;
    text-align: center;
}

.banner h1 {
    font-size: 48px;
    font-family: 'Open Sans';
    font-weight: 600;
    line-height: 140%;
    margin-top: 13px;
    text-align: center;
    color: #000;

}

.bestSeller .button {
    border: 3px solid #1f533a;
    margin-top: 19px;
    padding: 13px 0;
    text-align: center;
    border-radius: 5px;
    background: transparent;
    width: 100%;
}

.quote-container {
    display: flex;
    align-items: center;
    gap: 15px;
    /* Space between elements */
}

.welcome-text {
    font-size: 18px;
    text-decoration: none;
    color: #1f533a;
    font-weight: 600;
    text-transform: capitalize;
    font-family: 'Open Sans';
    padding: 11px 12px;
    margin: 9px 7px;
}

.logout-form {
    margin-left: auto;
    /* Pushes the logout button to the right */
}

.logout-btn,
.login-btn {
    background-color: #ffc9a1;
    color: black;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

.logout-btn:hover,
.login-btn:hover {
    background-color: #d63c3c;
    /* Darker red on hover */
}



.fa-white {
    color: #fff !important;
    font-size: 17px !important;
    font-weight: 600 !important;
    padding-right: 16px !important;
}

.accordion-item {
    background-color: transparent !important;
    border: none !important;
}

.price {
    min-height: 81px;
}


.cart-container {
    width: 80%;
    margin: auto;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.cart-item-main {
    display: flex;
    justify-content: center;
}

.cart-item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
    width: 200px;
    height: 200px;
    object-fit: contain;
    border: none;
}

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

.cart-container th {
    font-size: 20px;
    background-color: black;
    color: white;
    color: #fff;
    margin: 0;
    padding: 12px;
    font-family: "Nunito Sans", sans-serif;
    font-weight: 600;
    line-height: 150%;
}

.cart-item img {
    width: 50px;
    height: auto;
    border-radius: 5px;
}

.quantity-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.quantity-controls button {
    background: #2a6848;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 3px;
}

.quantity-controls input {
    width: 57px;
    text-align: center;
    border: 1px solid #ccc;
    padding: 5px;
}

.remove-btn {
    background: #dc3545;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 3px;
}

.cart-total {
    font-size: 1.2em;
    font-weight: bold;
    text-align: right;
    margin-top: 20px;
}


.cart {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.cart-count {
    position: absolute;
    top: -19px;
    right: -9px;
    color: #22563d;
    font-size: 14px;
    font-weight: bold;
    border-radius: 50%;
    padding: 0px 7px;
    background: #ffcaa2;
    width: 22px;
    height: 22px;
}

.checkout-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #22563d;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

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

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}


.coupon-container {
    border-radius: 8px;
}

.coupon-flex {
    display: flex;
}

.coupon-flex h2 {
    font-size: 23px;
    width: 17%;
    line-height: 140%;
    font-weight: 400;
    font-family: "Nunito Sans", sans-serif;
    margin: 0 !important;
    padding: 16px 0;
    text-align: left;
}

.validate-coupon {
    padding: 10px;
    width: 28%;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 10px;
}

#result {
    color: red !important;
    font-size: 20px;
    line-height: 140%;
    font-weight: 400;
    font-family: "Nunito Sans", sans-serif;
    margin: 0 !important;
    padding: 16px 0;
    text-align: left;
    transition: opacity 0.5s ease-in-out;
    display: none;
    /* Initially hidden */
}


@media only screen and (max-width:1600px) {
    .coupon-flex h2 {
        width: 21%;
    }

    .bestSeller .title h2 {
        font-size: 20px;
    }
}


@media only screen and (max-width:1500px) {
    .coupon-flex h2 {
        width: 23%;
    }
}

@media only screen and (max-width:1400px) {
    .coupon-flex h2 {
        width: 25%;
    }
}

@media only screen and (max-width:1300px) {
    .coupon-flex h2 {
        width: 29%;
    }
}

@media only screen and (max-width:1100px) {
    .coupon-flex h2 {
        width: 31%;
    }
}

@media only screen and (max-width:1000px) {
    .coupon-flex h2 {
        width: 33%;
    }
}

@media only screen and (max-width:960px) {
    .coupon-flex h2 {
        width: 35%;
    }

    .validate-coupon {
        width: 58%;
    }
}

@media only screen and (max-width: 800px) {
    .coupon-flex h2 {
        width: 43%;
    }
}

@media only screen and (max-width: 700px) {
    .coupon-flex h2 {
        width: 54%;
    }
}

@media only screen and (max-width: 600px) {
    .coupon-flex h2 {
        width: 98%;
    }

    .validate-coupon {
        width: 98%;
    }

    .coupon-flex {
        display: block;
    }
}