.product-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.product-code {
    color: #666;
    margin-bottom: 1.5rem;
}

.product-prices table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

.product-prices th, .product-prices td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.product-prices th {
    background-color: #f2f2f2;
}

.branches-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.branch-card {
background-color: #f1f1ff;
border: 0;
border-radius: 25px;
padding: 20px;
}

@media (max-width: 768px) {
    .branches-list {
        grid-template-columns: 1fr;
    }
}