/* Public CSS */
.vs-product-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.vs-product-item {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 15px;
    transition: all 0.3s ease;
}

.vs-product-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.vs-product-title {
    font-size: 1.2em;
    margin-top: 0;
    margin-bottom: 10px;
}

.vs-product-price {
    font-weight: bold;
    color: #0073aa;
    margin-bottom: 10px;
}

.vs-product-description {
    margin-bottom: 15px;
    color: #666;
}

.vs-branch-list {
    margin-bottom: 20px;
}

.vs-branch-item {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 15px;
    margin-bottom: 15px;
}

.vs-branch-title {
    font-size: 1.2em;
    margin-top: 0;
    margin-bottom: 10px;
}

.vs-branch-address {
    margin-bottom: 10px;
    color: #666;
}

.vs-branch-contact {
    margin-bottom: 15px;
}

.vs-branch-products {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.vs-branch-products-title {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.vs-branch-product-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}
