.before-product-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 0;
}

#products-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-left: 10vw;
    margin-right: 10vw;
    margin-top: 20px;
    margin-bottom: 20px;
    gap: 20px;
}
@media (max-width: 768px) {
    #products-section {
        margin-left: 5vw;
        margin-right: 5vw;
    }
}
/* 
#products-section > div {
    width: 200px;
} */

.product-box {
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
    width: 25%;
    border: solid 0.5px #BEBEBE;
    padding: 10px;
}
@media (max-width: 768px) {
    .product-box {
        width: 47%;
    }
}

.product-thumbnail {
    width: 100%;
    max-height: 160px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.product-thumbnail > a > img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
}

.product-title {
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
}
@media (max-width: 768px) {
    .product-title {
        margin-top: 0px;
        margin-bottom: 5px;
    }   
}

.product-title-text {
    color: #302C27;
    font-family: "Gentium Book Plus", Sans-serif;
    font-size: 22px;
    font-weight: 300;
    line-height: 1.285em;
    letter-spacing: 1.4px;
    margin: 0px;
}
@media (max-width: 768px) {
    .product-title-text {
        font-size: 12px;
    }
}

.product-rating {
    width: 100%;
}
.star-rating {
    float: none !important;
}

.product-price {
    width: 100%;
    margin-bottom: 5px;
}
@media (max-width: 768px) {
    .product-price {
        margin-bottom: 0px;
    }   
}

.product-price del {
    color: red;
}
.product-price ins {
    color: #008000;
    border: none;
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
}

.product-cart-button {
    width: 100%;
}

.product-cart-button .add_to_cart_button {
    color: white !important;
    background-color: #008000 !important;
}
@media (max-width: 768px) {
    .product-cart-button .add_to_cart_button {
        font-size: 10px !important;
    }   
}

.product-brand-hero-section {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
    padding: 80px 0;
}
.product-brand-hero-section h2 {
    color: #E7C57A;
    font-size: 45px;
    font-family: "Gentium Book Plus", sans-serif;
    font-weight: 600;
    text-align: center;
}
.product-brand-hero-section p {
    color: white;
    font-size: 16px;
}
.product-brand-hero-section div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.woocommerce-breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px 0 !important;
}
.woocommerce-breadcrumb a {
    color: #f7992b !important;
}

.product-brand-product-heading-text {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px 0 20px;
}
.product-brand-product-heading-text h3 {
    font-size: 35px;
}

.brand-details-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 50px 10vw 20px !important;
}

.single-product-main {
    margin-left: 5vw;
    margin-right: 5vw;
}

.summary h1 {
    font-family: "Gentium Book Plus", sans-serif;
    font-size: 40px;
    margin: 0;
}

.summary del {
    color: red;
}
.summary ins {
    color: #008000;
    border: none;
    font-style: normal;
    font-weight: bold;
    font-size: 24px;
}
.summary .price {
    margin: 0;
}

.summary form {
    margin-bottom: 10px !important;
}
.summary .single_add_to_cart_button {
    text-transform: none;
    background-color: #008000 !important;
}

#cat-filter-button {
    display: block;
    margin: 0 auto 50px;
    background: none;
    color: inherit;
    border: none;
    padding: 0;
    font: inherit;
    cursor: pointer;
    outline: inherit;
    text-transform: capitalize;
}
#cat-filter-button:hover {
    color: #f7992b;
}

.category-filter-drawer {
    position: fixed;
    top: 0;
    padding: 40px 15px;
    right: -250px; /* Start off-screen */
    width: 250px;
    height: 100%;
    background-color: #fff;
    box-shadow: -2px 0 5px rgba(0,0,0,0.5);
    transition: right 0.3s ease;
    z-index: 1000;
}

.category-filter-drawer.open {
    right: 0; /* Slide in */
}

#closeDrawer {
    background: none;
    color: black;
    border: none;
    font-size: 48px; /* Adjust size as needed */
    cursor: pointer;
    padding: 0;
}

.category-filter-drawer h4 {
    font-weight: bold;
    color: #f7992b;
}

.category-filter-drawer .woocommerce-ordering {
    float: none;
}

.category-filter-list ul {
    list-style-type: none; /* Remove bullet points */
    padding-left: 0; /* Remove padding */
    margin-left: 0;
}

.category-filter-list li button {
    background: none;
    color: inherit;
    border: none;
    padding: 0;
    font: inherit;
    cursor: pointer;
    outline: inherit;
}
.category-filter-list li button:not(:disabled):hover {
    color: #008000;
}

.category-filter-list li button.current-category {
    color: green;
    cursor: default;
    font-weight: bold;
}