/* css/style.css */
@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@400;600;800&display=swap');

.waas-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    padding: 20px;
    background-color: #0070B2;
}

.waas-product {
    border: 2px solid #fff;
    border-radius: 15px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.waas-product:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.waas-product-image {
    position: relative;
    padding-top: 75%;
    overflow: hidden;
    background: transparent;
}

.waas-product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.waas-product-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: #fff;
    padding: 15px;
}

.waas-product h3 {
    margin: 0 0 10px 0;
    font-family: 'Lexend', sans-serif;
    font-size: 25px;
    font-weight: 800;
    color: #0070B2;
    line-height: 1.3;
}

.waas-product .model,
.waas-product .stock {
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #212529;
    margin: 5px 0;
}

.waas-product .price {
    font-family: 'Lexend', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #0070B2;
    margin: 10px 0 0 0;
}

@media (max-width: 768px) {
    .waas-products-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 15px;
        padding: 15px;
    }
}