/* resto-theme.css - Premium Black Gradient Restaurant Theme */

:root {
    --gold: #D4AF37;
    --dark-gold: #B8860B;
    --platinum: #E5E4E2;
    --black: #0A0A0A;
    --dark-gray: #1A1A1A;
    --charcoal: #2A2A2A;
    --light-charcoal: #3A3A3A;
    --gradient-1: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 50%, #2A2A2A 100%);
    --gradient-2: linear-gradient(135deg, #1A1A1A 0%, #2A2A2A 50%, #3A3A3A 100%);
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    --gradient-light: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(184, 134, 11, 0.05) 100%);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    --shadow-hover: 0 20px 50px rgba(212, 175, 55, 0.2);
    --transition: all 0.4s cubic-bezier(0.215, 0.610, 0.355, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--gradient-1);
    color: var(--platinum);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Animated Gradient Background */
.gradient-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: 
        radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(184, 134, 11, 0.03) 0%, transparent 50%),
        var(--gradient-1);
    animation: gradientShift 20s ease infinite alternate;
}

.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: 
        linear-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

/* Header Styles */
header {
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

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

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 2px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo::before {
    content: '';
    width: 40px;
    height: 40px;
    background: var(--gradient-gold);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2L15.09 8.26L22 9.27L17 14.14L18.18 21.02L12 17.77L5.82 21.02L7 14.14L2 9.27L8.91 8.26L12 2Z'/%3E%3C/svg%3E") center/contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2L15.09 8.26L22 9.27L17 14.14L18.18 21.02L12 17.77L5.82 21.02L7 14.14L2 9.27L8.91 8.26L12 2Z'/%3E%3C/svg%3E") center/contain no-repeat;
}

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

.table-display {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.table-display:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.1);
}

.table-display.takeaway {
    background: rgba(33, 37, 41, 0.8);
    border-color: rgba(108, 117, 125, 0.3);
}

.table-display.takeaway:hover {
    border-color: #6c757d;
}

.table-display i {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.2rem;
}

.table-display.takeaway i {
    background: #6c757d;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.table-number {
    font-size: 1.4rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.table-display.takeaway .table-number {
    background: #6c757d;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.restaurant-info {
    display: flex;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: rgba(229, 228, 226, 0.8);
    transition: var(--transition);
}

.info-item:hover {
    color: var(--gold);
}

.info-item i {
    color: var(--gold);
}

/* Cart Icon Styles */
.cart-icon-container {
    position: relative;
}

.cart-icon {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.3);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.cart-icon:hover {
    border-color: var(--gold);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2);
}

.cart-icon i {
    font-size: 1.5rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--gradient-gold);
    color: var(--black);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 3px 10px rgba(212, 175, 55, 0.3);
}

/* Main Content */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.page-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.page-title h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.5rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.page-title p {
    color: rgba(229, 228, 226, 0.8);
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.title-divider {
    width: 200px;
    height: 2px;
    background: var(--gradient-gold);
    margin: 2rem auto;
    border-radius: 1px;
    opacity: 0.6;
}

/* Category Navigation */
.category-nav {
    display: none;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 4rem;
    padding: 2rem;
    background: rgba(26, 26, 26, 0.6);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    backdrop-filter: blur(20px);
    position: sticky;
    top: 100px;
    z-index: 90;
}

.category-nav.active {
    display: flex;
}

.category-btn {
    background: rgba(42, 42, 42, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: rgba(229, 228, 226, 0.8);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.1rem;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.category-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.7s;
}

.category-btn:hover::before {
    left: 100%;
}

.category-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.1);
}

.category-btn.active {
    background: var(--gradient-light);
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2);
}

/* Menu Sections */
.category-section {
    display: none;
    opacity: 0;
    transform: translateY(40px);
    transition: var(--transition);
    margin-bottom: 5rem;
}

.category-section.active {
    display: block;
    animation: sectionAppear 0.8s forwards;
}

@keyframes sectionAppear {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.category-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.category-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.category-name::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: var(--gradient-gold);
    border-radius: 1px;
}

/* Menu Grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

/* Menu Item */
.menu-item {
    background: rgba(26, 26, 26, 0.6);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(20px);
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-light);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.menu-item:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--gold);
    box-shadow: var(--shadow-hover);
}

.menu-item:hover::before {
    opacity: 1;
}

.item-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-gold);
    color: var(--black);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.item-image {
    height: 280px;
    width: 100%;
    background: linear-gradient(135deg, #1A1A1A 0%, #2A2A2A 100%);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.item-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 60%, rgba(10, 10, 10, 0.8) 100%);
}

.item-image.has-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.no-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(212, 175, 55, 0.3);
    font-size: 4rem;
    position: relative;
    z-index: 1;
}

.no-image-text {
    font-size: 1.1rem;
    margin-top: 1rem;
    color: rgba(229, 228, 226, 0.5);
    font-style: italic;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    z-index: 2;
}

.item-image:hover .image-overlay {
    opacity: 1;
}

.view-image {
    background: var(--gradient-gold);
    color: var(--black);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
}

.view-image:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

.item-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.2rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.item-name {
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--platinum);
    line-height: 1.3;
    font-family: 'Cormorant Garamond', serif;
}

.item-price {
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    white-space: nowrap;
    margin-left: 1rem;
}

.item-description {
    color: rgba(229, 228, 226, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    flex-grow: 1;
    font-size: 1.05rem;
}

/* Order button on menu items */
.order-btn {
    background: var(--gradient-gold);
    color: var(--black);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 1.5rem;
    font-size: 1rem;
}

.order-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.order-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.item-variants {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.variant-title {
    font-size: 0.95rem;
    color: rgba(212, 175, 55, 0.8);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.variant-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.variant {
    background: rgba(42, 42, 42, 0.8);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.1);
    backdrop-filter: blur(10px);
}

.variant:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.1);
}

.variant-name {
    font-weight: 500;
    color: rgba(229, 228, 226, 0.9);
}

.variant-price {
    color: var(--gold);
    font-weight: 700;
}

/* Image Modal */
.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.98);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    backdrop-filter: blur(20px);
    animation: modalFadeIn 0.5s ease;
}

.image-modal.active {
    display: flex;
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    max-width: 90%;
    max-height: 90vh;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.modal-image {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 15px;
    box-shadow: 0 30px 80px rgba(212, 175, 55, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.modal-close {
    position: absolute;
    top: -60px;
    right: 0;
    background: var(--gradient-gold);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    transform: rotate(90deg) scale(1.1);
}

.image-caption {
    color: var(--platinum);
    text-align: center;
    margin-top: 2rem;
    font-size: 1.6rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
}

.image-table {
    display: inline-block;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.image-takeaway {
    display: inline-block;
    background: #6c757d;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

/* Cart Modal */
.cart-modal {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 450px;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    z-index: 4000;
    border-left: 1px solid rgba(212, 175, 55, 0.2);
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.215, 0.610, 0.355, 1);
    overflow-y: auto;
}

.cart-modal.active {
    display: block;
    transform: translateX(0);
}

.cart-header {
    padding: 2rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    position: sticky;
    top: 0;
    background: rgba(10, 10, 10, 0.98);
    z-index: 10;
}

.cart-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cart-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: transparent;
    border: none;
    color: var(--platinum);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.cart-close:hover {
    color: var(--gold);
    transform: rotate(90deg);
}

.cart-items {
    padding: 2rem;
    min-height: 300px;
}

.cart-item {
    background: rgba(26, 26, 26, 0.6);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.cart-item:hover {
    border-color: var(--gold);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.1);
}

.cart-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.8rem;
}

.cart-item-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--platinum);
    font-family: 'Cormorant Garamond', serif;
}

.cart-item-price {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    font-size: 1.3rem;
}

.cart-item-variants {
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.cart-variant {
    font-size: 0.9rem;
    color: rgba(229, 228, 226, 0.8);
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.3rem;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--gold);
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.quantity-btn:hover {
    background: var(--gradient-gold);
    color: var(--black);
    transform: scale(1.1);
}

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

.cart-item-remove {
    margin-top: 1rem;
    text-align: right;
}

.remove-btn {
    background: transparent;
    border: 1px solid rgba(255, 99, 71, 0.3);
    color: rgba(255, 99, 71, 0.8);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}

.remove-btn:hover {
    background: rgba(255, 99, 71, 0.1);
    border-color: rgba(255, 99, 71, 0.8);
}

.cart-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: rgba(229, 228, 226, 0.6);
}

.cart-footer {
    padding: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    position: sticky;
    bottom: 0;
    background: rgba(10, 10, 10, 0.98);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.total-label {
    color: rgba(229, 228, 226, 0.8);
}

.total-amount {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    font-size: 1.8rem;
}

.cart-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.checkout-btn, .clear-cart-btn {
    padding: 1rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.checkout-btn {
    background: var(--gradient-gold);
    color: var(--black);
}

.checkout-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.clear-cart-btn {
    background: transparent;
    border: 1px solid rgba(255, 99, 71, 0.3);
    color: rgba(255, 99, 71, 0.8);
}

.clear-cart-btn:hover {
    border-color: rgba(255, 99, 71, 0.8);
    background: rgba(255, 99, 71, 0.1);
}

/* Variant selection modal */
.variant-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 4001;
    align-items: center;
    justify-content: center;
}

.variant-modal.active {
    display: flex;
}

.variant-modal-content {
    background: rgba(26, 26, 26, 0.95);
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 500px;
    width: 90%;
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    backdrop-filter: blur(20px);
}

.variant-modal-header {
    margin-bottom: 2rem;
}

.variant-modal-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.variant-modal-description {
    color: rgba(229, 228, 226, 0.7);
    font-size: 1.1rem;
}

.variant-options {
    margin-bottom: 2rem;
}

.variant-option {
    background: rgba(42, 42, 42, 0.8);
    border: 2px solid rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(10px);
}

.variant-option:hover {
    border-color: var(--gold);
    transform: translateX(10px);
}

.variant-option.selected {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
}

.variant-name {
    font-weight: 500;
    color: var(--platinum);
    font-size: 1.1rem;
}

.variant-price {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    font-size: 1.2rem;
}

.variant-modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.variant-cancel-btn, .variant-add-btn {
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.variant-cancel-btn {
    background: transparent;
    border: 1px solid rgba(229, 228, 226, 0.3);
    color: rgba(229, 228, 226, 0.8);
}

.variant-cancel-btn:hover {
    border-color: var(--platinum);
    color: var(--platinum);
}

.variant-add-btn {
    background: var(--gradient-gold);
    color: var(--black);
}

.variant-add-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

/* Footer */
footer {
    background: rgba(10, 10, 10, 0.9);
    padding: 3rem 0;
    margin-top: 5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(20px);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.footer-content p {
    margin-bottom: 0.8rem;
    color: rgba(229, 228, 226, 0.7);
}

.currency-note {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

/* Loading */
.loading {
    text-align: center;
    padding: 6rem 4rem;
    font-size: 1.3rem;
    color: rgba(229, 228, 226, 0.8);
}

.loading-spinner {
    width: 80px;
    height: 80px;
    margin: 2rem auto;
    position: relative;
}

.loading-spinner::before,
.loading-spinner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 4px solid transparent;
    animation: spin 1.5s linear infinite;
}

.loading-spinner::before {
    border-top-color: var(--gold);
}

.loading-spinner::after {
    border-top-color: var(--dark-gold);
    animation-delay: 0.5s;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Error State */
.error-state {
    text-align: center;
    padding: 6rem 4rem;
    background: rgba(26, 26, 26, 0.8);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(20px);
    margin: 2rem auto;
    max-width: 800px;
}

.error-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.error-title {
    color: var(--platinum);
    margin-bottom: 1rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
}

.error-message {
    color: rgba(229, 228, 226, 0.8);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.error-hint {
    color: rgba(229, 228, 226, 0.6);
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.retry-button {
    background: var(--gradient-gold);
    color: var(--black);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.retry-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

/* Notification */
.cart-notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: rgba(26, 26, 26, 0.95);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-left: 4px solid var(--gold);
    color: var(--platinum);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 5000;
    backdrop-filter: blur(10px);
    animation: slideIn 0.3s ease, fadeOut 0.3s ease 2.7s forwards;
    box-shadow: var(--shadow);
}

.cart-notification.success {
    border-left-color: #4CAF50;
}

.cart-notification i {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.2rem;
}

.cart-notification.success i {
    background: #4CAF50;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .menu-grid {
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    }
}

@media (max-width: 992px) {
    .header-container {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .header-right {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .restaurant-info {
        justify-content: center;
    }
    
    .category-nav {
        top: 180px;
        padding: 1.5rem;
    }
    
    .page-title h1 {
        font-size: 3.5rem;
    }
    
    .category-name {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 2rem 1.5rem;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .category-btn {
        padding: 0.8rem 1.8rem;
        font-size: 1rem;
    }
    
    .page-title h1 {
        font-size: 2.8rem;
    }
    
    .category-name {
        font-size: 2.2rem;
    }
    
    .item-name {
        font-size: 1.5rem;
    }
    
    .item-price {
        font-size: 1.6rem;
    }
    
    .cart-modal {
        max-width: 100%;
    }
    
    .variant-modal-content {
        padding: 1.5rem;
    }
    
    .cart-notification {
        top: 20px;
        right: 20px;
        left: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1.5rem 1rem;
    }
    
    .page-title h1 {
        font-size: 2.2rem;
    }
    
    .page-title p {
        font-size: 1.1rem;
    }
    
    .category-name {
        font-size: 1.8rem;
    }
    
    .item-image {
        height: 220px;
    }
    
    .cart-header {
        padding: 1.5rem;
    }
    
    .cart-title {
        font-size: 1.8rem;
    }
    
    .cart-items {
        padding: 1.5rem;
    }
    
    .cart-footer {
        padding: 1.5rem;
    }
    
    .cart-total {
        font-size: 1.1rem;
    }
    
    .total-amount {
        font-size: 1.5rem;
    }
}