/* Reset and Basic Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #ffe9e9, #ffb6c1, #ff9a9e);
    color: #333;
    margin: 0;
    padding: 0;
    transition: background 0.5s ease-in-out;
}

/* Header Styling */
header {
    text-align: center;
    padding: 30px;
    background: linear-gradient(90deg, #ff758c, #ff9a9e);
    color: white;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
    border-bottom-left-radius: 50% 20px;
    border-bottom-right-radius: 50% 20px;
    margin-bottom: 20px;
    animation: fadeIn 1s ease-in-out;
}

header h1 {
    font-size: 2.5rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

/* Navigation Buttons */
nav button {
    padding: 12px 28px;
    margin: 5px;
    background: linear-gradient(135deg, #ff6b81, #ff92a5);
    color: white;
    border: none;
    border-radius: 25px;
    box-shadow: 3px 5px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}

nav button:hover {
    background: linear-gradient(135deg, #ff3b6b, #ff6b81);
    transform: translateY(-3px);
    box-shadow: 5px 8px 15px rgba(0, 0, 0, 0.2);
}

/* Search Bar Styling */
.search-bar {
    display: flex;
    align-items: center;
    margin: 20px 0;
    justify-content: center;
}

.search-bar input[type="text"] {
    padding: 12px;
    width: 250px;
    border: 2px solid #ff758c;
    border-radius: 20px 0 0 20px;
    font-size: 1rem;
    transition: all 0.3s ease-in-out;
    box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.1);
}

.search-bar input:focus {
    outline: none;
    border-color: #ff3b6b;
    box-shadow: 0px 0px 10px #ff3b6b;
}

.search-bar button {
    padding: 12px;
    background: linear-gradient(135deg, #ff6b81, #ff3b6b);
    color: white;
    border: none;
    border-radius: 0 20px 20px 0;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.search-bar button:hover {
    background: linear-gradient(135deg, #ff3b6b, #ff1e4e);
    transform: scale(1.1);
}

/* Product List */
#product-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.product-item {
    background-color: #fff;
    border-radius: 12px;
    width: 200px;
    text-align: center;
    padding: 20px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
}

.product-item:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}

.product-item img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 10px;
    transition: transform 0.3s;
}

.product-item:hover img {
    transform: scale(1.1);
}

.product-item p {
    font-size: 1rem;
    color: #555;
    margin-top: 5px;
}

.product-item p.price {
    font-weight: bold;
    color: #ff3b6b;
}

/* Order Button */
.order-now-btn {
    margin-top: 10px;
    padding: 12px 25px;
    background: linear-gradient(135deg, #ff3b6b, #ff758c);
    color: #fff;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.1);
    transition: background 0.3s, transform 0.3s;
}

.order-now-btn:hover {
    background: linear-gradient(135deg, #ff1e4e, #ff3b6b);
    transform: translateY(-3px);
}

/* Modal Styling */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.3);
    animation: popIn 0.5s ease-in-out;
}

@keyframes popIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.close {
    color: #999;
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease-in-out;
}

.close:hover {
    color: #ff3b6b;
}

/* Footer Styling */
footer {
    background: linear-gradient(90deg, #ff758c, #ff9a9e);
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    font-size: 0.9rem;
    border-top-left-radius: 50% 20px;
    border-top-right-radius: 50% 20px;
    animation: fadeIn 1s ease-in-out;
}

/* Fade In Animation */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive */
@media (max-width: 480px) {
    .modal-content {
        width: 95%;
    }

    nav button {
        font-size: 0.9rem;
        padding: 10px 20px;
    }

    .product-item {
        width: 160px;
    }
}
/* Reset and Basic Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #fbc2eb, #a6c1ee);
    color: #333;
    margin: 0;
    padding: 0;
    transition: background 0.5s ease-in-out;
}

/* Header Styling */
header {
    text-align: center;
    padding: 30px;
    background: linear-gradient(90deg, #ff758c, #ff7eb3);
    color: #fff;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    border-bottom-left-radius: 50% 20px;
    border-bottom-right-radius: 50% 20px;
    margin-bottom: 20px;
    animation: fadeIn 1s ease-in;
}

header h1 {
    font-size: 2.5rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Order Form Styling */
.modal-content {
    background: linear-gradient(135deg, #ff9a9e, #fad0c4);
    padding: 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.4s ease-out;
    position: relative;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

form input, form textarea {
    width: 100%;
    padding: 12px;
    margin-top: 8px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease-in-out;
}

form input:focus, form textarea:focus {
    border-color: #ff6f61;
    box-shadow: 0px 0px 10px rgba(255, 111, 97, 0.5);
}

form button {
    margin-top: 20px;
    padding: 12px;
    background: linear-gradient(135deg, #ff6f61, #ff9e9d);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

form button:hover {
    background: linear-gradient(135deg, #ff4b4b, #ff6f61);
    transform: translateY(-3px);
    box-shadow: 4px 6px 10px rgba(0, 0, 0, 0.2);
}

/* Animated Button Inside Form */
.animated-btn {
    padding: 12px 20px;
    background: linear-gradient(135deg, #ff758c, #ff7eb3);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.3s, background 0.3s;
    box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.1);
}

.animated-btn:hover {
    background: linear-gradient(135deg, #e60073, #ff4081);
    transform: scale(1.05);
    box-shadow: 4px 6px 12px rgba(0, 0, 0, 0.2);
}
