/* szkolenie-style.css */

/* szkolenie-style.css */

.product-card {
    border: 1px solid #ddd; /* Add border for each product card */
    padding: 10px;
    margin: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add a subtle box shadow for a card-like appearance */
}

.product-card img {
    max-width: 100%; /* Ensure images do not exceed the width of their container */
    height: auto; /* Maintain the aspect ratio of images */
    margin-bottom: 10px;
}

.product-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.product-card p {
    margin-bottom: 8px;
}

/* Optional: Add styles for the 'Add to Cart' button */
.product-card .button {
    background-color: #4CAF50;
    color: white;
    padding: 8px 16px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    cursor: pointer;
    border-radius: 4px;
}

/* Responsive grid layout */
@media (min-width: 768px) {
    .product-card {
        width: calc(23% - 10px); /* Adjust the width based on the number of columns you want */
        display: inline-block;
        vertical-align: top;
    }
}

/* Add more media queries for additional breakpoints if needed */




