* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'Segoe UI', sans-serif;
    background: #fff5f9;
    color: #5d3a3a;
    line-height: 1.6;
}
.hero {
    background: linear-gradient(135deg, #f8bbd0, #f48fb1);
    color: white;
    text-align: center;
    padding: 60px 20px;
}
.hero h1 { font-size: 3em; }
.hero p { font-size: 1.4em; }

h2 { text-align: center; margin: 40px 0 20px; font-size: 2em; }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 10px;
    max-width: 600px;
    margin: 20px auto;
    padding: 0 15px;
}
.gallery-item img {
    width: 100%;
    border-radius: 12px;
    background: #fce4ec;
    aspect-ratio: 1/1;
    object-fit: cover;
}
.hint { text-align: center; color: #888; }

.order-form, .contacts {
    max-width: 500px;
    margin: 0 auto 40px;
    padding: 0 20px;
}
.order-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.order-form input, .order-form textarea {
    padding: 12px;
    border: 1px solid #f8bbd0;
    border-radius: 8px;
    font-size: 1em;
    outline: none;
}
.order-form button {
    background: #e91e63;
    color: white;
    border: none;
    padding: 14px;
    font-size: 1.1em;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
}
.order-form button:hover { background: #c2185b; }

.file-label {
    font-size: 0.9em;
    color: #5d3a3a;
    margin-top: -10px;
}

.message {
    background: #d4edda;
    color: #155724;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}
.btn-wa, .btn-tg {
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    color: white;
    font-size: 1.1em;
}
.btn-wa { background: #25D366; }
.btn-tg { background: #0088cc; }

footer {
    text-align: center;
    padding: 20px;
    background: #f8bbd0;
    color: white;
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2.2em; }
}