
.csp-shop {
    display: flex;
    gap: 30px;
    flex-direction: row !important;
}
.csp-sidebar {
    width: 260px;
}

.filter-button{
    padding: 10px;
}

.csp-sidebar-mobile{
    padding-top: 60px;
}
 @media (min-width: 1024px) {
.csp-sidebar {
    display: block !important;
    
}

.csp-products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

}
div#drawer-navigation {
    padding-top: 128px !important;
}
 
}

 @media (max-width: 1024px) {
.csp-shop {
     display: flex;
    flex-direction: column !important;
}
 }

 @media (min-width: 767px) and (max-width: 1024px) {
.csp-products {
    display: grid;
    grid-template-columns: repeat(2, 1fr) !important;

}
 }
 @media (min-width: 480px) and (max-width: 767px) {
.csp-products {
    display: grid;
    grid-template-columns: repeat(2, 1fr) !important;

}
}
 @media (max-width: 480px){
.csp-products {
    display: grid;
    grid-template-columns: repeat(2, 1fr) !important;

}
}
.csp-filters {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.csp-color-filter label {
    font-weight: bold;
    margin-bottom: 8px;
    display: block;
}
.csp-color-circles {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.csp-color-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-block;
    border: 2px solid #ccc;
    cursor: pointer;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    transition: border 0.2s;
}
.csp-color-circle.selected {
    border: 2px solid #333;
}
.csp-color-circle.deselect {
    border: 2px dashed #ccc;
    background: #fff !important;
    position: relative;
}
.csp-color-circle.deselect span {
    position: absolute;
    left: 8px;
    top: 8px;
    font-size: 14px;
    color: #888;
}
.csp-reset-filters {
    margin-top: 24px;
    padding: 8px 18px;
    background: #f5f5f5;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.2s;
}
.csp-reset-filters:hover {
    background: #eaeaea;
}
.csp-product-colors {
    margin-top: 12px;
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}
.csp-product-color-circle {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-block;
    border: 2px solid #ccc;
    cursor: pointer;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    transition: border 0.2s;
}
.csp-product-color-circle:hover {
    border: 2px solid #333;
}
.csp-product-color-more {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    border: 2px solid #ccc;
}
.csp-accordion {
    margin-top: 12px;
}
.csp-accordion-item {
    margin-bottom: 10px;
    border: 1px solid #eee;
    border-radius: 4px;
    overflow: hidden;
}
.csp-accordion-toggle {
    width: 100%;
    background: #f7f7f7;
    border: none;
    padding: 10px 14px;
    text-align: left;
    font-weight: bold;
    cursor: pointer;
    outline: none;
    border-bottom: 1px solid #eee;
}
.csp-accordion-content {
    padding: 10px 14px;
    display: none;
}
.csp-accordion-item.active .csp-accordion-content {
    display: block;
}
.csp-products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.csp-product {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
    height: fit-content;
}

.csp-product h3 a {
    color: black;
    font-size: 1rem !important;
}
.csp-product h3 {
    line-height: 0.5em;
    margin-top: 1rem;
}
.csp-product img {
    max-width: 100%;
    height: auto;
}

/* 🔹 Hide Add to Cart buttons everywhere */
.woocommerce .add_to_cart_button,
.woocommerce .single_add_to_cart_button,
.woocommerce a.button.product_type_simple,
.woocommerce a.button.product_type_variable,
.woocommerce a.button.product_type_grouped,
.woocommerce a.button.product_type_external {
    display: none !important;
}

/* 🔹 Hide stock status text (e.g. "In stock", "Out of stock") */
.woocommerce .stock {
    display: none !important;
}

/* 🔹 Hide quantity input field on single product pages */
.woocommerce .quantity {
    display: none !important;
}
