/* Navigation Bar */
ul#menu-main-menu li {
    font-size: 20px;
    margin-right: 35px !important
}
ul#menu-main-menu li a {
    text-decoration: none;
    color: black;
    text-transform: uppercase;
}

.mini-cart-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 9998;
}
.mini-cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100%;
    background: #fff;
    box-shadow: -3px 0 10px rgba(0,0,0,0.2);
    transition: right 0.3s ease-in-out;
    z-index: 9999; /* higher than overlay */
}
.mini-cart-sidebar.active {
    right: 0;
}
/* header icon css */
/* Cart icon button */
#cart-icon-wrapper {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9997;
}
.cart-icon-btn {
    background: #ff6600;
    color: #fff;
    border: none;
    padding: 10px 14px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}
.cart-count {
    background: #fff;
    color: #ff6600;
    font-weight: bold;
    border-radius: 50%;
    padding: 2px 6px;
    margin-left: 5px;
}

/* Sidebar cart */
.mini-cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px; /* hidden */
    width: 400px;
    height: 100%;
    background: #fff;
    box-shadow: -3px 0 10px rgba(0,0,0,0.2);
    transition: right 0.3s ease-in-out;
    z-index: 9999;
}
.mini-cart-sidebar.active {
    right: 0;
}
.mini-cart-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 9998;
}

.mini-cart-content {
    padding: 20px;
    height: 100%;
    overflow-y: auto;
}

/* Mini Cart Buttons */
.woocommerce-mini-cart__buttons .button {
    margin-right: 8px; /* space between buttons */
}
.woocommerce-mini-cart__buttons .button:last-child {
    margin-right: 0; /* remove space on last button */
}
.woocommerce-mini-cart__buttons .button {
    display: inline-block;
    padding: 8px 14px;
    font-size: 14px;
    border-radius: 6px;
    text-align: center;
    width: 100%;         /* full width in sidebar */
    margin-bottom: 8px;  /* spacing between stacked buttons */
}

.woocommerce-mini-cart__buttons .button.checkout {
    background: #0071a1; /* primary color */
    color: #fff;
    font-weight: bold;
}

.woocommerce-mini-cart__buttons .button.wc-forward {
    background: #f5f5f5;
    color: #333;
    border: 1px solid #ddd;
}

/* Woocommerce Products Centralized in the HOme Page */

.woocommerce ul.products li.product {
    text-align: center; 
}
.woocommerce ul.products li.product a {
    color: black;
    font-size: 18px;
    font-weight: 400;
}

.woocommerce ul.products li.product a img {
    margin: 0 auto;            /* centers product image */
    display: block;
}


.woocommerce ul.products li.product .button {
    margin: 10px auto 0;       /* top margin + auto for centering */
    display: block;
}


/* Additional Cpmments */
textarea#order_comments {
    width: 400px;
    height: 200px;
}
/* Footer */
.section-block {
    background-color: #F7244D;
    color: white;
    border-radius: 15px;
    
}
ul.footer-menu li {
    margin-right: 24px;
    font-size: 22px;
    font-weight: 500;

}
ul.footer-menu li a {
    text-decoration: none;
    color: black;
    text-transform: uppercase;
}
/* Social Media Icons */
i.social-menu {
    color: black;
    margin-right: 20px;
    font-size: 25px;
}

