/*---Product display---*/
.products {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.product {
    background-color: white;
    border: 2px solid #488ed9;
    border-radius: 5px;
    margin: 10px;
    padding: 10px;
    text-align: center;
    /*Normal screen: 4 products per row*/
    flex: 1 1 22%;
    max-width: 22%;
    box-sizing: border-box;
}

/*Tablet screen: 2 products per row */
@media (max-width: 900px) {
    .product {
        flex: 1 1 45%;
        max-width: 45%;
    }
}

/*Mobile phone screen: 1 product per row */
@media (max-width: 600px) {
    .product {
        flex: 1 1 90%;
        max-width: 90%;
    }
}

.product-container {
    position: relative;
}

.product-container:hover .description {
    display: block;
}

.placeholder {
    width: 100%;
    height: auto;
    background-color: #ccc;
}

.description {
    display: none;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #488ed9;
    color: white;
    font-size: 20px;
    padding: 10px;
    border-radius: 5px;
}

/*---FAQ section---*/
.faq {
    margin-top: 20px;
}

details {
    margin: 10px 0;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

summary {
    background-color: #488ed9;
    color: white;
    font-weight: bold;
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
    list-style: none;
}

details > p {
    background-color: #f9f9f9;
    padding: 10px;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 5px 5px;
    margin: 0;
}