<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.cart-container {
    max-width: 800px;
    margin: auto;
    background: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

h2 {
    text-align: center;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    overflow:hidden;
}
thead{
    background: #e59723;
    border-radius: 25px;
}
.cart-count{
    background-color: #8fd100 !important;
    color:#301210 !important;
}
th,
td {
    padding: 10px;
    text-align: center;
    border-bottom: 1px solid #ddd;
}
.empty_cart_row td span{
    font-size: 19px;
    font-weight: bold;  
}

th {
    color: white;
}

.total {
    text-align: right;
    font-size: 18px;
    margin-top: 20px;
}

.checkout-btn {
    display: block;
    width: 100%;
    padding: 10px;
    background: #e59723;
    color: white;
    text-align: center;
    text-decoration: none;
    font-size: 18px;
    border-radius: 25px;
    margin-top: 20px;
}

.checkout-btn:hover {
    background: #8b6902;
    color:white;
}

/* Quantity Button Styling */
.qty-btn {
    background-color: #9ac936;
    ;
    color: white;
    border: none;
    padding: 5px 10px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    margin: 0 5px;
}

.qty-btn:hover {
    background-color: rgb(189, 185, 185);
    ;
}

.minus {
    /* background-color: rgb(229 216 216); */
}

.minus:hover {
    background-color: rgb(189, 185, 185);
}

.h_shopping {
    color: black;
}

/* Button Styling */
.custom-button {
    display: inline-block;
    padding: 8px 18px;
    background-color: #e59723;
    color: white;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

/* Hover Effect */
.custom-button:hover {
    background-color: #e59723;
    color: white;
}

/* Prevent button from going full-width */
.button-container {
    /* text-align: center; */
}
.add-to-cart-button-wrapper{
    display: flex;
    
}
#mainmenu li a{
    /* color:#301210; */
    color:#ffe4a3;
    font-weight: bold;
    font-size:15px;
}
#mainmenu li a:hover{
color:#8fd100;
}

* {
    font-family: Josefin Sans ;
}

@media only screen and (max-width: 767px) {
    .qty-btn {
        padding: 1px 6px !important;
        margin: 0 1px !important;
    }
}





</pre></body></html>