/* Modern Professional Restaurant Design */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #e65100;
    --primary-dark: #bf360c;
    --primary-light: #ff9800;
    --secondary: #2e7d32;
    --accent: #ffc107;
    --text-dark: #1a1a2e;
    --text-medium: #4a4a6a;
    --text-light: #6b6b8a;
    --bg-white: #ffffff;
    --bg-light: #fafafa;
    --bg-cream: #fff8e1;
    --border-light: #e0e0e0;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.2);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header Styles */
.header_all {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.header_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 92%;
    max-width: 1400px;
    margin: auto;
    padding: 12px 0;
}

.header_top img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    transition: var(--transition);
}

.header_top img:hover {
    transform: scale(1.05);
}

.search-container {
    position: relative;
    width: 320px;
}

.search-container input {
    width: 100%;
    padding: 12px 44px 12px 18px;
    border-radius: 50px;
    border: 2px solid var(--border-light);
    background: var(--bg-light);
    font-size: 0.95rem;
    font-family: inherit;
    transition: var(--transition);
    outline: none;
}

.search-container input:focus {
    border-color: var(--primary);
    background: var(--bg-white);
    box-shadow: 0 0 0 4px rgba(230, 81, 0, 0.1);
}

.search-container ion-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.3rem;
    color: var(--text-light);
    cursor: pointer;
}

.carr {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.carr a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50px;
    color: white;
    font-weight: 500;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.carr a:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.carr ion-icon {
    font-size: 1.4rem;
}

/* Login Button */
.login-btn {
    background: linear-gradient(135deg, #6c757d, #495057) !important;
    padding: 10px 14px !important;
    text-decoration: none;
}

.login-btn:hover {
    background: linear-gradient(135deg, #495057, #343a40) !important;
}

.login-btn ion-icon {
    font-size: 1.2rem;
}

.user-name {
    font-size: 0.85rem;
    font-weight: 500;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    width: 90%;
    max-width: 400px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: modalSlide 0.3s ease;
}

@keyframes modalSlide {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-modal {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 1.5rem;
    color: #6c757d;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.close-modal:hover {
    background: #f8f9fa;
    color: #212529;
}

/* Login Modal Specific */
.login-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.login-header h2 {
    color: var(--dark);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.login-header h2 ion-icon {
    color: var(--primary);
}

.login-header p {
    color: #6c757d;
    font-size: 0.9rem;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #495057;
}

.form-group input {
    padding: 0.75rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
}

.form-actions {
    margin-top: 0.5rem;
}

.login-submit-btn {
    width: 100%;
    padding: 0.875rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.login-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(230, 126, 34, 0.3);
}

.login-hint {
    text-align: center;
    color: #6c757d;
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

.login-error {
    background: #fee;
    color: #c33;
    padding: 0.75rem;
    border-radius: 8px;
    font-size: 0.9rem;
    text-align: center;
}

.hidden {
    display: none !important;
}

/* Admin Button */
.admin-btn {
    background: linear-gradient(135deg, #1a1a2e, #2d2d44) !important;
    padding: 10px 14px !important;
}

.admin-btn:hover {
    background: linear-gradient(135deg, #2d2d44, #1a1a2e) !important;
    transform: translateY(-2px) scale(1.05);
}

.admin-btn ion-icon {
    font-size: 1.2rem;
}

#count {
    background: var(--accent);
    color: var(--text-dark);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    min-width: 24px;
    text-align: center;
}

.header_buttom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 92%;
    max-width: 1400px;
    margin: auto;
    padding: 14px 0;
    border-top: 1px solid var(--border-light);
}

.header_link {
    display: flex;
    gap: 32px;
}

.header_link a {
    color: var(--text-medium);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 6px 0;
    transition: var(--transition);
}

.header_link a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
    transition: var(--transition);
}

.header_link a:hover {
    color: var(--primary);
}

.header_link a:hover::after {
    width: 100%;
}

.header_food {
    display: flex;
    gap: 16px;
}

.header_food a {
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.header_food a:first-child {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: var(--shadow-md);
}

.header_food a:first-child:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

#Beverages {
    background: linear-gradient(135deg, var(--accent), #ff8f00);
    color: var(--text-dark);
    box-shadow: var(--shadow-sm);
}

#Beverages:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Hero Section */
.hero {
    width: 92%;
    max-width: 1400px;
    margin: 40px auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px;
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-cream) 100%);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,193,7,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 50px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-md);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-title span {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: 32px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.hero-btn:first-child {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: var(--shadow-md);
}

.hero-btn:first-child:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.hero-btn-secondary {
    background: var(--bg-white);
    color: var(--text-dark);
    border: 2px solid var(--border-light);
}

.hero-btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.hero-media {
    position: relative;
}

.hero-media img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
}

.hero-media img:hover {
    transform: scale(1.02);
}

/* Section Styles */
.section {
    width: 92%;
    max-width: 1400px;
    margin: 80px auto;
}

.section-head {
    text-align: center;
    margin-bottom: 48px;
}

.section-head h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.section-head h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
    margin: 16px auto 0;
}

.section-head p {
    font-size: 1.1rem;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
}

/* Offers Grid */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.offer-card {
    background: var(--bg-white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.offer-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.offer-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.offer-card p {
    color: var(--text-medium);
    font-size: 1rem;
}

/* Menu Section */
.alll {
    margin: 40px 0;
}

.alll h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 32px;
    padding: 20px;
}

.all_card {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    width: 100%;
}

.card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    border: 1px solid var(--border-light);
}

.card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

.card:hover img {
    transform: scale(1.05);
}

.card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    padding: 20px 20px 8px;
}

.card p {
    color: var(--text-medium);
    padding: 0 20px 20px;
    font-size: 0.95rem;
}

.btnn {
    display: block;
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 14px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(10px);
}

.card:hover .btnn {
    opacity: 1;
    transform: translateY(0);
}

.btnn:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.about-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-align: center;
    border: 1px solid var(--border-light);
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.about-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.about-card p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* Why Grid */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.why-item {
    background: var(--bg-white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-left: 4px solid var(--primary);
}

.why-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-lg);
}

.why-item strong {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.why-item span {
    color: var(--text-medium);
    font-size: 0.95rem;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.t-card {
    background: var(--bg-white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
}

.t-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 24px;
    font-size: 4rem;
    color: var(--primary-light);
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
}

.t-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.t-card p {
    color: var(--text-medium);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
    padding-top: 20px;
}

.t-card strong {
    color: var(--primary);
    font-weight: 600;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
}

.contact-form {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 16px 20px;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--bg-light);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary);
    background: var(--bg-white);
    box-shadow: 0 0 0 4px rgba(230, 81, 0, 0.1);
    outline: none;
}

.contact-form button {
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.contact-form button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.contact-card {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.contact-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.contact-card p {
    margin-bottom: 16px;
    font-size: 1.05rem;
    opacity: 0.95;
}

/* Cart Drawer */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    z-index: 998;
}

.cart-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.car_erea {
    position: fixed;
    top: 0;
    bottom: 0;
    right: -400px;
    width: 380px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    background: var(--bg-white);
    box-shadow: var(--shadow-xl);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.car_erea.active {
    right: 0;
}

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
}

.cart-title {
    font-size: 1.3rem;
    font-weight: 700;
}

.cart-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    color: white;
    transition: var(--transition);
}

.cart-close:hover {
    background: rgba(255,255,255,0.3);
    transform: rotate(90deg);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    background: var(--bg-light);
}

.cart-item {
    display: grid;
    grid-template-columns: 70px 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 16px;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.cart-item:hover {
    box-shadow: var(--shadow-md);
}

.cart-item img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.cart-item-name {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.cart-item-meta {
    color: var(--text-light);
    font-size: 0.9rem;
}

.qty {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}

.qty button {
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty button:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

.qty span {
    min-width: 30px;
    text-align: center;
    font-weight: 600;
    color: var(--text-dark);
}

.remove-item {
    border: none;
    background: transparent;
    color: #e53935;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    margin-left: 8px;
    transition: var(--transition);
}

.remove-item:hover {
    text-decoration: underline;
}

.cart-footer {
    padding: 24px;
    background: var(--bg-white);
    border-top: 1px solid var(--border-light);
}

.cart-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.cart-row span {
    color: var(--text-medium);
    font-weight: 500;
}

.cart-row strong {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 700;
}

.cart-checkout {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.cart-checkout:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.cart-checkout:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 30px;
    margin-top: 100px;
}

.footer-inner {
    width: 92%;
    max-width: 1400px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.footer-inner > div:first-child strong {
    font-size: 1.8rem;
    font-weight: 700;
    display: block;
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-inner > div:first-child p {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
}

.footer-links a:hover::after {
    width: 100%;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 40px;
    }
    
    .hero-media img {
        height: 350px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header_top {
        flex-wrap: wrap;
        gap: 16px;
    }
    
    .search-container {
        width: 100%;
        order: 3;
    }
    
    .header_buttom {
        flex-direction: column;
        gap: 20px;
    }
    
    .header_link {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .header_food {
        width: 100%;
        justify-content: center;
    }
    
    .hero {
        padding: 30px 24px;
        margin: 20px auto;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .section-head h2 {
        font-size: 1.8rem;
    }
    
    .car_erea {
        width: 100%;
        right: -100%;
    }
    
    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem;
    }
    
    .all_card {
        grid-template-columns: 1fr;
    }
    
    .offers-grid,
    .about-grid,
    .why-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section {
    animation: fadeInUp 0.6s ease-out;
}

/* Featured Dishes Section */
.featured-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 24px;
    height: 600px;
}

.featured-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    cursor: pointer;
}

.featured-card:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-xl);
}

.featured-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.featured-card:hover img {
    transform: scale(1.1);
}

.featured-large {
    grid-row: 1 / 3;
}

.featured-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    transform: translateY(20px);
    opacity: 0.9;
    transition: var(--transition);
}

.featured-card:hover .featured-overlay {
    transform: translateY(0);
    opacity: 1;
}

.featured-badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--accent);
    color: var(--text-dark);
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 20px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-overlay h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.featured-overlay p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 12px;
}

.featured-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
}

/* Statistics Section */
.stats-section {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 80px 0;
    margin: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></svg>');
    background-size: 100px 100px;
    opacity: 0.3;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    width: 92%;
    max-width: 1400px;
    margin: auto;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 12px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 500;
    opacity: 0.95;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Chefs Section */
.chefs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.chef-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-align: center;
    padding-bottom: 30px;
}

.chef-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
}

.chef-image {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-cream), var(--bg-light));
}

.chef-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: var(--transition);
}

.chef-card:hover .chef-image img {
    transform: scale(1.1);
}

.chef-social {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    transition: var(--transition);
}

.chef-card:hover .chef-social {
    bottom: 20px;
}

.chef-social a {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.chef-social a:hover {
    background: var(--primary-dark);
    transform: translateY(-4px);
}

.chef-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 24px 0 8px;
}

.chef-card > p {
    color: var(--primary);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 8px;
}

.chef-card > span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: repeat(2, 250px);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    cursor: pointer;
}

.gallery-large {
    grid-row: 1 / 3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(230, 81, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay ion-icon {
    font-size: 3rem;
    color: white;
    transform: scale(0);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay ion-icon {
    transform: scale(1);
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, var(--bg-cream), var(--bg-light));
    padding: 80px 0;
    margin: 80px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.newsletter-container {
    width: 92%;
    max-width: 1000px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.newsletter-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.newsletter-content p {
    color: var(--text-medium);
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    gap: 16px;
    flex: 1;
    max-width: 500px;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 24px;
    border: 2px solid var(--border-light);
    border-radius: 50px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--bg-white);
}

.newsletter-form input:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 4px rgba(230, 81, 0, 0.1);
}

.newsletter-form button {
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    white-space: nowrap;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 90;
}

.float-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: white;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    animation: float 3s ease-in-out infinite;
}

.float-btn:hover {
    transform: scale(1.1) translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.float-whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.float-phone {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    animation-delay: 0.5s;
}

.float-top {
    background: var(--text-dark);
    animation-delay: 1s;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.float-top.visible {
    opacity: 1;
    visibility: visible;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* Glassmorphism Effects */
.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* 3D Card Effect */
.card-3d {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.card-3d:hover {
    transform: rotateY(5deg) rotateX(5deg);
}

/* Shimmer Loading Effect */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.shimmer {
    animation: shimmer 2s infinite linear;
    background: linear-gradient(to right, transparent 0%, rgba(255,255,255,0.4) 50%, transparent 100%);
    background-size: 1000px 100%;
}

/* Pulse Animation */
@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(230, 81, 0, 0.4);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(230, 81, 0, 0);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Enhanced Responsive */
@media (max-width: 1200px) {
    .featured-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        height: auto;
    }
    
    .featured-large {
        grid-row: auto;
        grid-column: 1 / 3;
    }
    
    .chefs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 200px);
    }
    
    .gallery-large {
        grid-row: 1 / 2;
        grid-column: 1 / 3;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .featured-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-large {
        grid-column: 1;
    }
    
    .featured-card {
        height: 300px;
    }
    
    .chefs-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 200px);
    }
    
    .gallery-large {
        grid-row: auto;
        grid-column: 1;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .newsletter-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .newsletter-form {
        width: 100%;
    }
    
    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }
    
    .float-btn {
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
    }
}

/* Lightbox Gallery */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

/* Professional Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    width: 92%;
    max-width: 1400px;
    margin: 0 auto 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-card {
    background: var(--bg-white);
    padding: 35px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

.contact-info-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 3px solid var(--primary);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 28px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.contact-detail strong {
    display: block;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.contact-detail p {
    color: var(--text-medium);
    line-height: 1.5;
}

.contact-detail a {
    color: var(--primary);
    font-weight: 500;
    transition: var(--transition);
}

.contact-detail a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.social-links-contact {
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
}

.social-links-contact strong {
    display: block;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 42px;
    height: 42px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--text-medium);
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

.social-icon:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.working-hours-card {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 30px 35px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    color: white;
}

.working-hours-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hours-table {
    width: 100%;
    margin-bottom: 20px;
}

.hours-table tr {
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.hours-table tr:last-child {
    border-bottom: none;
}

.hours-table td {
    padding: 12px 0;
    font-size: 1rem;
}

.hours-table td:first-child {
    font-weight: 500;
}

.hours-table td:last-child {
    text-align: right;
    font-weight: 600;
}

.hours-table .highlight {
    background: rgba(255,255,255,0.15);
    margin: 0 -35px;
    padding: 0 35px;
}

.hours-table .highlight td {
    padding: 12px 35px;
}

.delivery-hours {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.3);
}

.badge-delivery {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--accent);
    color: var(--text-dark);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.contact-form-wrapper {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
}

.contact-form-pro h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--bg-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background: var(--bg-white);
    box-shadow: 0 0 0 4px rgba(230, 81, 0, 0.1);
    outline: none;
}

.form-group select {
    cursor: pointer;
}

.form-group.full-width {
    grid-column: 1 / -1;
    margin-bottom: 10px;
}

.contact-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.contact-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Map Section */
.map-section {
    width: 92%;
    max-width: 1400px;
    margin: 0 auto;
}

.map-container {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-container iframe {
    display: block;
    filter: grayscale(20%);
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
}

.directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    background: var(--bg-white);
    color: var(--primary);
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.directions-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.menu-section {
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 50%, var(--bg-cream) 100%);
    padding: 80px 0;
}

.menu-wrapper {
    max-width: 1400px;
    margin: 0 auto 60px;
    padding: 0 4%;
}

.beverages-wrapper {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 3px dashed var(--border-light);
}

/* Category Header */
.menu-category-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    padding: 30px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    flex-wrap: wrap;
}

.menu-category-header.dark {
    background: linear-gradient(135deg, var(--text-dark), #2d2d44);
    color: white;
    border: none;
}

.category-icon-large {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    flex-shrink: 0;
    box-shadow: var(--shadow-lg);
}

.food-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.drink-icon {
    background: linear-gradient(135deg, #74b9ff, #0984e3);
}

.category-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.category-info p {
    color: var(--text-medium);
    font-size: 1rem;
}

.menu-category-header.dark .category-info p {
    color: rgba(255,255,255,0.7);
}

/* Filters */
.menu-filters {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-left: auto;
}

.filter-btn {
    padding: 12px 24px;
    background: var(--bg-light);
    border: 2px solid var(--border-light);
    border-radius: 50px;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-medium);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-color: var(--primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.menu-category-header.dark .filter-btn {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.8);
}

.menu-category-header.dark .filter-btn:hover {
    background: rgba(255,255,255,0.2);
    border-color: white;
    color: white;
}

.menu-category-header.dark .filter-btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--text-dark);
}

/* Menu Cards Container */
.menu-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

/* Premium Menu Card */
.menu-card.premium {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.menu-card.premium:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.menu-card.premium.hidden {
    display: none;
}

/* Featured/Bestseller Cards */
.menu-card.premium.featured {
    border: 2px solid var(--accent);
    background: linear-gradient(135deg, var(--bg-white), rgba(255,193,7,0.05));
}

.menu-card.premium.bestseller {
    border: 2px solid var(--primary);
    background: linear-gradient(135deg, var(--bg-white), rgba(230,81,0,0.05));
}

.featured-ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(135deg, var(--accent), #ff8f00);
    color: var(--text-dark);
    padding: 8px 40px;
    font-size: 0.85rem;
    font-weight: 700;
    transform: rotate(45deg);
    box-shadow: var(--shadow-md);
    z-index: 1;
}

.bestseller-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: var(--shadow-md);
    z-index: 1;
}

/* Card Header */
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 25px;
    background: linear-gradient(135deg, var(--bg-light), var(--bg-white));
    border-bottom: 1px solid var(--border-light);
}

.menu-card.premium.featured .card-header,
.menu-card.premium.bestseller .card-header {
    background: linear-gradient(135deg, rgba(230,81,0,0.05), var(--bg-white));
}

.item-icon {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    flex-shrink: 0;
}

.item-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.item-icon:hover img {
    transform: scale(1.1);
}

.item-icon.green { background: linear-gradient(135deg, #55efc4, #00b894); }
.item-icon.red { background: linear-gradient(135deg, #ff6b6b, #ee5a24); }
.item-icon.blue { background: linear-gradient(135deg, #74b9ff, #0984e3); }
.item-icon.gold { background: linear-gradient(135deg, #ffd700, #ff8c00); }
.item-icon.orange { background: linear-gradient(135deg, #ffa502, #e65100); }
.item-icon.brown { background: linear-gradient(135deg, #8b4513, #a0522d); }
.item-icon.cream { background: linear-gradient(135deg, #f5f5dc, #deb887); }
.item-icon.pink { background: linear-gradient(135deg, #fd79a8, #e84393); }

.item-icon.featured-icon {
    background: linear-gradient(135deg, var(--accent), #ff6b00);
    animation: pulse 2s infinite;
}

.price-tag {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    text-align: right;
}

.price-tag small {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-medium);
}

/* Card Body */
.card-body {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-body h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.item-desc {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

/* Item Meta */
.item-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.badge.vegetarian { background: #d4edda; color: #155724; }
.badge.healthy { background: #cce5ff; color: #004085; }
.badge.spicy { background: #f8d7da; color: #721c24; }
.badge.popular { background: #fff3cd; color: #856404; }
.badge.premium { background: #d1ecf1; color: #0c5460; }
.badge.classic { background: #e2e3e5; color: #383d41; }
.badge.heavy { background: #f5c6cb; color: #721c24; }
.badge.bestseller { background: var(--primary); color: white; }
.badge.sweet { background: #f8d7da; color: #721c24; }
.badge.italian { background: #d4edda; color: #155724; }
.badge.fresh { background: #d1ecf1; color: #0c5460; }

.calories {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
    margin-left: auto;
}

/* Card Footer */
.card-footer {
    padding: 20px 25px;
    border-top: 1px solid var(--border-light);
    background: var(--bg-light);
}

.add-btn {
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.add-btn:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-md);
}

.add-btn:active {
    transform: scale(0.98);
}

/* Drink Cards - Horizontal Layout */
.menu-card.drink-card {
    display: flex;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    position: relative;
}

.menu-card.drink-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.menu-card.drink-card.hidden {
    display: none;
}

.menu-card.drink-card.popular {
    border: 2px solid #74b9ff;
}

.popular-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #74b9ff;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 1;
}

.drink-visual {
    width: 120px;
    min-height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
    overflow: hidden;
}

.drink-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.drink-visual:hover img {
    transform: scale(1.1);
}

.hot-gradient { background: linear-gradient(135deg, #ff6b6b, #ee5a24); }
.cold-gradient { background: linear-gradient(135deg, #74b9ff, #0984e3); }
.tea-gradient { background: linear-gradient(135deg, #55efc4, #00b894); }
.lemonade-gradient { background: linear-gradient(135deg, #ffeaa7, #fdcb6e); }
.soda-gradient { background: linear-gradient(135deg, #a29bfe, #6c5ce7); }
.mojito-gradient { background: linear-gradient(135deg, #00b894, #00cec9); }
.strawberry-gradient { background: linear-gradient(135deg, #fd79a8, #e84393); }
.mango-gradient { background: linear-gradient(135deg, #fdcb6e, #e17055); }
.green-gradient { background: linear-gradient(135deg, #55efc4, #00b894); }

.temp-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(255,255,255,0.9);
    color: var(--text-dark);
    padding: 4px 10px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 700;
}

.temp-badge.cold {
    color: #0984e3;
}

.drink-info {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.drink-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.drink-header h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
}

.drink-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary);
}

.drink-price span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-medium);
}

.drink-info > p {
    color: var(--text-medium);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.drink-add-btn {
    align-self: flex-end;
    width: 44px;
    height: 44px;
    background: var(--bg-light);
    border: 2px solid var(--border-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
    transition: var(--transition);
}

.drink-add-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: scale(1.1);
}

/* Responsive Menu */
@media (max-width: 1200px) {
    .menu-cards-container {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .menu-category-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .menu-filters {
        margin-left: 0;
        justify-content: center;
    }
    
    .menu-cards-container {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
    
    .menu-card.drink-card {
        flex-direction: column;
    }
    
    .drink-visual {
        width: 100%;
        height: 100px;
    }
    
    .featured-ribbon {
        right: -50px;
        font-size: 0.75rem;
    }
    
    .filter-btn {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    .price-tag {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .contact-info-card,
    .contact-form-wrapper {
        padding: 25px;
    }
    
    .hours-table .highlight {
        margin: 0 -25px;
        padding: 0 25px;
    }
    
    .hours-table .highlight td {
        padding: 12px 25px;
    }
    
    .map-container iframe {
        height: 300px;
    }
}