* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
}

.container {
    width: 92%;
    margin: 20px auto;
}

/* Planshet va katta ekran */
@media (min-width: 768px) {
    .container {
        max-width: 480px;
    }
}
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: linear-gradient(135deg, #f8cdda, #d1b3ff);
    margin: 0;
    padding: 0;
    color: #5a4a5a;
}

.container {
    max-width: 420px;
    background: rgba(255, 255, 255, 0.95);
    margin: 40px auto;
    padding: 25px;
    text-align: center;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(255, 126, 179, 0.25);
    backdrop-filter: blur(6px);
}

h1 {
    color: #ff7eb3;
    font-weight: 700;
    margin-bottom: 10px;
}

img {
    width: 100%;
    border-radius: 16px;
    margin: 18px 0;
    box-shadow: 0 10px 25px rgba(209, 179, 255, 0.35);
}

.desc {
    font-size: 15px;
    line-height: 1.6;
    color: #6b5a6b;
}

p {
    margin: 8px 0;
}

a {
    color: #b26bff;
    text-decoration: none;
    font-weight: 600;
}

a:hover {
    text-decoration: underline;
}

.btn {
    display: inline-block;
    margin-top: 18px;
    padding: 14px 24px;
    background: linear-gradient(135deg, #ff7eb3, #b26bff);
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 25px rgba(178, 107, 255, 0.4);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(255, 126, 179, 0.5);
}

footer {
    margin-top: 25px;
    font-size: 13px;
    color: #9a8aa0;
}

#sakura {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.petal {
    position: absolute;
    top: -40px;
    width: 18px;
    height: 18px;
    background: radial-gradient(circle at 30% 30%, #fff, #ffb7d5);
    border-radius: 50% 50% 50% 0;
    transform: rotate(45deg);
    animation: fall linear infinite;
    opacity: 0.85;
}

@keyframes fall {
    to {
        transform: translateY(110vh) rotate(360deg);
    }
}




.card {
    background: #fff;
    border-radius: 20px;
    padding: 16px;
    margin-top: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 2;
}

.card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 126, 179, 0.35);
}

.card h2 {
    color: var(--accent);
    font-size: 18px;
}

.price {
    display: block;
    margin-top: 8px;
    font-weight: 700;
}

img {
    width: 100%;
    max-width: 360px;
    height: auto;
    display: block;
    margin: 16px auto;
    object-fit: contain;
}

.container {
    width: 94%;
    max-width: 420px;
    margin: 20px auto;
    padding: 18px;
}

h1 {
    font-size: clamp(20px, 6vw, 26px);
}

.desc {
    font-size: clamp(14px, 4vw, 16px);
}

.btn {
    font-size: clamp(15px, 4.5vw, 17px);
    padding: 14px;
}

input,
button {
    min-height: 48px;
    border-radius: 12px;
}

@media (min-width:768px) {
    .container {
        max-width: 480px;
    }

    img {
        max-width: 400px;
    }
}