* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: #a2d6f9;
    min-height: 100vh;
    background-image: url("grass4.png");
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    background-attachment: fixed;
}


header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
}

.logo {
    height: 7dvh;
    margin-bottom: 35px;
}

.filters {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.filters button {
    background: white;
    border: none;
    padding: 12px 24px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 16px;
    color: #555;
    transition: 0.3s;
}

.filters button:hover {
    background-color: #2d8cea;
    color: white;
    scale: 1.1;
    transition: 0.3s;
}

#tutti {
    background-color: #2d8cea;
    color: white;
}

.prodotti {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 35px;
    padding: 30px;
}

.card {
    background: #2d8cea;
    border-radius: 25px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: 0.3s;
    cursor: pointer;
    max-width: 270px;
    max-height: 600px;
}

.card:hover {
    transform: translateY(-8px);
}

.card img {
    width: 220px;
}

.card h3 {
    margin-top: 15px;
    font-size: 28px;
    color: white;
}

.tags {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.tagSecco,
.tagUmido,
.tagPremium,
.tagHolistic,
.tagPuppy,
.tagMini,
.tagPro,
.tagHunter,
.tagxCani,
.tagxGatti {
    padding: 5px;
    border-radius: 5px;
    width: 75px;
    color: white;
    font-size: 15px;
    margin: 5px;
}

.tagSecco {
    background-color: rgb(54, 44, 0);
}

.tagPremium {
    background-color: rgb(233, 193, 15);
}

.tagUmido {
    background-color: rgb(216, 131, 219);
}

.tagHolistic {
    background-color: rgb(209, 104, 6);
}

.tagPuppy {
    background-color: rgb(83, 184, 231);
}

.tagMini {
    background-color: rgb(125, 228, 147);
}

.tagPro {
    background-color: rgb(85, 82, 82);
}

.tagHunter {
    background-color: rgb(28, 66, 18);
}

.tagxGatti {
    background-color: rgb(255, 18, 255);
}

.tagxCani {
    background-color: rgb(25, 60, 214);
}

.footer {
    background: #111;
    color: white;
    padding: 60px 30px 20px;
}

.footer-container {
    max-width: 1900px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1;
    width: 200px;
}

.footer h2,
.footer h3 {
    margin-bottom: 20px;
}

.footer p {
    color: #bbb;
    line-height: 1.8;
}

.footer a {
    color: #bbb;
    text-decoration: none;
    transition: .3s;
}

.footer a:hover {
    color: white;
}

.social-icons {
    margin-top: 20px;
    display: flex;
    gap: 20px;
}

.mappa {
    border-radius: 15px;
    height: 25dvh;
    width: 20dvw;
}

.footer-bottom {
    margin-top: 50px;
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #888;
}

.footer-bottom:hover {
    color: white;
}



@media (max-width:900px) {
    .footer-container {
        flex-direction: column;
    }

    .mappa,
    .titoloMappa {
        display: none;
    }

}