:root {
    --primary-color: #2C3E50;
    --secondary-color: #34495E;
    --accent-color: #3498DB;
    --text-color: #2C3E50;
    --light-bg: #ECF0F1;
    --white: #FFFFFF;
    --border-color: #BDC3C7;
    --shadow-color: rgba(0, 0, 0, 0.1);
}

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

.standard-header {
    background: #2c3e50;
    color: #fff;
    text-align: left;
    padding: 1.2rem 1.6rem 1.2rem 1.6rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e0e6ed;
    box-shadow: none;
    padding-left: 2.5rem;
}

.restaurant-name {
    color: #fff;
    font-size: 1.7rem;
    margin: 0;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-shadow: none;
    display: inline-block;
    max-width: 320px;
    word-break: break-word;
    white-space: normal;
    line-height: 1.3;
}

.restaurant-subtitle {
    color: #d6e6f7;
    margin-top: 0.7rem;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 4px rgba(44,62,80,0.10);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.language-select {
    background: #34495e;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.3rem 1.2rem;
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: background 0.2s;
}

.language-select:hover {
    background: #5faee3;
    color: #fff;
}

.standard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-language {
    margin-left: auto;
}

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

.language-selector-current {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(52, 152, 219, 0.1);
    border: 1px solid rgba(52, 152, 219, 0.3);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    color: #3498DB;
    font-weight: 500;
}

.language-selector-current:hover {
    background: rgba(52, 152, 219, 0.2);
    border-color: rgba(52, 152, 219, 0.5);
}

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

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

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

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

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

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

.language-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid rgba(52, 152, 219, 0.1);
}

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

.language-option:hover {
    background: rgba(52, 152, 219, 0.1);
}

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

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

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

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

    .language-name {
        display: none;
    }

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

    .language-option {
        padding: 10px 14px;
    }

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

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

    .language-selector-current {
        padding: 5px 8px;
    }

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

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

.categories-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.category-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px var(--shadow-color);
    transition: transform 0.3s ease;
    cursor: pointer;
}

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

.category-image {
    height: 200px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-title {
    padding: 1rem;
    margin: 0;
    text-align: center;
    font-size: 1.5rem;
    color: var(--primary-color);
}

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

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.section-title {
    color: var(--primary-color);
    font-size: 2rem;
    margin: 0;
}

.back-to-categories {
    background: none;
    border: none;
    color: var(--accent-color);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.back-to-categories:hover {
    background-color: var(--light-bg);
}

.menu-items {
    display: grid;
    gap: 2rem;
}

.menu-item {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 4px var(--shadow-color);
    display: flex;
    transition: transform 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-3px);
}

.item-image {
    width: 200px;
    height: 200px;
    flex-shrink: 0;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.item-details {
    padding: 5px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.item-title {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin: 0 0 0.5rem 0;
}

.item-description {
    color: var(--text-color);
    margin: 0 0 1rem 0;
    flex-grow: 1;
}

.item-badges {
    margin-bottom: 1rem;
}

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

.item-badges--tag-icons {
    margin-bottom: 1rem;
    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: #3498DB;
    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;
}

.product-variants {
    margin-bottom: 0.5rem;
    margin-top: 15px;
}

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

.variant-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    font-size: 0.75rem;
    padding: 2px 6px;
    background: rgba(52, 152, 219, 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: 0.8rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.item-price-area {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    min-height: 32px;
}
.item-price-old {
    color: #888;
    font-size: 1.1rem;
    margin-right: 0.5rem;
    text-decoration: line-through;
    opacity: 0.8;
}
.item-price-discounted {
    color: #d32f2f;
    font-size: 1.25rem;
    font-weight: 700;
    background: #ffeaea;
    border-radius: 6px;
    padding: 0.2rem 0.7rem;
    margin-left: 0.2rem;
    box-shadow: 0 2px 8px rgba(211,47,47,0.06);
}
.item-price {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
}
.stock-badge {
    background: #d32f2f;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    padding: 0.2rem 0.9rem;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(211,47,47,0.10);
    display: inline-block;
    margin-top: 0.1rem;
    margin-bottom: 0.1rem;
    animation: shakeStock 0.7s cubic-bezier(.36,.07,.19,.97) both;
}
@keyframes shakeStock {
    10%, 90% { transform: translateX(-1px); }
    20%, 80% { transform: translateX(2px); }
    30%, 50%, 70% { transform: translateX(-4px); }
    40%, 60% { transform: translateX(4px); }
}

.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: 5px;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px var(--shadow-color);
}

.back-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px var(--shadow-color);
}

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

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

    .menu-item {
        flex-direction: column;
    }

    .item-image {
        width: 100%;
        height: 200px;
    }

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

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

@media (max-width: 600px) {
    .restaurant-name {
        font-size: 1.1rem;
        max-width: 180px;
    }
}

.hamburger-menu {
    position: static;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
    margin-right: 1.2rem;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    transition: color 0.2s;
}

.hamburger-menu:hover {
    color: #5faee3;
}

.sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100%;
    background: #2c3e50;
    color: #fff;
    box-shadow: 2px 0 16px 0 rgba(44,62,80,0.18);
    z-index: 1200;
    transition: left 0.3s cubic-bezier(0.4,0,0.2,1);
    display: flex;
    flex-direction: column;
}
.sidebar.open {
    left: 0;
}
.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1rem 1rem 1.5rem;
    border-bottom: 1px solid #3498db;
}
.sidebar-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
}
.close-sidebar {
    color: #fff;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    transition: background 0.2s, transform 0.2s;
}
.close-sidebar:hover {
    background: #3498db;
    transform: scale(1.08);
}
.sidebar-content {
    padding: 1.5rem;
    flex: 1;
}
.sidebar-content p {
    margin: 1rem 0;
    color: #d6e6f7;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.sidebar-desc {
    margin-top: 1.5rem;
    background: #223042;
    border-radius: 8px;
    padding: 1rem 1.2rem;
    color: #e6eaf1;
    box-shadow: 0 2px 8px rgba(44,62,80,0.08);
}
.sidebar-desc-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #5faee3;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.sidebar-desc-text {
    font-size: 0.98rem;
    color: #e6eaf1;
    line-height: 1.6;
    white-space: pre-line;
}

.standard-footer {
    background: #2c3e50;
    color: #fff;
    border-top: 1px solid #e0e6ed;
    padding: 2rem 0 1rem 0;
    margin-top: 3rem;
    box-shadow: none;
    position: relative;
}
.footer-content {
    max-width: 1200px;
    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: #5faee3;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.7rem;
}
.footer-contact p,
.footer-address p {
    color: #f4f8fb;
    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: #fff;
    font-size: 1.5rem;
    transition: color 0.2s;
}
.footer-social a:hover {
    color: #5faee3;
}
.footer-copyright {
    text-align: center;
    color: #f4f8fb;
    font-size: 1rem;
    margin-top: 1.5rem;
    letter-spacing: 0.2px;
    border-top: 1px solid #34495e;
    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;
    }
}

.footer-link {
    color: #5faee3;
    text-decoration: none;
}

.groups-container {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.group-products {
    padding: 1.5rem;
    display: none;
    flex-direction: column;
    gap: 20px;
}

.group-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 4px var(--shadow-color);
    transition: transform 0.3s ease;
    cursor: pointer;
    margin-bottom: 1rem;
}

.group-card:hover {
    transform: translateY(-3px);
}

.group-header {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--primary-color);
    color: var(--white);
}

.group-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
}

.group-title {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.ungrouped-products {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.ungrouped-title {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

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

.btn-add-to-cart {
    background: var(--accent-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: 'Poppins', sans-serif;
}

.btn-add-to-cart:hover {
    background: #2980B9;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(52, 152, 219, 0.3);
}

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

.cart-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--accent-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(52, 152, 219, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Poppins', sans-serif;
    min-width: 140px;
    justify-content: space-between;
}

.cart-toggle:hover {
    background: #2980B9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 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: #E74C3C;
    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(--white);
    box-shadow: -2px 0 20px var(--shadow-color);
    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: 'Poppins', sans-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 var(--shadow-color);
    border: 1px solid var(--border-color);
}

.cart-panel .item-image {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    overflow: hidden;
    padding: 0!important;
}

.cart-panel .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: 'Poppins', sans-serif;
}

.item-details p {
    margin: 0;
    font-size: 12px;
    color: #7F8C8D;
}

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

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

.quantity-btn {
    background: var(--accent-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: #2980B9;
}

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

.remove-item {
    background: #E74C3C;
    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: #C0392B;
}

.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: 'Poppins', sans-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: 'Poppins', sans-serif;
}

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

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

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

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

.btn-checkout:hover {
    background: #2980B9;
}

.cart-empty {
    text-align: center;
    padding: 40px 20px;
    color: #7F8C8D;
}

.cart-empty i {
    font-size: 40px;
    margin-bottom: 15px;
    color: #BDC3C7;
}

.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;
    border: 1px solid var(--border-color);
}

.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: 'Poppins', sans-serif;
}

.order-modal-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #7F8C8D;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-color);
    font-family: 'Poppins', sans-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: 'Poppins', sans-serif;
    box-sizing: border-box;
    background: var(--white);
    color: var(--text-color);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}

.required {
    color: #E74C3C;
}

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

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

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

.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: 'Poppins', sans-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: 'Poppins', sans-serif;
}

.btn-cancel {
    background: #95A5A6;
    color: white;
}

.btn-cancel:hover {
    background: #7F8C8D;
}

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

.btn-submit-order:hover {
    background: #2980B9;
}

.btn-submit-order:disabled {
    background: #95A5A6;
    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%;
    }
}