
        /* General Reset */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            line-height: 1.6;
            background-color: #f9f9f9;
            color: #333;
        }

        /* Header */
        header {
            background-color: #b23ba3;
            color: white;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        header .logo img {
            width: 150px;
        }

        nav ul {
            list-style: none;
            display: flex;
            gap: 20px;
        }

        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        nav ul li a:hover {
            color: #ffd1ff;
        }

        /* Hero Section */
        .hero {
            background: url('hero.jpg') no-repeat center center/cover;
            text-align: center;
            padding: 100px 20px;
            color: white;
        }

        .hero h1 {
            font-size: 3em;
            margin-bottom: 20px;
        }

        .cta-button {
            background-color: #b23ba3;
            color: white;
            padding: 10px 20px;
            text-decoration: none;
            border-radius: 5px;
            transition: background-color 0.3s ease;
        }

        .cta-button:hover {
            background-color: #ff69b4;
        }

        /* Menu Section */
        .menu {
            text-align: center;
            padding: 50px 20px;
            background-color: white;
        }

        .menu h2 {
            font-size: 2.5em;
            margin-bottom: 20px;
        }

        .menu-items {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }

        .menu-item {
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            text-align: center;
            padding: 20px;
        }

        .menu-item img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 10px;
        }

        .menu-item h3 {
            font-size: 1.5em;
            margin: 15px 0;
        }

        .menu-item p {
            margin: 10px 0;
            font-size: 1em;
        }

        .quantity-controls {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-top: 10px;
        }

        .quantity-controls button {
            background-color: #b23ba3;
            color: white;
            border: none;
            padding: 5px 15px;
            font-size: 1em;
            border-radius: 5px;
            cursor: pointer;
        }

        .quantity-controls button:hover {
            background-color: #ff69b4;
        }

        .quantity-controls .quantity-value {
            font-size: 1.2em;
            font-weight: bold;
        }

        /* How to Order Section */
        .how-to-order {
            padding: 50px 20px;
            background-color: #f3e5f5;
            text-align: center;
        }

        .how-to-order h2 {
            font-size: 2.5em;
            margin-bottom: 20px;
        }

        .how-to-order ol {
            max-width: 600px;
            margin: 0 auto;
            text-align: left;
            color: #555;
            font-size: 1.1em;
        }

        .how-to-order ol li {
            margin-bottom: 10px;
        }

        /* Footer */
        footer {
            background-color: #b23ba3;
            color: white;
            text-align: center;
            padding: 15px 20px;
        }

        footer p {
            margin: 0;
        }
    
        /* General Reset */


/* Body Styling */
body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

/* Header Styling */


/* Main Content */


/* Section Title */
#cart-section h2 {
    font-size: 1.8em;
    margin-bottom: 20px;
    text-align: center;
    color: #ff6f61;
}

/* Cart Items */
#cart-items {
    margin-bottom: 20px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item p {
    margin: 5px 0;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-controls button {
    background-color: #ff6f61;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    font-size: 1.2em;
    transition: background-color 0.3s ease;
}

.quantity-controls button:hover {
    background-color: #e65b50;
}

.quantity-display {
    font-weight: bold;
    font-size: 1.1em;
}

/* Total Amount */
#cart-total-section {
    text-align: right;
    font-size: 1.2em;
    font-weight: bold;
    margin-top: 20px;
}

/* Order Form */
#order-form {
    margin-top: 30px;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

#order-form h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #ff6f61;
}

#order-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
}

#order-form input, #order-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1em;
}

#order-form input:focus, #order-form textarea:focus {
    border-color: #ff6f61;
    outline: none;
}

#cart-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

#cart-actions button {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#cart-actions #add-more {
    background-color: #ddd;
    color: #333;
}

#cart-actions #add-more:hover {
    background-color: #ccc;
}

#cart-actions #submit-order {
    background-color: #ff6f61;
    color: #fff;
}

#cart-actions #submit-order:hover {
    background-color: #e65b50;
}

/* Footer */

/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

/* Header */


/* Main Content */


.orders-container {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

table th, table td {
    border: 1px solid #ddd;
    padding: 12px 15px;
    text-align: center;
}

table th {
    background-color: #4CAF50;
    color: white;
    font-weight: bold;
}

table tbody tr:nth-child(even) {
    background-color: #f2f2f2;
}

table tbody tr:hover {
    background-color: #f1f9f1;
}

table td ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

table td ul li {
    text-align: left;
    padding: 5px 0;
}

/* Footer */


/* General Reset */
* 


/* Header */


/* Main Content */


form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

form label {
    font-size: 1.1em;
    color: #555;
}

form input[type="text"],
form textarea,
form input[type="file"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
    color: #333;
    transition: border-color 0.3s ease;
}

form input[type="text"]:focus,
form textarea:focus,
form input[type="file"]:focus {
    border-color: #4CAF50;
    outline: none;
}

form button {
    padding: 10px 20px;
    font-size: 1em;
    font-weight: bold;
    color: white;
    background-color: #4CAF50;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

form button:hover {
    background-color: #45a049;
}

/* Success and Error Messages */
.success {
    color: #155724;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 15px;
}

.error {
    color: #721c24;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 15px;
}

/* Footer */
