.vitrine-section {
    max-width: 768px;
    margin: 0 auto;
}


.photos-container {
    display: flex;
    justify-content: center;
    position: relative;
    width: 100%;
    padding: 2rem 0;
    margin: 0 -20px; /* Permet aux images de déborder légèrement */
}

.polaroid {
    background: white;
    padding: 1rem 1rem 2rem 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    width: calc(25% + 20px); /* Taille de base + chevauchement */
    margin: 0 -20px; /* Crée le chevauchement */
    transition: transform 0.3s ease;
}

.polaroid:nth-child(1) { transform: rotate(-5deg); z-index: 1; }
.polaroid:nth-child(2) { transform: rotate(3deg); z-index: 2; }
.polaroid:nth-child(3) { transform: rotate(-2deg); z-index: 3; }
.polaroid:nth-child(4) { transform: rotate(4deg); z-index: 4; }

.polaroid img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
}

/* Responsive */
@media (max-width: 768px) {
    .polaroid {
        width: calc(35% + 20px);
        margin: 0 -30px;
    }
}

@media (max-width: 480px) {
    .polaroid {
        width: calc(45% + 20px);
        margin: 0 -35px;
    }
}

.countdown-box {
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    text-align: center;
    min-width: 100px;
}

.countdown-box .number {
    font-size: 1.5rem;
    font-weight: bold;
    display: block;
}

.countdown-box .label {
    font-size: 0.875rem;
    opacity: 0.8;
}
