/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo h2 {
    color: #ff6b35;
    font-weight: 700;
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #ff6b35;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding: 120px 20px 80px;
    background: linear-gradient(135deg, #fff5f2 0%, #ffe8e1 100%);
}

.hero-content {
    flex: 1;
    max-width: 600px;
    margin-right: 2rem;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #ff6b35;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Standardized Button Styles */
.btn {
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
    text-align: center;
    min-height: 48px;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.btn-primary {
    background: #ff6b35;
    color: white;
    border: 2px solid #ff6b35;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    background: #e55a2b;
    border-color: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    color: white;
}

.btn-secondary {
    background: white;
    color: #ff6b35;
    border: 2px solid #ff6b35;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background: #ff6b35;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

/* Specific button overrides */
.add-to-cart-btn {
    background: #ff6b35;
    color: white;
    border: 2px solid #ff6b35;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    min-height: 36px;
    font-family: 'Poppins', sans-serif;
}

.add-to-cart-btn:hover {
    background: #e55a2b;
    border-color: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.quantity-btn {
    background: #ff6b35;
    color: white;
    border: 2px solid #ff6b35;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.quantity-btn:hover {
    background: #e55a2b;
    border-color: #e55a2b;
    transform: scale(1.1);
}

.quantity-btn:disabled {
    background: #ccc;
    border-color: #ccc;
    cursor: not-allowed;
    transform: none;
}

.checkout-btn {
    width: 100%;
    background: #ff6b35;
    color: white;
    border: 2px solid #ff6b35;
    padding: 16px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1rem;
    min-height: 52px;
    font-family: 'Poppins', sans-serif;
}

.checkout-btn:hover {
    background: #e55a2b;
    border-color: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.remove-item {
    background: #dc3545;
    color: white;
    border: 2px solid #dc3545;
    padding: 6px 12px;
    border-radius: 15px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-family: 'Poppins', sans-serif;
}

.remove-item:hover {
    background: #c82333;
    border-color: #c82333;
    transform: translateY(-1px);
}

.close-cart,
.close-modal,
.close-notification {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid transparent;
    color: white;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    font-family: 'Poppins', sans-serif;
}

.close-cart:hover,
.close-modal:hover,
.close-notification:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Menu Section */
.menu-section {
    padding: 80px 0;
    background: #fff;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 3rem;
}

.menu-category {
    margin-bottom: 4rem;
}

.category-title {
    font-size: 2rem;
    font-weight: 600;
    color: #ff6b35;
    margin-bottom: 2rem;
    text-align: center;
}

.category-description {
    text-align: center;
    color: #666;
    font-style: italic;
    margin-bottom: 2rem;
    font-size: 1rem;
    margin-top: -1rem;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.item-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.item-info p {
    color: #666;
    font-size: 0.9rem;
}

.item-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ff6b35;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff5f2 0%, #ffe8e1 100%);
}

.about-content {
    text-align: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem;
}

.about-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.feature i {
    font-size: 2.5rem;
    color: #ff6b35;
    margin-bottom: 1rem;
}

.feature h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.feature p {
    color: #666;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: #fff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #fff5f2;
    border-radius: 15px;
}

.contact-item i {
    font-size: 1.5rem;
    color: #ff6b35;
    width: 40px;
}

.contact-item h4 {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #666;
}

.order-section {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    border-radius: 20px;
    color: white;
}

.order-section h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.order-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.order-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.order-buttons .btn {
    background: white;
    color: #ff6b35;
}

.order-buttons .btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

/* Feedback Section */
.feedback-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.feedback-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.feedback-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.feedback-form-container {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feedback-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.feedback-form .form-group {
    margin-bottom: 1.5rem;
}

.feedback-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
}

.feedback-form input,
.feedback-form select,
.feedback-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

.feedback-form input:focus,
.feedback-form select:focus,
.feedback-form textarea:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.feedback-form textarea {
    resize: vertical;
    min-height: 100px;
}

/* Star Rating */
.rating-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.star-rating {
    display: flex;
    gap: 0.25rem;
}

.star {
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    opacity: 0.3;
}

.star:hover,
.star.active {
    opacity: 1;
    transform: scale(1.1);
}

.rating-text {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

/* Form Actions */
.feedback-form .form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
    flex-wrap: wrap;
}

.feedback-form .form-actions .btn {
    min-width: 140px;
}

/* Feedback Info Cards */
.feedback-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feedback-card {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.feedback-card:hover {
    transform: translateY(-5px);
}

.feedback-card i {
    font-size: 2rem;
    color: #ff6b35;
    margin-bottom: 1rem;
}

.feedback-card h4 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.feedback-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .feedback-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .feedback-info {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .feedback-card {
        flex: 1;
        min-width: 250px;
    }
}

@media (max-width: 768px) {
    .feedback-section {
        padding: 60px 0;
    }
    
    .feedback-form-container {
        padding: 2rem;
    }
    
    .feedback-form .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feedback-form .form-actions {
        flex-direction: column;
    }
    
    .feedback-info {
        flex-direction: column;
    }
    
    .star {
        font-size: 1.3rem;
    }
    
    .rating-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .feedback-form-container {
        padding: 1.5rem;
    }
    
    .feedback-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .star {
        font-size: 1.2rem;
    }
}

/* Cart Sidebar - Ensure proper positioning and styling */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 1002;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
}

.cart-header h3 {
    margin: 0;
    color: #333;
    font-size: 1.2rem;
}

.close-cart {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #999;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-cart:hover {
    background: #e9ecef;
    color: #333;
}

.cart-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

.empty-cart {
    text-align: center;
    padding: 2rem 1rem;
    color: #999;
}

.empty-cart i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ddd;
}

.empty-cart p {
    margin: 0.5rem 0;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.cart-item:last-child {
    border-bottom: none;
}

.item-details h4 {
    margin: 0 0 0.25rem 0;
    font-size: 0.9rem;
    color: #333;
}

.item-details p {
    margin: 0;
    font-size: 0.8rem;
    color: #666;
}

.item-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-btn {
    background: #ff6b35;
    color: white;
    border: 2px solid #ff6b35;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.quantity-btn:hover {
    background: #e55a2b;
    border-color: #e55a2b;
    transform: scale(1.1);
}

.quantity-btn:disabled {
    background: #ccc;
    border-color: #ccc;
    cursor: not-allowed;
    transform: none;
}

.remove-btn {
    background: #dc3545;
    color: white;
    border: none;
    padding: 0.25rem 0.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.remove-btn:hover {
    background: #c82333;
}

.cart-summary {
    padding: 1rem;
    border-top: 1px solid #eee;
    background: #f8f9fa;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.summary-row:last-child {
    margin-bottom: 0;
}

.summary-row.total {
    font-weight: 600;
    font-size: 1.1rem;
    color: #ff6b35;
    border-top: 1px solid #ddd;
    padding-top: 0.5rem;
    margin-top: 0.5rem;
}

.checkout-btn {
    width: 100%;
    background: #ff6b35;
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.checkout-btn:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Cart Sidebar */
@media (max-width: 768px) {
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
    
    .cart-sidebar.active {
        right: 0;
    }
}

/* Modal Styles - Ensure proper positioning */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1010;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
    border-radius: 20px 20px 0 0;
}

.modal-header h3 {
    margin: 0;
    color: #333;
    font-size: 1.3rem;
}

.close-modal {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #999;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-modal:hover {
    background: #e9ecef;
    color: #333;
}

.modal-body {
    padding: 1.5rem;
}

.order-details h4 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.modal-order-items {
    margin-bottom: 1.5rem;
}

.modal-order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.modal-order-item:last-child {
    border-bottom: none;
}

.order-summary {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.summary-row:last-child {
    margin-bottom: 0;
}

.summary-row.total {
    font-weight: 600;
    font-size: 1.1rem;
    color: #ff6b35;
    border-top: 1px solid #ddd;
    padding-top: 0.5rem;
    margin-top: 0.5rem;
}

.whatsapp-instructions {
    background: #e8f5e8;
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid #28a745;
}

.instruction-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.instruction-item i {
    color: #25d366;
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.instruction-item h5 {
    margin: 0 0 0.5rem 0;
    color: #333;
}

.instruction-item p {
    margin: 0;
    color: #666;
    line-height: 1.5;
}

.modal-footer {
    padding: 1.5rem;
    border-top: 1px solid #eee;
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    background: #f8f9fa;
    border-radius: 0 0 20px 20px;
}

.modal-footer .btn {
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.modal-footer .btn-secondary {
    background: #6c757d;
    color: white;
}

.modal-footer .btn-secondary:hover {
    background: #5a6268;
}

.modal-footer .btn-primary {
    background: #ff6b35;
    color: white;
}

.modal-footer .btn-primary:hover {
    background: #e55a2b;
}

/* Mobile Modal Styles */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 1rem;
        max-height: 85vh;
    }
    
    .modal-header,
    .modal-body,
    .modal-footer {
        padding: 1rem;
    }
    
    .modal-footer {
        flex-direction: column;
    }
    
    .modal-footer .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Collapsible Menu Sections */
.collapsible-section {
    border: 2px solid #f0f0f0;
    border-radius: 15px;
    margin-bottom: 2rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.collapsible-section:hover {
    border-color: #ff6b35;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.1);
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-header:hover {
    background: linear-gradient(135deg, #e55a2b 0%, #e8851a 100%);
    color: white;
}

.category-header .category-title {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
}

.toggle-icon {
    background: rgba(255, 255, 255, 0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.toggle-icon i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.collapsible-section.expanded .toggle-icon i {
    transform: rotate(180deg);
}

.collapsible-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.3s ease;
    padding: 0 1.5rem;
}

.collapsible-section.expanded .collapsible-content {
    max-height: 2000px;
    padding: 1.5rem;
}

.collapsible-section .category-description {
    padding: 0 1.5rem 1rem 1.5rem;
    margin: 0;
    color: #666;
    font-style: italic;
    background: #f8f9fa;
    display: none;
}

.collapsible-section.expanded .category-description {
    display: block;
}

/* Animation for smooth expand/collapse */
@keyframes expandSection {
    from {
        max-height: 0;
        opacity: 0;
    }
    to {
        max-height: 2000px;
        opacity: 1;
    }
}

@keyframes collapseSection {
    from {
        max-height: 2000px;
        opacity: 1;
    }
    to {
        max-height: 0;
        opacity: 0;
    }
}

/* Mobile responsive for collapsible sections */
@media (max-width: 768px) {
    .category-header {
        padding: 1rem;
    }
    
    .category-header .category-title {
        font-size: 1.1rem;
    }
    
    .toggle-icon {
        width: 35px;
        height: 35px;
    }
    
    .toggle-icon i {
        font-size: 1rem;
    }
    
    .collapsible-section.expanded .collapsible-content {
        padding: 1rem;
    }
    
    .collapsible-section .category-description {
        padding: 0 1rem 1rem 1rem;
        font-size: 0.9rem;
    }
}

/* Inline Controls for Menu Items */
.inline-controls {
    background: #f8f9fa;
    border: 2px solid #ff6b35;
    border-radius: 15px;
    padding: 1rem;
    margin-top: 1rem;
    animation: slideDown 0.3s ease-out;
}

.inline-dietary {
    margin-bottom: 1rem;
}

.inline-checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: #333;
}

.inline-dietary-checkbox {
    display: none;
}

.inline-checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #ddd;
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.inline-dietary-checkbox:checked + .inline-checkmark {
    background: #ff6b35;
    border-color: #ff6b35;
}

.inline-dietary-checkbox:checked + .inline-checkmark::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.inline-checkbox-text {
    font-weight: 500;
}

.inline-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #856404;
    background: #fff3cd;
    padding: 0.5rem;
    border-radius: 8px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.inline-note i {
    color: #f39c12;
}

.inline-quantity-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.inline-qty-btn {
    background: #ff6b35;
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.inline-qty-btn:hover {
    background: #e55a2b;
    transform: scale(1.1);
}

.inline-qty-btn:active {
    transform: scale(0.95);
}

.quantity-display {
    background: white;
    border: 2px solid #ff6b35;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-weight: 600;
    font-size: 1.1rem;
    color: #ff6b35;
    min-width: 40px;
    text-align: center;
}

.inline-add-to-cart {
    width: 100%;
    background: #ff6b35;
    color: white;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.inline-add-to-cart:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

.inline-add-to-cart:active {
    transform: translateY(0);
}

/* Animation for inline controls */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
        max-height: 0;
    }
    to {
        opacity: 1;
        transform: translateY(0);
        max-height: 200px;
    }
}

/* Mobile responsive for inline controls */
@media (max-width: 768px) {
    .inline-controls {
        padding: 0.75rem;
    }
    
    .inline-checkbox-label {
        font-size: 0.85rem;
    }
    
    .inline-quantity-controls {
        gap: 0.75rem;
    }
    
    .inline-qty-btn {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
    
    .quantity-display {
        padding: 0.4rem 0.8rem;
        font-size: 1rem;
    }
    
    .inline-add-to-cart {
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
    }
}

/* Ensure menu items have proper spacing */
.menu-item {
    position: relative;
    transition: all 0.3s ease;
}

.menu-item:has(.inline-controls) {
    background: #fff;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.1);
    border-radius: 15px;
    padding: 1rem;
    margin-bottom: 1rem;
}

/* Customization Modal */
.customization-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1005;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.customization-modal.active {
    opacity: 1;
    visibility: visible;
}

.customization-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.customization-modal-content {
    background: white;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    z-index: 1;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.customization-modal.active .customization-modal-content {
    transform: scale(1);
}

.customization-header {
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.customization-header h3 {
    margin: 0;
    color: #333;
    font-size: 1.3rem;
}

.close-customization {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #999;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-customization:hover {
    background: #f8f9fa;
    color: #333;
}

.customization-body {
    padding: 1.5rem;
}

.item-details {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f0f0f0;
}

.item-details h4 {
    margin: 0 0 0.5rem 0;
    color: #333;
    font-size: 1.2rem;
}

.item-details .item-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ff6b35;
    margin: 0;
}

.customization-options h5 {
    margin: 0 0 1rem 0;
    color: #333;
    font-size: 1rem;
}

.customization-note {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 10px;
}

.note-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #856404;
    font-size: 0.9rem;
}

.note-content i {
    color: #f39c12;
    font-size: 1.1rem;
}

.checkbox-group {
    margin-bottom: 1.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    padding: 1rem;
    border: 2px solid #f0f0f0;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
}

.checkbox-label:hover {
    border-color: #ff6b35;
    background: #fff8f5;
}

.customization-checkbox {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.customization-checkbox:checked + .checkmark {
    background: #ff6b35;
    border-color: #ff6b35;
}

.customization-checkbox:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-text {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.25rem;
}

.checkbox-description {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.checkbox-label .checkbox-text,
.checkbox-label .checkbox-description {
    display: block;
}

.quantity-section {
    margin-top: 1.5rem;
}

.quantity-section label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.quantity-section .quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.quantity-section .quantity-btn {
    background: #f8f9fa;
    border: 1px solid #ddd;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #000;
    font-weight: 600;
}

.quantity-section .quantity-btn:hover {
    background: #ff6b35;
    color: white;
    border-color: #ff6b35;
}

.quantity-section .quantity-btn i {
    color: inherit;
    font-size: 0.9rem;
}

.quantity-section #itemQuantity {
    width: 60px;
    height: 40px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
}

.customization-footer {
    padding: 1.5rem;
    border-top: 1px solid #eee;
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.customization-footer .btn {
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.customization-footer .btn-secondary {
    background: #f8f9fa;
    color: #666;
}

.customization-footer .btn-secondary:hover {
    background: #e9ecef;
    color: #333;
}

.customization-footer .btn-primary {
    background: #ff6b35;
    color: white;
}

.customization-footer .btn-primary:hover {
    background: #e55a2b;
}

/* Responsive Design for Customization Modal */
@media (max-width: 768px) {
    .customization-modal-content {
        width: 95%;
        margin: 1rem;
    }
    
    .customization-header,
    .customization-body,
    .customization-footer {
        padding: 1rem;
    }
    
    .customization-footer {
        flex-direction: column;
    }
    
    .customization-footer .btn {
        width: 100%;
        justify-content: center;
    }
    
    .checkbox-label {
        padding: 0.75rem;
    }
    
    .quantity-section .quantity-controls {
        gap: 1rem;
    }
}

/* Add to Cart Success Notification */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(100%);
    }
}

.add-to-cart-notification .notification-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.add-to-cart-notification i {
    font-size: 1.5rem;
}

.add-to-cart-notification .notification-text strong {
    display: block;
    margin-bottom: 0.25rem;
}

.add-to-cart-notification .notification-text p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 3rem 0;
    margin: 2rem 0;
    border-radius: 20px;
}

.cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.cta-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    border: 2px solid transparent;
}

.cta-card:hover {
    transform: translateY(-5px);
    border-color: #ff6b35;
}

.cta-icon {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.cta-icon i {
    font-size: 2rem;
    color: white;
}

.cta-content h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.cta-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #ff6b35;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: #e55a2b;
    transform: translateX(5px);
    color: white;
}

/* Feedback Banner */
.feedback-banner {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 1rem 0;
    position: relative;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.5s ease-out;
}

.feedback-banner-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.feedback-icon {
    background: rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feedback-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.feedback-text {
    flex: 1;
    min-width: 250px;
}

.feedback-text h4 {
    margin: 0 0 0.25rem 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.feedback-text p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.4;
}

.feedback-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.feedback-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.feedback-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    color: white;
}

.close-banner {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.close-banner:hover {
    background: rgba(255, 255, 255, 0.2);
    opacity: 1;
}

.feedback-banner.hidden {
    display: none;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Mobile Responsive for Feedback Banner */
@media (max-width: 768px) {
    .feedback-banner {
        padding: 0.75rem 0;
    }
    
    .feedback-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .feedback-icon {
        width: 40px;
        height: 40px;
    }
    
    .feedback-icon i {
        font-size: 1.2rem;
    }
    
    .feedback-text h4 {
        font-size: 1rem;
    }
    
    .feedback-text p {
        font-size: 0.85rem;
    }
    
    .feedback-actions {
        width: 100%;
        justify-content: center;
        gap: 0.75rem;
    }
    
    .feedback-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
}

/* Adjust header position to account for banner */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

/* Adjust body padding when banner is visible */
body {
    padding-top: 0;
}

body.banner-visible {
    padding-top: 80px;
}

@media (max-width: 768px) {
    body.banner-visible {
        padding-top: 100px;
    }
}

/* WhatsApp Fallback Modal */
.whatsapp-fallback-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.fallback-modal-content {
    background: white;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.fallback-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    border-radius: 15px 15px 0 0;
}

.fallback-header h3 {
    margin: 0;
    font-size: 1.3rem;
}

.close-fallback {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.close-fallback:hover {
    background: rgba(255, 255, 255, 0.2);
}

.fallback-body {
    padding: 2rem;
}

.fallback-body p {
    margin-bottom: 1.5rem;
    color: #666;
    text-align: center;
}

.fallback-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.fallback-btn {
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.fallback-btn.primary {
    background: #25D366;
    color: white;
}

.fallback-btn.primary:hover {
    background: #20b358;
    transform: translateY(-2px);
}

.fallback-btn.secondary {
    background: #f8f9fa;
    color: #333;
    border: 2px solid #dee2e6;
}

.fallback-btn.secondary:hover {
    background: #e9ecef;
    border-color: #adb5bd;
}

.fallback-btn.tertiary {
    background: #007bff;
    color: white;
}

.fallback-btn.tertiary:hover {
    background: #0056b3;
    transform: translateY(-2px);
}

.copy-section {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.order-text {
    width: 100%;
    height: 150px;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: monospace;
    font-size: 0.85rem;
    resize: vertical;
    margin-bottom: 1rem;
}

.copy-btn {
    background: #ff6b35;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
}

.copy-btn:hover {
    background: #e55a2b;
}

.copy-note {
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.5rem;
    text-align: center;
}

.copy-note strong {
    color: #25D366;
    font-weight: 600;
}

/* Mobile responsive for fallback modal */
@media (max-width: 768px) {
    .fallback-modal-content {
        width: 95%;
        margin: 1rem;
    }
    
    .fallback-header {
        padding: 1rem;
    }
    
    .fallback-header h3 {
        font-size: 1.1rem;
    }
    
    .fallback-body {
        padding: 1.5rem;
    }
    
    .fallback-btn {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
    }
    
    .order-text {
        height: 120px;
        font-size: 0.8rem;
    }
}

/* About CTA Section */
.about-cta {
    text-align: center;
    margin-top: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 15px;
    color: white;
}

.about-cta p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: white !important;
}

.about-cta .btn {
    background: white;
    color: #ff6b35;
    border: 2px solid white;
    font-weight: 600;
}

.about-cta .btn:hover {
    background: transparent;
    color: white;
    border-color: white;
}

/* About Hero Section for About Page */
.about-hero {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 6rem 0 4rem 0;
    text-align: center;
}

.about-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.about-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Navigation Active State */
.nav-menu a.active {
    color: #ff6b35;
    font-weight: 600;
}

@media (max-width: 768px) {
    .about-hero {
        padding: 4rem 0 2rem 0;
    }
    
    .about-hero h1 {
        font-size: 2rem;
    }
    
    .about-hero p {
        font-size: 1rem;
    }
    
    .about-cta {
        padding: 1.5rem;
    }
    
    .about-cta p {
        font-size: 1rem;
    }
}

/* Food Guide Section */
.food-guide-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.guide-content {
    max-width: 1000px;
    margin: 0 auto;
}

.guide-category {
    margin-bottom: 3rem;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.guide-category h3 {
    color: #ff6b35;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #ff6b35;
    padding-bottom: 0.5rem;
}

.guide-category > p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 2rem;
}

.guide-items, .sourcing-details, .safety-practices {
    display: grid;
    gap: 2rem;
}

.guide-item, .sourcing-item, .safety-item {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #ff6b35;
}

.guide-item h4, .sourcing-item h4, .safety-item h4 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.guide-item p, .sourcing-item p, .safety-item p {
    line-height: 1.6;
    color: #666;
    margin-bottom: 0.75rem;
}

.guide-item p:last-child, .sourcing-item p:last-child, .safety-item p:last-child {
    margin-bottom: 0;
}

.guide-item strong {
    color: #ff6b35;
    font-weight: 600;
}

/* Enhanced About Section */
.about-section {
    padding: 4rem 0;
    background: white;
}

.about-text h3 {
    color: #ff6b35;
    font-size: 1.4rem;
    margin: 2rem 0 1rem 0;
    border-bottom: 2px solid #ff6b35;
    padding-bottom: 0.5rem;
    display: inline-block;
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.feature:hover {
    border-color: #ff6b35;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.1);
}

.feature i {
    font-size: 2.5rem;
    color: #ff6b35;
    margin-bottom: 1rem;
}

.feature h4 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.feature p {
    color: #666;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Enhanced Menu Item Descriptions */
.menu-item .item-info p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #666;
    margin-top: 0.5rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .food-guide-section {
        padding: 2rem 0;
    }
    
    .guide-category {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .guide-category h3 {
        font-size: 1.3rem;
    }
    
    .guide-item, .sourcing-item, .safety-item {
        padding: 1rem;
    }
    
    .features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature {
        padding: 1.5rem;
    }
    
    .about-text h3 {
        font-size: 1.2rem;
    }
    
    .about-text p {
        font-size: 1rem;
    }
}

/* Hero highlights */
.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin: 1.5rem 0;
}

.highlight {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .hero-highlights {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .highlight {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Hero Section Buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2rem;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: #ff6b35;
    color: white;
    border-color: #ff6b35;
}

.btn-primary:hover {
    background: #e55a2b;
    border-color: #e55a2b;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
    color: white;
}

.btn-feedback {
    background: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
    color: #333;
    border-color: #ffd700;
    font-weight: 600;
}

.btn-feedback:hover {
    background: linear-gradient(135deg, #ffed4e 0%, #ffc947 100%);
    border-color: #ffed4e;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
    color: #333;
}

.btn-feedback i {
    color: #ff6b35;
}

.btn-secondary {
    background: #25D366;
    color: white;
    border-color: #25D366;
}

.btn-secondary:hover {
    background: #20b358;
    border-color: #20b358;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    color: white;
}

/* Mobile responsive for hero buttons */
@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* Remove feedback banner styles and adjust body */
body {
    padding-top: 0;
}

/* Navigation Styles - Ensure consistency across pages */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h1 {
    color: #ff6b35;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.nav-logo span {
    color: #333;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    gap: 2rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
    color: #ff6b35;
}

.cart-toggle {
    background: #ff6b35;
    color: white;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cart-toggle:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

.cart-count {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.5rem;
    border-radius: 15px;
    font-size: 0.8rem;
    min-width: 20px;
    text-align: center;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }
    
    .cart-toggle {
        margin-top: 1rem;
    }
}

/* Premix Page Specific Styles */
.premix-hero {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.premix-hero .hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.premix-hero .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.feature-item i {
    font-size: 1.2rem;
}

/* Menu Item Enhancements for Premix */
.menu-item.featured {
    border: 2px solid #ff6b35;
    position: relative;
    overflow: hidden;
}

.menu-item.featured::before {
    content: "Popular";
    position: absolute;
    top: 15px;
    right: -30px;
    background: #ff6b35;
    color: white;
    padding: 5px 40px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
    z-index: 1;
}

.item-features {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.feature-tag {
    background: #f8f9fa;
    color: #666;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Combo Offers */
.menu-item.combo-offer {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border: 2px solid #28a745;
    position: relative;
}

.combo-badge {
    position: absolute;
    top: -10px;
    left: 20px;
    background: #28a745;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9rem;
    margin-right: 0.5rem;
}

/* How to Use Section */
.how-to-use-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.step-item:hover {
    transform: translateY(-5px);
}

.step-number {
    background: #ff6b35;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h4 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.step-content p {
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefit-item i {
    font-size: 3rem;
    color: #ff6b35;
    margin-bottom: 1rem;
}

.benefit-item h4 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for Premix Page */
@media (max-width: 768px) {
    .premix-hero .hero-title {
        font-size: 2.2rem;
    }
    
    .premix-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-features {
        gap: 1rem;
    }
    
    .feature-item {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .step-item {
        padding: 1.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-item {
        padding: 1.5rem;
    }
    
    .benefit-item i {
        font-size: 2.5rem;
    }
}

/* Delivery Note Styling */
.delivery-note {
    margin: 1rem 0;
    padding: 0.75rem;
    border-radius: 8px;
    font-size: 0.9rem;
    display: none;
}

.delivery-warning {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    color: #856404;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.delivery-warning i {
    color: #f39c12;
}

.delivery-success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.delivery-success i {
    color: #28a745;
}

/* Mobile Checkout Section */
.mobile-checkout-section {
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    padding: 20px 0;
    margin: 20px 0;
    display: none; /* Hidden on desktop */
}

.mobile-checkout-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.checkout-info {
    flex: 1;
    color: white;
}

.checkout-info h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.checkout-info p {
    margin: 0;
    opacity: 0.9;
    font-size: 0.9rem;
    line-height: 1.4;
}

.mobile-cart-toggle {
    flex-shrink: 0;
}

.mobile-cart-btn {
    background: white;
    color: #ff6b35;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    min-width: 120px;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
}

.mobile-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: #f8f9fa;
}

.mobile-cart-btn:active {
    transform: translateY(0);
}

.mobile-cart-count {
    background: #ff6b35;
    color: white;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    margin-left: 0.25rem;
    transition: all 0.3s ease;
}

.mobile-cart-count.updated {
    animation: bounceCount 0.6s ease;
    background: #28a745;
}

@keyframes bounceCount {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

/* Show only on mobile and tablet */
@media (max-width: 1024px) {
    .mobile-checkout-section {
        display: block;
    }
}

/* Mobile specific adjustments */
@media (max-width: 768px) {
    .mobile-checkout-section {
        padding: 10px 0;
        margin: 10px 0;
    }
    
    .mobile-checkout-content {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .checkout-info h3 {
        font-size: 1.2rem;
        margin-bottom: 0.25rem;
        margin-top: 0;
    }
    
    .checkout-info p {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
        margin-top: 0;
    }
    
    .mobile-cart-btn {
        padding: 14px 24px;
        font-size: 1.1rem;
        min-width: 140px;
    }
}

/* Very small screens */
@media (max-width: 480px) {
    .mobile-checkout-section {
        padding: 8px 0;
        margin: 8px 0;
    }
    
    .checkout-info h3 {
        font-size: 1.1rem;
        margin-bottom: 0.2rem;
        margin-top: 0;
    }
    
    .checkout-info p {
        font-size: 0.8rem;
        margin-bottom: 0.4rem;
        margin-top: 0;
    }
    
    .mobile-cart-btn {
        padding: 12px 20px;
        font-size: 1rem;
        min-width: 130px;
    }
}

/* Google AdSense Section */
/* Google AdSense Section */
.ads-section {
    padding: 60px 0;
    background: #f8f9fa;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    display: block; /* Changed from 'none' to 'block' */
    transition: opacity 0.3s ease;
}

.ad-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
}

.ad-badge {
    background: #ff6b35;
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    box-shadow: 0 2px 5px rgba(255, 107, 53, 0.3);
}

.ads-section.ads-loaded {
    display: block;
    opacity: 1;
}

.ads-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.ads-label {
    font-size: 1rem;
    color: #666;
    margin: 0;
    font-weight: 500;
}

.adsbygoogle {
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    min-height: 50px; /* Minimum height for detection */
}

/* Show ads section only when ads are present */
.adsbygoogle[data-ad-status="filled"] ~ .ads-section,
.adsbygoogle:not(:empty) ~ .ads-section {
    display: block;
}

/* Responsive ads styling */
@media (max-width: 768px) {
    .ads-section {
        padding: 40px 0;
    }
    
    .ads-container {
        padding: 0 15px;
    }
    
    .ads-label {
        font-size: 1rem;
    }
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #ff6b35;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ff6b35;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #ff6b35;
    border-radius: 50%;
    color: white;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    color: #ccc;
}

.footer-bottom a {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #e55a2b;
    text-decoration: underline;
}

/* Cart Icon in Navigation */
.cart-toggle {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 10px 16px;
    background: #ff6b35;
    color: white !important;
    border: 2px solid #ff6b35;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: 600;
    min-height: 44px;
    font-family: 'Poppins', sans-serif;
}

.cart-toggle:hover {
    background: #e55a2b;
    border-color: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    color: white !important;
}

.cart-count {
    background: white;
    color: #ff6b35;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    border: 2px solid white;
}

/* Menu Item Updates */
.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.5rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.item-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
}

.add-to-cart-btn {
    background: #ff6b35;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.add-to-cart-btn:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.add-to-cart-btn:active {
    transform: translateY(0);
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
    background: #ff6b35;
    color: white;
}

.cart-header h3 {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.close-cart {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.close-cart:hover {
    background: rgba(255, 255, 255, 0.2);
}

.cart-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

.empty-cart {
    text-align: center;
    padding: 3rem 1rem;
    color: #999;
}

.empty-cart i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #eee;
    animation: slideInRight 0.3s ease;
}

.cart-item-info h5 {
    margin: 0 0 0.5rem 0;
    color: #333;
}

.cart-item-price {
    color: #ff6b35;
    font-weight: 600;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.quantity-btn {
    background: #ff6b35;
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: background 0.3s ease;
}

.quantity-btn:hover {
    background: #e55a2b;
}

.quantity-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.quantity {
    font-weight: 600;
    min-width: 30px;
    text-align: center;
}

.remove-item {
    background: #dc3545;
    color: white;
    border: none;
    padding: 0.25rem 0.5rem;
    border-radius: 15px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: background 0.3s ease;
}

.remove-item:hover {
    background: #c82333;
}

.cart-summary {
    padding: 1.5rem;
    border-top: 1px solid #eee;
    background: #f8f9fa;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.summary-row.total {
    font-weight: 700;
    font-size: 1.1rem;
    color: #ff6b35;
    border-top: 1px solid #ddd;
    padding-top: 0.5rem;
    margin-top: 1rem;
}

.checkout-btn {
    width: 100%;
    background: #ff6b35;
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 1rem;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.checkout-btn:hover {
    background: #e55a2b;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1002;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    border-radius: 15px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(-50px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
    background: #ff6b35;
    color: white;
    border-radius: 15px 15px 0 0;
}

.modal-header h3 {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.close-modal {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.2);
}

.modal-body {
    padding: 2rem;
}

/* Order Form Styles */
.order-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-section {
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 1.5rem;
    background: #f8f9fa;
}

.form-section h4 {
    margin: 0 0 1rem 0;
    color: #ff6b35;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.1);
}

.order-summary-modal {
    background: white;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 1.5rem;
}

.order-summary-modal h4 {
    margin: 0 0 1rem 0;
    color: #ff6b35;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.modal-order-item:last-child {
    border-bottom: none;
}

.modal-total {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #ddd;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

/* Confirmation Modal */
.confirmation-modal {
    text-align: center;
    max-width: 500px;
}

.confirmation-header {
    padding: 2rem;
}

.success-icon {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 1rem;
}

.confirmation-header h3 {
    color: #28a745;
    margin-bottom: 0.5rem;
}

.order-details {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.detail-row:last-child {
    margin-bottom: 0;
    font-weight: 600;
    color: #ff6b35;
}

.confirmation-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Animations */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.cart-count.updated {
    animation: bounce 0.6s ease;
}

/* WhatsApp Notification Styles */
.whatsapp-notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: #25D366;
    color: white;
    padding: 1rem;
    border-radius: 15px;
    z-index: 1003;
    max-width: 350px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    animation: slideInRight 0.3s ease;
}

.notification-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.notification-content i.fab {
    font-size: 2rem;
    margin-top: 0.2rem;
}

.notification-text {
    flex: 1;
}

.notification-text strong {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.notification-text p {
    margin: 0;
    opacity: 0.9;
    font-size: 0.9rem;
    line-height: 1.4;
}

.close-notification {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 50%;
    transition: background 0.3s ease;
    opacity: 0.8;
}

.close-notification:hover {
    background: rgba(255, 255, 255, 0.2);
    opacity: 1;
}

/* Update existing animations */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
        transform: translateX(100%);
    }
}

/* WhatsApp Icon Sizing */
.btn .fab.fa-whatsapp {
    font-size: 1.3rem;
}

.modal-header h3 i.fab {
    font-size: 1.8rem;
}

.success-icon-large {
    font-size: 5rem;
    color: #25D366;
    margin-bottom: 1.5rem;
}

.whatsapp-notification .fab.fa-whatsapp {
    font-size: 2.5rem;
    margin-top: 0.2rem;
}

.cart-toggle i.fas {
    font-size: 1.2rem;
}
.whatsapp-success-message {
    text-align: center;
    padding: 2rem;
}

.success-icon-large {
    font-size: 5rem;
    color: #25D366;
    margin-bottom: 1.5rem;
}

.whatsapp-success-message h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.success-description {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.order-summary-display {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 1.5rem;
    margin: 2rem 0;
    text-align: left;
}

.order-summary-display h4 {
    color: #ff6b35;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.whatsapp-instructions {
    background: #fff5f2;
    border-radius: 15px;
    padding: 1.5rem;
    margin: 2rem 0;
    text-align: left;
}

.instruction-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.5rem;
}

.instruction-item:last-child {
    margin-bottom: 0;
}

.instruction-item i {
    color: #25D366;
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.instruction-item span {
    color: #333;
    font-weight: 500;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.modal-actions .btn {
    min-width: 180px;
    flex: 1;
    max-width: 220px;
    padding: 14px 20px;
}

/* Form actions consistency */
.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    padding-top: 1rem;
    border-top: 1px solid #eee;
    flex-wrap: wrap;
}

.form-actions .btn {
    min-width: 140px;
}

/* Hero buttons consistency */
.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    min-width: 160px;
}

/* Order buttons consistency */
.order-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.order-buttons .btn {
    min-width: 160px;
}

/* Confirmation actions consistency */
.confirmation-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.confirmation-actions .btn {
    min-width: 160px;
}

/* Update modal header for WhatsApp theme */
.modal-header {
    background: #25D366;
}

.modal-header h3 i.fab {
    font-size: 1.5rem;
}

/* Responsive Updates */
@media (max-width: 768px) {
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
    
    .modal-content {
        width: 95%;
        margin: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .confirmation-actions {
        flex-direction: column;
    }
    
    .item-actions {
        align-items: center;
        flex-direction: row;
        gap: 1rem;
    }
    
    .menu-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 120px 20px 60px;
    }
    
    .hero-content {
        margin-right: 0;
        margin-bottom: 2rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons,
    .order-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 200px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .category-title {
        font-size: 1.5rem;
    }
    
    .menu-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .item-price {
        font-size: 1.5rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-item,
.feature,
.contact-item {
    animation: fadeInUp 0.6s ease forwards;
}

/* Hover Effects */
.menu-item:hover .item-price {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}
