/* --- Umumiy tanlash --- */
body {
    font-family: 'Inter', sans-serif;
    background-color: #f4f7f9;
    color: #333;
}

/* Navbar */
header a {
    transition: color 0.3s;
}
header a:hover {
    color: #ffe066;
}

/* Buttons */
button, .btn {
    transition: all 0.3s ease;
}
button:hover, .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Cards */
.card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Product images */
.card img {
    border-radius: 12px;
}

/* Input fields */
input[type="text"], input[type="number"] {
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    outline: none;
    transition: all 0.3s;
}
input[type="text"]:focus, input[type="number"]:focus {
    border-color: #22c55e;
    box-shadow: 0 0 5px #22c55e33;
}

/* Modal */
.modal {
    transition: opacity 0.3s;
}

/* Footer */
footer p {
    font-size: 0.9rem;
}

/* Gradient buttons */
.btn-green {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
}
.btn-green:hover {
    background: linear-gradient(135deg, #16a34a, #15803d);
}
