#filters-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 20px auto;
}

@media (max-width: 992px) {
    #filters-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    #filters-grid {
        grid-template-columns: 1fr;
    }
}

.filter-box {
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: .3s;
}

.filter-box:hover {
    transform: translateY(-5px);
}

.filter-box img {
    width: 100%;
    height: 250;
    object-fit: contain;
    border-radius: 8px;
}

.filter-box h3 {
    font-size: 20px;
    margin-top: 10px;
    line-height: 1.6;
}

h1, h2 {
    text-align: center;
    margin: 15px 0 25px;
}
.share-whatsapp {
    display: block;
    background: #25D366;
    color: #fff;
    padding: 12px;
    text-align: center;
    margin-top: 15px;
    border-radius: 8px;
    font-size: 18px;
    font-family: 'El Messiri';
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,.15);
    transition: .2s;
}
.share-whatsapp:hover {
    background: #1eb84d;
    transform: translateY(-2px);
}
.box2 {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #ddd;
    margin: auto;
    width: 90%;
    height: 100%;
    text-align: center;
    font-size: 16px;
    font-weight: 100;
}