
* {
    box-sizing: border-box;
}
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Syne', sans-serif;
}
header {
    background: #ffffff;
    border-bottom: 2px solid #148f2d;
    padding: 0 1rem;
    height: 70px;          
    display: flex;
    align-items: center;
}
.logo {
    height: 60px;          
    width: auto;
}
.page-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-top: 30px;
    padding: 0 1rem 60px;
}
#map-container {
    width: 100%;
    max-width: 600px;
    height: 40vh;
    min-height: 220px;     
    max-height: 350px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
    border-radius: 12px;
    overflow: hidden;
}
#map {
    width: 100%;
    height: 100%;
}
.description {
    font-family: Bahnschrift;
    font-size: clamp(0.85rem, 2vw, 1rem);   
    line-height: 1.7;
    width: 100%;
    max-width: 760px;
    text-align: center;
    color: #333;
    padding: 0 0.5rem;
}
.images-sous-carte {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;      
}
.img-produit {
    width: clamp(80px, 15vw, 150px);  
    height: auto;
    object-fit: contain;
    animation: balancer 2.5s ease-in-out infinite;
}
.img-vache {
    width: clamp(80px, 15vw, 150px); 
    height: auto;
    object-fit: contain;
    animation: balancer 2s ease-in-out infinite;
    animation-delay: 0.4s;
}
button {
    width: 100%;
    max-width: 300px;
    padding: 12px;
    background: #148f2d;
    color: white;
    font-family: Bahnschrift;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    border-radius: 12px;
}
button:hover {
    background: #7fff00;
    color: #000000;
}
@keyframes balancer {
    0%, 100% { transform: rotate(-5deg); }
    50%       { transform: rotate(5deg); }
}
.lien-creb {
    font-family: Bahnschrift;
    font-size: 0.95rem;
    color: #148f2d;
    text-decoration: none;
}
.lien-creb:hover {
    color: #7fff00;
}
@media (max-width: 768px) {
    .images-sous-carte { gap: 16px; }
    #map-container { height: 280px; }
    button { width: 90%; }
}
@media (max-width: 480px) {
    header { height: 56px; }
    .logo { height: 44px; }
    .page-wrapper { margin-top: 20px; gap: 18px; }
    #map-container { height: 220px; }
    button { width: 95%; }
}
@media (max-width: 360px) {
    .description { font-size: 0.82rem; }
    .img-produit, .img-vache { width: 70px; }
}