/* Classic Menu Styles */
:root {
    --primary-color: #8B4513;
    --secondary-color: #2F1810;
    --accent-color: #D4AF37;
    --text-color: #4A4A4A;
    --light-bg: #FDF5E6;
    --white: #FFFFFF;
    --border-color: #D2691E;
}

body {
    font-family: 'Lora', serif;
    background-color: var(--light-bg);
    color: var(--text-color);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.classic-header {
    background-color: var(--white);
    text-align: center;
    padding: 3rem 0;
    border-bottom: 2px solid var(--border-color);
    background-image: url('../img/demo/classic-pattern.png');
    position: relative;
}

.restaurant-name {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.restaurant-subtitle {
    color: var(--secondary-color);
    font-style: italic;
    margin-top: 0.5rem;
}

.menu-container {
    max-width: 900px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.menu-section {
    margin-bottom: 3rem;
    background-color: var(--white);
    padding: 2rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.section-title {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 2px;
    background-color: var(--accent-color);
    margin: 0.5rem auto;
}

.menu-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px dotted var(--border-color);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease-out;
}

.menu-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.5rem;
    flex-direction: column;
}

.item-title {
    font-family: 'Playfair Display', serif;
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin: 0;
}

.item-price {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 1.1rem;
}

.item-description {
    color: var(--text-color);
    font-style: italic;
    font-size: 0.9rem;
    margin: 0;
}

.item-badges {
    margin-top: 0.5rem;
}

.badge {
    display: inline-block;
    padding: 0.2rem 0.5rem;
    font-size: 0.8rem;
    border-radius: 2px;
    margin-right: 0.5rem;
    background-color: var(--accent-color);
    color: var(--white);
}

.item-badges--tag-icons {
    margin-top: 0.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.5rem;
}

.item-badges--tag-icons .badge-tag-with-icon {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.25rem 0.55rem;
    margin-right: 0;
    margin-bottom: 0;
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: 4px;
    background-color: #D4AF37;
    color: #ffffff;
}

.item-badges--tag-icons .badge-tag-with-icon i {
    font-size: 0.72rem;
    color: #ffffff;
    line-height: 1;
    flex-shrink: 0;
}

.item-badges--tag-icons .badge-tag-text {
    color: #ffffff;
}

.cart-badge {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--primary-color);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.cart-badge:hover {
    transform: scale(1.1);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--accent-color);
    color: var(--white);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
}

.notification {
    position: fixed;
    top: 2rem;
    right: -300px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    z-index: 1000;
}

.notification.show {
    right: 2rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .restaurant-name {
        font-size: 2rem;
    }

    .menu-section {
        padding: 1rem;
    }
}

/* Back Buttons */
.back-buttons {
    position: fixed;
    top: 2rem;
    left: 2rem;
    display: flex;
    gap: 1rem;
    z-index: 1000;
}

.back-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(139, 69, 19, 0.2);
}

.back-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(139, 69, 19, 0.3);
}

.back-btn i {
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .restaurant-name {
        font-size: 2rem;
    }

    .menu-section {
        padding: 1rem;
    }

    .back-buttons {
        top: 1rem;
        left: 1rem;
        flex-direction: column;
    }

    .back-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

.item-description-small {
    font-size: 0.92rem;
    color: #7a5c36;
    margin-top: 0.2rem;
    margin-bottom: 0.2rem;
    font-style: italic;
    font-weight: 400;
    line-height: 1.5;
}
.item-price-area {
    margin-top: 0.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 28px;
}

/* Variant Styles */
.product-variants {
    margin-top: 8px;
    width: 100%;
}

.variants-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.variant-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    font-size: 11px;
    padding: 4px 8px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 4px;
    border-left: 3px solid var(--accent-color);
    flex-wrap: wrap;
    gap: 4px;
}

.variant-name {
    color: #666;
    font-weight: 500;
    flex: 1;
    word-wrap: break-word;
    white-space: normal;
    line-height: 1.3;
}

.variant-price {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 12px;
    white-space: nowrap;
    flex-shrink: 0;
}
.item-price-old {
    color: #bfa77a;
    font-size: 1.05rem;
    margin-right: 0.3rem;
    text-decoration: line-through;
    opacity: 0.8;
    font-family: 'Playfair Display', serif;
}
.item-price-discounted {
    color: #a11a1a;
    font-size: 1.13rem;
    font-weight: 700;
    background: none;
    border: none;
    border-radius: 0;
    padding: 0;
    margin-left: 0.2rem;
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.5px;
}
.stock-badge {
    background: none;
    color: #333;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: 0;
    padding: 0;
    letter-spacing: 1px;
    font-family: 'Playfair Display', serif;
    display: inline-block;
    margin-top: 0.1rem;
    margin-bottom: 0.1rem;
    text-transform: uppercase;
}
.classic-footer {
    background: #fff8ec;
    color: #8b4513;
    border-top: 1px solid #d4af37;
    padding: 2rem 0 1rem 0;
    margin-top: 3rem;
    box-shadow: none;
    position: relative;
    font-family: 'Lora', serif;
}
.footer-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 2.5rem;
    padding: 0 2rem;
    border-bottom: none;
}
.footer-section {
    min-width: 180px;
}
.footer-title {
    color: #d4af37;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.7rem;
    font-family: 'Playfair Display', serif;
}
.footer-content p {
    color: #8b4513;
    font-size: 1rem;
    margin: 0.2rem 0 0.2rem 0;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}
.footer-social {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-top: 0.5rem;
}
.footer-social a {
    color: #8b4513;
    font-size: 1.5rem;
    transition: color 0.2s;
}
.footer-social a:hover {
    color: #d4af37;
}
.footer-link {
    color: #d4af37;
    text-decoration: none;
}
.footer-copyright {
    text-align: center;
    color: #8b4513;
    font-size: 1rem;
    margin-top: 1.5rem;
    letter-spacing: 0.2px;
    border-top: 1px solid #d4af37;
    padding-top: 1rem;
    padding-right: 1rem;
    padding-left: 1rem;
}
@media (max-width: 900px) {
    .footer-content {
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
    }
    .footer-section {
        min-width: 0;
    }
}

.group-section {
    margin-bottom: 3rem;
    background: #fdf6ee;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(212,175,55,0.07);
    padding: 1.5rem 1.2rem 1.2rem 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #f3e3c3;
}

.group-header {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    width: 100%;
    justify-content: center;
    margin-bottom: 0.5rem;
    background: #f7f1e3;
    cursor: pointer;
    padding: 0.7rem 1.2rem;
    border-radius: 12px;
    border: 1.5px solid #f3e3c3;
    box-shadow: 0 2px 8px rgba(212,175,55,0.04);
    position: relative;
    transition: background 0.3s, box-shadow 0.3s, border 0.3s;
    user-select: none;
}

.group-header:hover,
.group-header:focus {
    background: #f3e3c3;
    box-shadow: 0 4px 16px rgba(212,175,55,0.10);
    border-color: var(--accent-color);
}

.group-header.open {
    background: #f9e9c9;
    border-color: var(--accent-color);
    box-shadow: 0 6px 18px rgba(212,175,55,0.13);
}

.group-image {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-color);
    background: #fff;
    box-shadow: 0 2px 8px rgba(212,175,55,0.10);
}

.group-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 600;
    margin: 0;
    position: relative;
    letter-spacing: 1px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.group-title::after {
    content: '';
    display: block;
    width: 36px;
    height: 2px;
    background: var(--accent-color);
    margin-top: 4px;
    border-radius: 1px;
}

.group-description {
    font-size: 0.95rem;
    color: #a88b5a;
    font-style: italic;
    margin-top: 0.2rem;
    margin-left: 80px;
}

.group-products {
    width: 100%;
    margin-top: 0.5rem;
    padding-left: 0;
    border: none;
    background: none;
    box-shadow: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.3s;
    opacity: 0;
}

.group-products.open {
    opacity: 1;
    max-height: 2000px;
    margin-top: 1.2rem;
    padding-left: 0;
}

.group-chevron {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
    margin-right: 0.5rem;
    color: var(--primary-color);
    font-size: 1.3rem;
}

.group-header.open .group-chevron {
    transform: rotate(90deg);
    color: var(--accent-color);
}

.ungrouped-section {
    margin-top: 5rem;
    padding-top: 3.5rem;
    position: relative;
}

.ungrouped-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: linear-gradient(to right,
        transparent,
        var(--accent-color),
        transparent
    );
}

.ungrouped-title {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    padding: 0 4rem;
    letter-spacing: 3px;
    font-weight: 500;
    width: 100%;
}

.ungrouped-title::before,
.ungrouped-title::after {
    content: '❦';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-color);
    font-size: 1.8rem;
    opacity: 0.6;
}

.ungrouped-title::before {
    left: 0;
}

.ungrouped-title::after {
    right: 0;
}

/* Language Selector Styles */
.header-language {
    position: absolute;
    top: 20px;
    right: 20px;
}

.language-selector {
    position: relative;
    display: inline-block;
}

.language-selector-current {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    color: #333;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.language-selector-current:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.language-flag {
    font-size: 18px;
}

.language-name {
    font-size: 14px;
    white-space: nowrap;
}

.language-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
    color: #666;
}

.language-selector.active .language-arrow {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    min-width: 180px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 8px;
}

.language-selector.active .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.language-option:last-child {
    border-bottom: none;
}

.language-option:hover {
    background: rgba(0, 0, 0, 0.05);
}

.language-option .language-flag {
    font-size: 18px;
}

.language-option .language-name {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 100px) {
    .header-language {
        top: 15px;
        right: 15px;
    }

    .language-selector-current {
        padding: 8px 12px;
        font-size: 13px;
    }

    .language-name {
        display: none;
    }

    .language-dropdown {
        min-width: 150px;
        right: -10px;
    }

    .language-option {
        padding: 12px 16px;
    }

    .language-option .language-name {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .header-language {
        top: 10px;
        right: 10px;
    }

    .language-selector-current {
        padding: 6px 10px;
    }

    .language-flag {
        font-size: 16px;
    }

    .language-arrow {
        font-size: 10px;
    }
}

.item-actions {
    margin-top: 10px;
    display: flex;
    justify-content: flex-end;
}

.btn-add-to-cart {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
    font-family: 'Lora', serif;
}

.btn-add-to-cart:hover {
    background: var(--secondary-color);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(139, 69, 19, 0.3);
}

.btn-add-to-cart i {
    font-size: 10px;
}

.cart-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 16px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Lora', serif;
    min-width: 140px;
    justify-content: space-between;
}

.cart-toggle:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.5);
}

.cart-toggle i {
    font-size: 16px;
}

.cart-text {
    font-size: 12px;
    font-weight: 500;
}

.cart-total {
    font-size: 13px;
    font-weight: 700;
}

#cartCount {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff4757;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    min-width: 20px;
}

#cartPanel {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: var(--light-bg);
    box-shadow: -2px 0 20px rgba(0,0,0,0.15);
    z-index: 1001;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    border-left: 1px solid var(--border-color);
}

#cartPanel.active {
    right: 0;
}

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

#cartOverlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-header {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    border-radius: 0 0 12px 12px;
    margin: 0 0 10px 0;
}

.cart-header h3 {
    margin: 0;
    color: var(--text-color);
    font-size: 18px;
    font-weight: 600;
    font-family: 'Lora', serif;
}

#cartClose {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: var(--text-color);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    max-height: calc(100vh - 225px);
    padding: 10px 0;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    margin: 0 10px 10px 10px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border: 1px solid var(--border-color);
}

.item-image {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    overflow: hidden;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-details {
    flex: 1;
}

.item-details h4 {
    margin: 0 0 5px 0;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
    font-family: 'Lora', serif;
}

.item-details p {
    margin: 0;
    font-size: 12px;
    color: var(--text-color);
}

.item-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--light-bg);
    border-radius: 20px;
    padding: 5px;
}

.quantity-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn:hover {
    background: var(--secondary-color);
}

.quantity {
    font-size: 12px;
    font-weight: 500;
    min-width: 20px;
    text-align: center;
}

.remove-item {
    background: #ff4757;
    color: white;
    border: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    font-size: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.cart-footer {
    padding: 20px;
    border-top: 1px solid var(--border-color);
    background: var(--white);
    border-radius: 12px 12px 0 0;
    margin: 10px 0 0 0;
}

.cart-subtotal {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--text-color);
    font-family: 'Lora', serif;
}

.cart-actions {
    display: flex;
    gap: 10px;
}

.btn-clear-cart, .btn-checkout {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: none;
    font-family: 'Lora', serif;
}

.btn-clear-cart.show, .btn-checkout.show {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.btn-clear-cart {
    background: #ff4757;
    color: white;
}

.btn-clear-cart:hover {
    background: #ff3742;
}

.btn-checkout {
    background: var(--primary-color);
    color: white;
}

.btn-checkout:hover {
    background: var(--secondary-color);
}

.cart-empty {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-color);
}

.cart-empty i {
    font-size: 40px;
    margin-bottom: 15px;
    color: var(--border-color);
}

.order-modal {
    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;
}

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

body.cart-open {
    overflow: hidden;
}

.order-modal-content {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.order-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.order-modal-header h3 {
    margin: 0;
    color: var(--text-color);
    font-size: 20px;
    font-weight: 600;
    font-family: 'Lora', serif;
}

.order-modal-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-color);
    font-family: 'Lora', serif;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Lora', serif;
    box-sizing: border-box;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(139, 69, 19, 0.2);
}

.required {
    color: #ff4757;
}

.order-summary {
    background: var(--light-bg);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.order-summary h4 {
    margin: 0 0 15px 0;
    color: var(--text-color);
    font-size: 16px;
    font-weight: 600;
    font-family: 'Lora', serif;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
}

.order-total {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
    font-weight: 600;
    font-size: 16px;
    color: var(--text-color);
    font-family: 'Lora', serif;
}

.order-actions {
    display: flex;
    gap: 10px;
}

.btn-cancel, .btn-submit-order {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Lora', serif;
}

.btn-cancel {
    background: #6c757d;
    color: white;
}

.btn-cancel:hover {
    background: #5a6268;
}

.btn-submit-order {
    background: var(--primary-color);
    color: white;
}

.btn-submit-order:hover {
    background: var(--secondary-color);
}

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

@media (max-width: 768px) {
    #cartPanel {
        width: 100%;
        right: -100%;
    }

    .cart-toggle {
        min-width: 120px;
        padding: 10px 14px;
        font-size: 12px;
    }

    .cart-toggle i {
        font-size: 14px;
    }

    .cart-text {
        font-size: 11px;
    }

    .cart-total {
        font-size: 12px;
    }

    .order-modal-content {
        padding: 20px;
        width: 95%;
    }
}