.hidden {
    display: none !important;
}
.search-container.hidden,
.cart-icon.hidden {
    display: none;
}
:root {
    --primary-color: #000000;
    --primary-color-dark: #222222;
    --text-color: white;
    --transition: all 0.3s ease;
    --shadow-color: rgba(0, 0, 0, 0.1);
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, var(--primary-color), #f5f7fa);
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 1rem;
    transition: var(--transition);
}
.container {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0 10px 20px var(--shadow-color);
    padding: 2rem;
    text-align: center;
    max-width: 1200px;
    width: 100%;
    color: #333;
    position: relative;
    padding-bottom: 3rem;
    margin-top: 1rem;
}
.shop-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}
.profile-pic {
    border-radius: 50%;
    width: 125px;
    height: 125px;
    object-fit: cover;
    cursor: pointer;
    border: 3px solid var(--primary-color);
}
h1 {
    margin: 0;
    font-size: 2rem;
    color: var(--primary-color);
}
.bio {
    margin: 0;
    font-size: 1rem;
    color: #555;
    max-width: 600px;
    text-align: center;
}
.social-links {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    max-width: 100%;
}
.search-container {
    width: 100%;
    max-width: 500px;
    margin: 1rem auto;
    position: relative;
}
.search-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 30px;
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
    padding-left: 2.5rem;
}
.search-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}
.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #777;
}
.category-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.category-tab {
    padding: 0.5rem 1rem;
    background-color: #f0f0f0;
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
    border: 1.5px solid var(--primary-color);
}
.category-tab.active {
    background-color: var(--primary-color);
    color: white;
}
.category-tab:hover:not(.active) {
    background-color: #e0e0e0;
}
.sub-category-dropdown-container {
    width: 100%;
    max-width: 500px;
    margin: 0 auto 1rem;
    text-align: center;
}
.sub-category-label {
    display: block;
    margin-bottom: 1rem;
    font-weight: bold;
    color: #333;
}
/* Custom Select Dropdown */
.custom-select-wrapper {
    position: relative;
    width: 100%;
}
.custom-select-wrapper select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    background-color: white;
    color: #333;
    cursor: pointer;
    transition: var(--transition);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 2.5rem;
    background-image: none;
}
.custom-select-wrapper select::-ms-expand {
    display: none;
}
.custom-select-arrow {
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    pointer-events: none;
    color: #777;
    font-size: 1rem;
}
.custom-select-wrapper:hover .custom-select-arrow {
    color: var(--primary-color);
}
.custom-select-wrapper select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}
.loading-message, .no-results {
    text-align: center;
    padding: 2rem;
    color: #777;
    grid-column: 1 / -1;
}
.product-card {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px var(--shadow-color);
    transition: var(--transition);
    height: 100%;
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
.product-image-container {
    width: 100%;
    padding-top: 100%;
    position: relative;
    overflow: hidden;
    background-color: #f8f8f8;
}
.product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.product-card:hover .product-image {
    transform: scale(1.05);
}
.product-info {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.product-name {
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #000;
}
.discount-badge {
    display: block;
    margin: 0.5rem auto;
    background-color: #ff4444;
    color: white;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
    width: fit-content;
}
.order-now-badge {
    display: block;
    margin: 0.5rem auto;
    background-color: #4CAF50;
    color: white;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
    width: fit-content;
}
.product-description {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 0.5rem;
    min-height: 40px;
    flex-grow: 1;
}
.product-price-container {
    margin-bottom: 1rem;
}
.product-price-custom {
    font-weight: bold;
    color: #000;
    font-size: 1rem;
}
.product-price-original {
    font-size: 0.9rem;
    color: #999;
    text-decoration: line-through;
    margin-right: 0.5rem;
}
.product-price-discounted {
    font-weight: bold;
    color: #ff4444;
    font-size: 1rem;
}
.product-price {
    font-weight: bold;
    color: #000;
    margin-bottom: 1rem;
}
.quantity-container {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
    height: 40px;
}
.quantity-controls {
    display: none;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.quantity-controls.active {
    display: flex;
}
.quantity-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border-radius: 4px;
    margin: 0 5px;
    transition: var(--transition);
}
.quantity-btn:hover {
    background-color: var(--primary-color-dark);
}
.quantity-value {
    width: 50px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-weight: bold;
    background-color: white;
}
.add-to-cart {
    background-color: var(--primary-color);
    color: var(--text-color);
    border: none;
    border-radius: 5px;
    transition: var(--transition);
    font-weight: bold;
    box-shadow: 0 4px 6px var(--shadow-color);
    width: 100%;
    padding: 0.5rem;
    cursor: pointer;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
}
.add-to-cart:hover {
    background-color: var(--primary-color-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
.view-options {
    background-color: var(--primary-color);
    color: var(--text-color);
    border: none;
    border-radius: 5px;
    transition: var(--transition);
    font-weight: bold;
    box-shadow: 0 4px 6px var(--shadow-color);
    width: 100%;
    padding: 0.5rem;
    cursor: pointer;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.view-options:hover {
    background-color: var(--primary-color-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
.reserve-btn {
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    transition: var(--transition);
    font-weight: bold;
    box-shadow: 0 4px 6px var(--shadow-color);
    width: 100%;
    padding: 0.5rem;
    cursor: pointer;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.reserve-btn:hover {
    background-color: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
.cart-icon {
    position: fixed;
    top: 75%;
    right: 0;
    transform: translateY(-50%);
    background-color: var(--primary-color);
    color: var(--text-color);
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 6px var(--shadow-color);
    transition: var(--transition);
    z-index: 1000;
    border-radius: 8px 0 0 8px;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.7);
    animation: cartGlowPulse 2s ease-in-out infinite;
}
.cart-icon.hidden {
    display: none;
}
.cart-icon:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.9);
}
.cart-count {
    position: absolute;
    top: 50%;
    left: -10px;
    transform: translateY(-50%);
    background-color: #ff4444;
    color: white;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.7rem;
    border: 2px solid rgba(255, 255, 255, 0.7);
}
.cart-modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.cart-content {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    color: #333;
    margin-bottom: 2rem;
    position: relative;
}
.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #eee;
}
.cart-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 0;
}
.close-cart-btn {
    background: none;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
    color: #555;
    font-size: 1.2rem;
}
.close-cart-btn:hover {
    background-color: rgba(0, 0, 0, 0.1);
    color: var(--primary-color);
    transform: scale(1.05);
}
.cart-item {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}
.cart-item-image-container {
    width: 60px;
    height: 60px;
    position: relative;
    margin-right: 1rem;
    border-radius: 4px;
    overflow: hidden;
    background-color: #f8f8f8;
}
.cart-item-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cart-item-info {
    flex: 1;
}
.cart-item-name {
    font-weight: bold;
    margin-bottom: 0.3rem;
    color: #000;
}
.cart-item-option {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 0.3rem;
}
.cart-item-price-container {
    margin-bottom: 0.3rem;
}
.cart-item-price-original {
    font-size: 0.9rem;
    color: #999;
    text-decoration: line-through;
    margin-right: 0.5rem;
}
.cart-item-price-discounted {
    font-weight: bold;
    color: #ff4444;
    font-size: 1rem;
}
.cart-item-price {
    color: #000;
    font-weight: bold;
}
.cart-actions {
    display: flex;
    align-items: center;
}
.cart-quantity-controls {
    display: flex;
    align-items: center;
    margin: 0 1rem;
}
.cart-quantity-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border-radius: 4px;
    transition: var(--transition);
}
.cart-quantity-btn:hover {
    background-color: var(--primary-color-dark);
}
.cart-quantity-value {
    width: 40px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin: 0 5px;
    font-weight: bold;
}
.remove-item {
    background-color: #ff4444;
    color: white;
    border: none;
    width: 25px;
    height: 25px;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}
.remove-item:hover {
    background-color: #cc0000;
    transform: scale(1.1);
}
.cart-total {
    font-weight: bold;
    margin: 1.5rem 0;
    font-size: 1.2rem;
    text-align: center;
    color: #000;
}
.checkout-btn {
    background-color: #25D366;
    color: white;
    border: none;
    padding: 0.75rem;
    border-radius: 5px;
    width: 100%;
    cursor: pointer;
    font-weight: bold;
    transition: var(--transition);
}
.checkout-btn:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
}
.empty-cart {
    text-align: center;
    padding: 2rem;
    color: #777;
}
.modal {
    display: none;
    position: fixed;
    z-index: 1002;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.modal-content {
    max-width: 80%;
    max-height: 70vh;
    margin-bottom: 20px;
    cursor: pointer;
    border-radius: 8px;
}
.modal-message {
    color: white;
    font-size: 1.2rem;
    text-align: center;
    margin: 15px 0;
    min-height: 0;
    display: none;
}
.redirect-message {
    color: white;
    font-size: 1rem;
    text-align: center;
    margin-top: 10px;
}
.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}
.close:hover {
    color: #bbb;
}
.footer {
    width: 100%;
    text-align: center;
    margin-top: 1rem;
    background-color: transparent;
    color: #333;
}
.footer ul {
    width: 100%;
    padding: 1rem 0;
    margin: 0;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    list-style: none;
}
.footer ul li {
    margin: 0;
}
.footer ul li a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    transition: var(--transition);
}
.footer ul li a:hover {
    color: var(--primary-color-dark);
}
.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 4px 6px var(--shadow-color);
    transition: var(--transition);
}
.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
.custom-icon {
    width: 20px;
    height: 20px;
    filter: invert(1);
    transition: var(--transition);
}
.omni-glow {
    position: relative;
    box-shadow: 0 0 4px var(--primary-color);
    animation: omniGlowPulse 2s ease-in-out infinite;
    transition: var(--transition);
}
.omni-glow:hover {
    background-color: var(--primary-color-dark);
    transform: translateY(-3px);
    box-shadow: 0 0 10px var(--primary-color), 0 6px 12px rgba(0, 0, 0, 0.15);
}
@keyframes omniGlowPulse {
    0% {
        box-shadow: 0 0 4px var(--primary-color);
    }
    50% {
        box-shadow:  0 0 10px var(--primary-color);
    }
    100% {
        box-shadow: 0 0 4px var(--primary-color);
    }
}
@keyframes cartGlowPulse {
    0% {
        box-shadow: 0 0 4px rgba(255, 255, 255, 0.7);
    }
    50% {
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.9);
    }
    100% {
        box-shadow: 0 0 4px rgba(255, 255, 255, 0.7);
    }
}
.options-modal {
    display: none;
    position: fixed;
    z-index: 1003;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.options-modal-content {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    color: #333;
    margin-bottom: 2rem;
    position: relative;
}
.options-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #eee;
}
.options-modal-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 0;
}
.close-options-modal-btn {
    background: none;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
    color: #555;
    font-size: 1.2rem;
}
.close-options-modal-btn:hover {
    background-color: rgba(0, 0, 0, 0.1);
    color: var(--primary-color);
    transform: scale(1.05);
}
.option-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}
.option-name {
    font-weight: normal;
    margin-bottom: 0.3rem;
}
.options-modal-title .product-name-black {
    color: black;
    font-weight: bold;
    display: block;
    margin-top: 0.3rem;
}
.option-price {
    color: black;
    font-weight: bold;
}
.option-price-original {
    font-size: 0.9rem;
    color: #999;
    text-decoration: line-through;
    margin-right: 0.5rem;
}
.option-quantity-controls {
    display: flex;
    align-items: center;
    margin-top: 0.5rem;
}
.option-quantity-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border-radius: 4px;
    transition: var(--transition);
}
.option-quantity-btn:hover {
    background-color: var(--primary-color-dark);
}
.option-quantity-value {
    width: 40px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin: 0 5px;
    font-weight: bold;
}
.add-option-to-cart {
    background-color: var(--primary-color);
    color: var(--text-color);
    border: none;
    border-radius: 5px;
    transition: var(--transition);
    font-weight: bold;
    box-shadow: 0 4px 6px var(--shadow-color);
    width: 100%;
    padding: 0.75rem;
    cursor: pointer;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
}
.add-option-to-cart:hover {
    background-color: var(--primary-color-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
.waiter-select-container {
    margin: 1.5rem 0;
    width: 100%;
}
.waiter-select-label {
    display: block;
    margin-bottom: 1rem;
    font-weight: bold;
    color: #333;
}
.client-name-container {
    margin: 1.5rem 0;
    width: 100%;
}
.client-name-label {
    display: block;
    margin-bottom: 1rem;
    font-weight: bold;
    color: #333;
}
.client-name-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    background-color: white;
    color: #333;
    cursor: pointer;
    transition: var(--transition);
}
.client-name-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}
.table-number-container {
    margin: 0.5rem 0 1.5rem;
    width: 100%;
}
.table-number-label {
    display: block;
    margin-bottom: 1rem;
    font-weight: bold;
    color: #333;
}
.table-number-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    background-color: white;
    color: #333;
    cursor: pointer;
    transition: var(--transition);
}
.table-number-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}
.reservation-modal {
    display: none;
    position: fixed;
    z-index: 1004;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.reservation-modal-content {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    color: #333;
    margin-bottom: 2rem;
    position: relative;
}
.reservation-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #eee;
}
.reservation-modal-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 0;
}
.close-reservation-modal-btn {
    background: none;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
    color: #555;
    font-size: 1.2rem;
}
.close-reservation-modal-btn:hover {
    background-color: rgba(0, 0, 0, 0.1);
    color: var(--primary-color);
    transform: scale(1.05);
}
.reservation-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.form-group label {
    font-weight: bold;
    color: #333;
}
.form-group input,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    background-color: white;
    color: #333;
    cursor: pointer;
    transition: var(--transition);
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}
.submit-reservation {
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    transition: var(--transition);
    font-weight: bold;
    box-shadow: 0 4px 6px var(--shadow-color);
    width: 100%;
    padding: 0.75rem;
    cursor: pointer;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
}
.submit-reservation:hover {
    background-color: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.radio-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.radio-item input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}
.input-hint {
    font-size: 0.8rem;
    color: #666;
    margin-top: 0.2rem;
}
.input-error {
    color: #ff4444;
    font-size: 0.8rem;
    margin-top: 0.2rem;
    display: none;
}
.error-message {
    color: #ff4444;
    font-size: 0.9rem;
    margin-top: 1rem;
    text-align: center;
    display: none;
}
.cart-error-message {
    color: #ff4444;
    font-size: 0.9rem;
    margin: 1rem 0;
    text-align: center;
    display: none;
}
.waiter-error-message {
    color: #ff4444;
    font-size: 0.9rem;
    margin: 1rem 0;
    text-align: center;
    display: none;
}
@media (max-width: 600px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    .cart-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .cart-item-image-container {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    .cart-item-info {
        width: 100%;
        margin-bottom: 1rem;
        text-align: center;
    }
    .cart-actions {
        display: flex;
        justify-content: center;
        width: 100%;
        margin-bottom: 1rem;
    }
    .cart-quantity-controls {
        margin: 0;
    }
    .remove-item {
        margin-left: 10px;
    }
    .category-tabs {
        justify-content: center;
    }
}
@media (max-width: 400px) {
    .container {
        padding: 1rem;
    }
    h1 {
        font-size: 1.6rem;
    }
    .bio {
        font-size: 0.95rem;
    }
    .modal-content {
        max-width: 95%;
    }
}
ul {
    width: 100%;
    padding: 1rem 0;
    margin: 0;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    list-style: none;
}
ul li {
    margin: 0;
}
ul li a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    transition: var(--transition);
}
ul li a:hover {
    color: var(--primary-color-dark);
}
.client-comments-container {
    margin: 1.5rem 0;
    width: 100%;
}
.client-comments-label {
    display: block;
    margin-bottom: 1rem;
    font-weight: bold;
    color: #333;
}
.client-comments-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    background-color: white;
    color: #333;
    min-height: 80px;
    resize: vertical;
    transition: var(--transition);
}
.client-comments-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}
.cart-item-price-custom {
    font-weight: bold;
    color: var(--primary-color);
}
.product-price-custom {
    font-weight: bold;
    color: var(--primary-color);
}