#cas-shop-container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

/* Filters Panel */
#cas-filter-form {
    width: 280px;
    background: #fff;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    max-height:fit-content;
}

#cas-filter-form h3 {
    font-size: 16px;
    margin-bottom: 10px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
}

#cas-filter-form ul {
    list-style: none;
    padding: 0;
    margin: 0 0 15px;
}

#cas-filter-form li {
    margin-bottom: 8px;
}

#cas-filter-form input[type="number"],
#cas-filter-form select {
    width: 100%;
    padding: 8px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

#cas-filter-form button {
    background-color: #871F1F;
    color: black;
    padding: 10px;
    width: 100%;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    color:white;
}

#cas-filter-form button:hover {
    background-color: #871F1F;
    color:white;
}

/* Products Grid */
#cas-products-container {
    flex: 1;
    min-width: 300px;
}

.cas-products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 25px;
}

.cas-product {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #fff;
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 1px 5px rgba(0,0,0,0.05);
}

.cas-product:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.cas-product img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 10px;
    object-fit: cover;
}

.cas-product h4 {
    font-size: 16px;
    margin-bottom: 8px;
}
.cas-product h4 a{
    color:black;
}
.cas-product h4 a:hover{
    color:black;
}

.cas-product span {
    font-size: 14px;
    color: #0073aa;
    font-weight: bold;
    color:#871F1F;
}
.shop-new-page  input[type=text], 
.shop-new-page  input[type=text]:focus,
.shop-new-page input[type=number], 
.shop-new-page input[type=number]:focus, 
.shop-new-page input[type=search], 
.shop-new-page input[type=tel], 
.shop-new-page select, 
.shop-new-page select:focus{
    color:black;
}
.shop-new-page input[type=text]{
    border:solid 1px #ccc;
    border-radius:8px;
}
.cas-product{
    list-style-type:none;
}
.cas-cart-button{
    border:solid 1px #871F1F;
    padding:5px 20px;
    background:#871F1F;
    border-radius:20px;
    width:max-content;
    text-align:center;
    margin-right:auto;
    margin-left:auto;
    margin-top:20px;
}
.cas-cart-button a{
    color:white;
}
.cas-cart-button a:hover{
    color:white;
}
/* Responsive */
@media (max-width: 768px) {
    #cas-shop-container {
        flex-direction: column;
    }

    #cas-filter-form {
        width: 100%;
    }
    .cas-products{
        padding-left:0px;
    }
}
