.photomaton-layout {
    display: flex;
    gap: 50px;
    align-items: stretch;
}

/* Chaque bloc prend la même largeur */
.photomaton-form,
.photomaton-strip-container {
    flex: 1;
}

/* Formulaire */
.photomaton-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: #111;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Bande photomaton */
.photomaton-strip-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #111;
    border-radius: 20px;
    padding: 20px;
}

/* Style bande */
.photo-strip {
    background: white;
    padding: 12px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.photo-strip img {
    width: 100%;
    height: 110px;
    object-fit: cover;
    border-radius: 4px;
    background: #ddd; /* placeholder quand vide */
}

/* Bouton en bas */
.photomaton-submit {
    margin-top: 25px;
    text-align: center;
}

.photomaton-submit button {
    padding: 12px 30px;
    background: #ff5c5c;
    border: none;
    border-radius: 6px;
    color: white;
    font-weight: bold;
    cursor: pointer;
}

.photomaton-block {
    max-width: 1100px;
    margin: 0 auto 80px;
}

.photomaton-form input[type="text"] {
    padding: 12px;
    border-radius: 8px;
    border: none;
    outline: none;
    background: #222;
    color: white;
}

.upload-area {
    display: block;
    width: 100%;
    height: 180px;
    background: #222;
    border: 2px dashed #555;
    border-radius: 12px;
    color: #aaa;
    text-align: center;
    line-height: 180px;
    cursor: pointer;
    transition: 0.3s;
}

.upload-area:hover {
    background: #333;
}

.upload-area input {
    display: none;
}
.photomaton-submit button {
    padding: 14px 35px;
    background: #ff5c5c;
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.photomaton-submit button:hover {
    background: #ff7a7a;
    box-shadow: 0 0 10px #ff5c5c;
}

.photo-strip img {
    width: 140px;
    height: 90px;
    object-fit: cover;
    border-radius: 6px;

    background: #1a1a1a; /* 👈 fond sombre */
    border: 1px solid #2a2a2a;

    display: block;
}

.photo-strip img.placeholder-slot {
    background: linear-gradient(
        135deg,
        #1a1a1a 25%,
        #222 25%,
        #222 50%,
        #1a1a1a 50%,
        #1a1a1a 75%,
        #222 75%,
        #222
    );
    background-size: 10px 10px;

    opacity: 0.8;
}

.photomaton-legal {
    margin-top: 15px;
    padding: 10px 12px;
    font-size: 0.85rem;
    color: #333;
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 8px;
    line-height: 1.4;
}

.photomaton-legal label {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    cursor: pointer;
}

.photomaton-legal input[type="checkbox"] {
    margin-top: 3px;
    accent-color: #111;
}

.photomaton-note {
    margin-top: 15px;
    padding: 10px 12px;
    font-size: 0.85rem;
    color: #111;              /* texte noir comme ton site */
    background: #f5f5f5;     /* léger fond gris pour contraste */
    border: 1px solid #ddd;  /* contour visible mais doux */
    border-radius: 8px;
    line-height: 1.4;
    text-align: center;
}

/* 📱 MOBILE */
@media (max-width: 768px) {
    .photomaton-layout {
        flex-direction: column;
    }
}