.section-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1.5rem;
}

.logos-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 1rem 0;
}

.logo-box {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.logo-box img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.logo-box:hover img {
    filter: grayscale(0);
    opacity: 1;
}

/* Restaurant Cards Section Enhanced */
.restaurant-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #f1f3f5;
}

.restaurant-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: #f8fafc;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.restaurant-card:hover .card-image img {
    transform: scale(1.1);
}

.card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary-color);
    color: #fff;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(var(--primary-rgb), 0.3);
}

.favorite-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.favorite-btn:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    justify-content: center;
}

.restaurant-card:hover .card-overlay {
    opacity: 1;
}

.btn-reserve {
    background: #fff;
    color: var(--primary-color);
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-reserve:hover {
    background: var(--primary-color);
    color: #fff;
}

.card-content {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.restaurant-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 6px;
    line-height: 1.3;
}

.restaurant-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: #6c757d;
}

.dot {
    opacity: 0.5;
}

.restaurant-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding: 0;
}

.rating {
    display: flex;
    align-items: center;
    gap: 6px;
}

.rating-score {
    font-weight: 700;
    color: #212529;
}

.stars {
    display: flex;
    gap: 2px;
    color: #f39c12;
    font-size: 0.75rem;
}

.stars i.filled {
    color: #f39c12;
}

.review-count {
    color: #999;
    font-size: 0.75rem;
}

.dollar {
    font-size: 0.85rem;
    font-weight: 600;
    color: #6c757d;
}

.booking-info {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #f1f3f5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
}

.time-slot {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #495057;
    font-weight: 500;
}

.availability {
    font-weight: 600;
}

.availability.open {
    color: #27ae60;
}

.availability.closed {
    color: var(--primary-color);
}

/* Global SweetAlert2 Icon Hide */
.swal2-icon {
    display: none !important;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   PREMIUM QUICK VIEW MODAL STYLES (THEME UPDATED)
   Matched with ReserveX Dark Red theme
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.rx-qv-modal {
    border-radius: 24px !important;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

.rx-qv-header {
    position: relative;
    height: 300px;
}

.rx-qv-banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rx-qv-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5); /* Darker for better visibility */
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 50; /* Higher z-index */
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.rx-qv-close:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: rotate(90deg) scale(1.1);
    color: #fff;
}

.rx-qv-rating {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #27ae60;
    color: #fff;
    padding: 4px 12px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.rx-qv-wishlist {
    position: absolute;
    bottom: 60px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color); /* Theme Red */
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.rx-qv-wishlist:hover {
    transform: scale(1.1);
}

.rx-qv-glass-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}

.rx-qv-rest-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.rx-qv-price-badge {
    background: #3498db;
    color: #fff;
    padding: 4px 12px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.9rem;
}

.rx-qv-body {
    background: #fff;
}

.rx-qv-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #111827;
}

.rx-qv-veg-icon {
    width: 18px;
    height: 18px;
    border: 1.5px solid #27ae60;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    position: relative;
    padding: 2px;
}

.rx-qv-veg-icon::after {
    content: '';
    width: 8px;
    height: 8px;
    background: #27ae60;
    border-radius: 50%;
}

.rx-qv-veg-icon.non-veg {
    border-color: var(--primary-color);
}

.rx-qv-veg-icon.non-veg::after {
    background: var(--primary-color);
}

.rx-qv-desc {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.6;
}

.rx-qv-section-label {
    font-size: 0.82rem;
    font-weight: 700;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.rx-qv-meta-val {
    font-size: 0.9rem;
    color: #4b5563;
    font-weight: 500;
}

.rx-qv-starts-label {
    font-weight: 600;
    color: #4b5563;
    font-size: 1rem;
}

.rx-qv-price-current {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary-color); /* Theme Red */
}

.rx-qv-price-old {
    font-size: 1rem;
    color: #9ca3af;
    text-decoration: line-through;
}

.rx-qv-option-group {
    border-top: 1px solid #f3f4f6;
    padding-top: 15px;
}

.rx-qv-option-title {
    font-size: 1rem;
    font-weight: 800;
    color: #111827;
}

.rx-qv-optional-tag {
    background: #f0fdf4;
    color: #22c55e;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 6px;
}

.rx-qv-required-tag {
    background: #fef2f2;
    color: var(--primary-color);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 6px;
}

.rx-qv-opt-name {
    font-size: 1rem;
    font-weight: 600;
    color: #374151;
    cursor: pointer;
}

.rx-qv-opt-price {
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
}

/* Custom Radio & Checkbox Styling */
.custom-radio-check input[type="radio"],
.custom-radio-check input[type="checkbox"] {
    appearance: none;
    background-color: #fff;
    margin: 0;
    font: inherit;
    color: #fff;
    width: 20px;
    height: 20px;
    border: 2px solid #d1d5db;
    border-radius: 50%;
    display: grid;
    place-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.custom-radio-check input[type="checkbox"] {
    border-radius: 4px;
}

.custom-radio-check input:checked {
    background-color: var(--primary-color) !important; /* Theme Red */
    border-color: var(--primary-color) !important;
}

.custom-radio-check input[type="radio"]::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    transform: scale(0);
    transition: 0.2s transform ease-in-out;
    background-color: #fff;
}

.custom-radio-check input[type="checkbox"]::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 10px;
    transform: scale(0);
    transition: 0.2s transform ease-in-out;
    color: #fff;
}

.custom-radio-check input:checked::before {
    transform: scale(1);
}

.rx-qv-footer {
    background: #fff;
    border-top: 1px solid #f1f3f5;
}

.rx-qv-total-label {
    font-weight: 700;
    color: #4b5563;
    font-size: 1rem;
}

.rx-qv-total-price {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-color); /* Theme Red */
}

.rx-qv-total-old {
    font-size: 1rem;
    color: #9ca3af;
    text-decoration: line-through;
}

.rx-qv-qty-selector, .rx-qv-opt-qty-selector {
    display: flex;
    align-items: center;
    background: #f3f4f6;
    border-radius: 12px;
    height: 48px;
    overflow: hidden;
}

.rx-qv-opt-qty-selector {
    height: 32px !important;
    border-radius: 20px !important;
}

.rx-qv-qty-selector button, .rx-qv-opt-qty-selector button {
    width: 40px;
    height: 100%;
    border: none;
    background: transparent;
    color: #6b7280;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rx-qv-qty-selector button:hover, .rx-qv-opt-qty-selector button:hover {
    background: #e5e7eb;
    color: #111827;
}

.rx-qv-qty-selector span, .rx-qv-opt-qty-selector span {
    min-width: 40px;
    text-align: center;
    font-weight: 800;
    font-size: 1.1rem;
    color: #111827;
}

.rx-qv-opt-qty-selector span {
    min-width: 26px !important;
    font-size: 0.9rem !important;
}

.rx-qv-add-btn {
    height: 48px;
    background: var(--primary-color); /* Theme Red */
    color: #fff !important;
    border: none !important;
    border-radius: 12px !important;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.rx-qv-add-btn:hover:not(:disabled) {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(var(--primary-rgb), 0.3);
    color: #fff !important;
}

.rx-qv-add-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    background: #6c757d;
}

.rx-qv-cancel-btn {
    height: 48px;
    background: #f3f4f6 !important;
    color: #4b5563 !important;
    border: none !important;
    border-radius: 12px !important;
    font-weight: 700;
    padding: 0 25px !important;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.rx-qv-cancel-btn:hover {
    background: #e5e7eb !important;
    color: #111827 !important;
}

@media (max-width: 767px) {
    .rx-qv-footer .w-100.d-flex.align-items-center.gap-3 {
        flex-wrap: wrap;
    }
    .rx-qv-qty-selector {
        width: 100%;
        margin-bottom: 5px;
    }
}

.rx-qv-textarea {
    background-color: #f9fafb !important;
    border: 1px solid #f3f4f6 !important;
    border-radius: 12px !important;
    font-size: 0.9rem;
    padding: 12px !important;
    transition: all 0.3s ease;
}

.rx-qv-textarea:focus {
    background-color: #fff !important;
    border-color: var(--primary-color) !important;
    box-shadow: none !important;
}

/* Spinner adjustment */
.spinner-border-sm {
    width: 1rem;
    height: 1rem;
    border-width: 0.15em;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   PREMIUM GLOBAL TOASTER (STACKFOOD STYLE)
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.rx-toast-container {
    position: fixed;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    pointer-events: none;
}

.rx-toast {
    pointer-events: auto;
    background: #fff;
    min-width: 300px;
    padding: 14px 28px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    gap: 15px;
    animation: rx-toast-in 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    border: 1px solid #f1f3f5;
}

@keyframes rx-toast-in {
    from { transform: translateY(-100px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.rx-toast.rx-toast-out {
    animation: rx-toast-out 0.3s ease forwards;
}

@keyframes rx-toast-out {
    from { transform: translateY(0) scale(1); opacity: 1; }
    to { transform: translateY(-20px) scale(0.9); opacity: 0; }
}

.rx-toast-icon-wrap {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.85rem;
    box-shadow: 0 3px 6px rgba(0,0,0,0.05);
}

.rx-toast-message {
    font-weight: 700;
    color: #111827;
    font-size: 0.95rem;
    white-space: nowrap;
}

/* Success State */
.rx-toast-success .rx-toast-icon-wrap {
    background: #e6f7ef;
    color: #27ae60;
    border: 1.5px solid #27ae60;
}
.rx-toast-success {
    border-left: 5px solid #27ae60;
}

/* Error/Warning State */
.rx-toast-error .rx-toast-icon-wrap, 
.rx-toast-warning .rx-toast-icon-wrap {
    background: #fef2f2;
    color: var(--primary-color);
    border: 1.5px solid var(--primary-color);
}
.rx-toast-error, .rx-toast-warning {
    border-left: 5px solid var(--primary-color);
}

.rx-toast-info .rx-toast-icon-wrap {
    background: #eff6ff;
    color: #3b82f6;
    border: 1.5px solid #3b82f6;
}



/* ==========================================
   COMBINED CSS FROM OTHER FILES
   ========================================== */

/* --- START: auth-premium.css --- */
/* ReserveX Premium Auth Design System */
:root {
    --auth-primary: var(--primary-color);
    --auth-primary-hover: var(--primary-dark);
    --auth-bg: #f8fafc;
    --auth-card-bg: #ffffff;
    --auth-text-main: #0f172a;
    --auth-text-muted: #64748b;
    --auth-border: #e2e8f0;
    --auth-input-bg: #f8fafc;
}

body { 
    background-color: var(--auth-bg); 
    font-family: 'Plus Jakarta Sans', sans-serif; 
}

.authincation { 
    background-color: var(--auth-bg); 
}

.authincation-content { 
    background: var(--auth-card-bg); 
    border-radius: 16px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); 
    border: 1px solid rgba(0,0,0,0.05); 
    overflow: visible; /* Allow back button to overlap if needed */
}

.auth-title { 
    font-size: 1.7rem; 
    font-weight: 800; 
    color: var(--auth-text-main); 
    margin-bottom: 0.5rem; 
}

.auth-subtitle { 
    color: var(--auth-text-muted); 
    font-weight: 500; 
    font-size: 0.95rem; 
}

/* Input Group with Icons */
.input-group-hd {
    position: relative;
    margin-bottom: 1.25rem;
}

.input-group-hd .input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--auth-text-muted);
    font-size: 1rem;
    pointer-events: none;
    transition: color 0.2s;
    z-index: 5;
}

.form-control-hd { 
    background-color: var(--auth-input-bg); 
    border: 1px solid var(--auth-border); 
    border-radius: 10px; 
    padding: 0.75rem 1rem 0.75rem 42px; /* Extra left padding for icon */
    font-size: 0.95rem; 
    font-weight: 500; 
    color: var(--auth-text-main); 
    transition: all 0.2s ease; 
    width: 100%; 
    box-sizing: border-box; 
    height: 48px;
}

.form-control-hd:focus { 
    background-color: #fff; 
    border-color: var(--auth-primary); 
    box-shadow: none; 
    outline: none; 
}

.form-control-hd:focus + .input-icon {
    color: var(--auth-primary);
}

.form-label-hd { 
    font-weight: 700; 
    color: #475569; 
    margin-bottom: 0.4rem; 
    display: block; 
    font-size: 0.85rem; 
}

/* Auth Buttons */
.btn-auth-hd { 
    background: var(--auth-primary); 
    color: #fff !important; 
    padding: 12px 20px; 
    border-radius: 10px; 
    font-weight: 700; 
    font-size: 1rem; 
    border: none; 
    box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.2); 
    transition: all 0.2s ease; 
    width: 100%; 
    cursor: pointer; 
    height: 48px;
}

.btn-auth-hd:hover { 
    transform: translateY(-2px); 
    box-shadow: 0 6px 16px rgba(var(--primary-rgb), 0.3); 
    background: var(--auth-primary-hover); 
}

/* Password Toggle */
.show-pass-hd {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 10;
    color: var(--auth-text-muted);
    transition: color 0.2s;
    background: none;
    border: none;
    padding: 0;
}

.show-pass-hd:hover {
    color: var(--auth-text-main);
}

.show-pass-hd.active .fa-eye { display: block; }
.show-pass-hd.active .fa-eye-slash { display: none; }
.show-pass-hd:not(.active) .fa-eye { display: none; }
.show-pass-hd:not(.active) .fa-eye-slash { display: block; }

/* Back Button */
.back-btn-rx { 
    position: absolute; 
    top: -20px; 
    left: -20px; 
    width: 45px; 
    height: 45px; 
    border-radius: 50%; 
    background: #ffffff; 
    border: 1px solid var(--auth-border); 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: var(--auth-text-muted); 
    transition: all 0.2s ease; 
    cursor: pointer; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.1); 
    z-index: 100; 
    text-decoration: none; 
}

.back-btn-rx:hover { 
    background: var(--auth-primary); 
    color: #fff; 
    border-color: var(--auth-primary); 
    transform: scale(1.1); 
}

/* Registration Steps Icons */
.step-indicator { display: flex; justify-content: center; gap: 15px; margin-bottom: 2rem; }
.step { width: 32px; height: 32px; border-radius: 50%; background: #f1f5f9; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.85rem; color: #94a3b8; border: 2px solid #e2e8f0; transition: all 0.3s ease; }
.step.active { background: var(--auth-primary); color: white; border-color: var(--auth-primary); transform: scale(1.1); }
.step.completed { background: #10b981; color: white; border-color: #10b981; }

.fade-in { animation: fadeIn 0.4s ease-out; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(5px); } to { opacity: 1; transform: translateY(0); } }

/* --- END: auth-premium.css --- */

/* --- START: footer-restored.css --- */
/* Main Footer */
.main-footer {
    background: #1a1a2e;
    color: #fff;
}

/* Footer Content */
.footer-content {
    padding: 60px 0 40px;
}

/* Brand Column */
.footer-brand {
    max-width: 280px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo svg {
    height: 40px;
    width: auto;
}

.footer-description {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

/* Footer Columns */
.footer-column {
    padding-left: 10px;
}

.footer-title {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

/* Newsletter Section */
.newsletter-section {
    margin-top: 50px;
    padding: 30px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
}

.newsletter-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.newsletter-subtitle {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    margin: 0;
}

.newsletter-form {
    display: flex;
}

.input-group {
    display: flex;
    width: 100%;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.newsletter-input {
    flex: 1;
    padding: 14px 16px;
    border: none;
    font-size: 14px;
    outline: none;
}

.newsletter-input::placeholder {
    color: #adb5bd;
}

.newsletter-btn {
    padding: 14px 24px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-btn:hover:not(:disabled) {
    background: #b91d2b;
}

/* App Download Section */
.app-download-section {
    margin-top: 40px;
    padding: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.app-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.app-subtitle {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    margin: 0;
}

.app-buttons {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: #000;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.app-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    color: #fff;
}

.app-btn i {
    font-size: 24px;
}

.app-btn-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.app-btn-text .small {
    font-size: 10px;
    opacity: 0.8;
}

.app-btn-text .big {
    font-size: 16px;
    font-weight: 600;
}

/* Footer Bottom */
.footer-bottom {
    background: #111122;
    padding: 20px 0;
}

.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.copyright {
    color: rgba(255,255,255,0.5);
    font-size: 13px;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #fff;
}

.language-selector {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.7);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    border-color: rgba(255,255,255,0.4);
    color: #fff;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    left: 24px;
    background: #25d366;
    color: #fff;
    padding: 14px 20px;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    z-index: 999;
}

.whatsapp-float:hover {
    background: #128c7e;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: #fff;
}

.whatsapp-float-mobile {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 56px;
    height: 56px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    z-index: 999;
}

/* Responsive */
@media (max-width: 991.98px) {
    .footer-content {
        padding: 40px 0 30px;
    }

    .app-buttons {
        justify-content: flex-start;
        margin-top: 20px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

/* --- END: footer-restored.css --- */

/* --- START: header-restored.css --- */
/* Header Base */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #fff;
    transition: all 0.3s ease;
}

/* Top Bar */
.header-top-bar {
    background: #2d333f;
    color: #fff;
    font-size: 13px;
}

.top-link {
    color: #fff;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.2s;
}

.top-link:hover {
    opacity: 1;
}

/* Main Navigation */
.main-nav {
    background: #fff;
    border-bottom: 1px solid #f1f3f5;
    padding: 12px 0;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* Logo */
.logo-link {
    flex-shrink: 0;
}

.logo-img {
    height: 40px;
    width: auto;
}

/* Location Icon Button */
.location-icon-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    background: transparent;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    color: #2d333f;
    font-size: 18px;
    border-radius: 8px;
    transition: background 0.2s;
}

.location-icon-btn:hover {
    background: #f1f3f5;
}

.small-dropdown-icon {
    font-size: 10px;
    color: #6c757d;
}
.search-bar-wrapper {
    flex: 1;
    max-width: 800px;
}

.search-bar {
    display: flex;
    align-items: center;
    background: #f7f8f9;
    border-radius: 8px;
    padding: 4px;
    border: 1px solid #e9ecef;
}

.search-input-group {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 12px;
}

.search-icon {
    color: #6c757d;
    font-size: 14px;
    margin-right: 10px;
}

.search-input {
    border: none;
    background: transparent;
    font-size: 14px;
    width: 100%;
    outline: none;
    color: #212529;
}

.search-input::placeholder {
    color: #adb5bd;
}

.search-divider {
    width: 1px;
    height: 24px;
    background: #dee2e6;
}

.search-date-group,
.search-time-group,
.search-people-group {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    cursor: pointer;
    transition: background 0.2s;
    border-radius: 4px;
}

.search-date-group:hover,
.search-time-group:hover,
.search-people-group:hover {
    background: #fff;
}

.search-label {
    font-size: 14px;
    font-weight: 500;
    color: #212529;
    margin-left: 8px;
    white-space: nowrap;
}

/* Compact Logo Mark */
.nav-logo-mark {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #c62828 100%);
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 15px;
    letter-spacing: 1px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    flex-shrink: 0;
}

/* Nav Links - Compact */
.header-nav-menu {
    margin-left: 24px;
}

.nav-links-list {
    gap: 4px !important;
}

.nav-menu-link {
    color: #2d333f;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 14px;
    padding: 8px 14px;
    transition: all 0.2s ease;
    border-radius: 8px;
    display: flex;
    align-items: center;
    white-space: nowrap;
    background: transparent;
    border: none;
    cursor: pointer;
}

.nav-menu-link:hover, .nav-menu-link.active {
    color: var(--primary-color);
    background: #fff5f5;
}

/* More Dropdown */
.nav-more-dropdown {
    position: relative;
}

.nav-more-btn {
    gap: 2px;
}

.nav-more-panel {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    min-width: 210px;
    z-index: 1002;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    border: 1px solid #f1f3f5;
}

.nav-more-panel.show {
    opacity: 1;
    visibility: visible;
}

.nav-more-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 20px;
    color: #2d333f;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.15s ease;
}

.nav-more-item:hover {
    background: #f8f9fa;
    color: var(--primary-color);
}

.nav-more-item i {
    width: 18px;
    text-align: center;
    font-size: 14px;
    color: #6c757d;
}

.nav-more-item:hover i {
    color: var(--primary-color);
}

/* Book a Table CTA */
.nav-cta-btn {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, #c62828 100%);
    color: #fff !important;
    padding: 9px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(var(--primary-rgb), 0.25);
    white-space: nowrap;
    letter-spacing: 0.3px;
}

.nav-cta-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 18px rgba(var(--primary-rgb), 0.35);
    background: linear-gradient(135deg, #c62828 0%, #b71c1c 100%);
}

/* Mobile CTA highlight */
.mobile-nav-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, #c62828 100%) !important;
    color: #fff !important;
    margin: 0 16px;
    border-radius: 12px !important;
    font-weight: 700 !important;
    justify-content: center;
}

.mobile-nav-cta i {
    color: #fff !important;
}

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-btn {
    background: transparent;
    border: none;
    font-size: 13px;
    color: #6c757d;
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 8px;
}

.action-btn {
    position: relative;
    background: transparent;
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 18px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.2s;
}

.action-btn:hover {
    background: #f7f8f9;
    color: var(--primary-color);
}

.action-btn.has-items {
    color: var(--primary-color);
}

.badge-count {
    position: absolute;
    top: 2px;
    right: 2px;
    background: var(--primary-color);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* User Menu */
.user-menu-wrapper {
    position: relative;
}

.user-menu-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 8px;
    transition: background 0.2s;
}

.user-menu-btn:hover {
    background: #f7f8f9;
}

.user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
}

.user-name {
    font-size: 14px;
    font-weight: 500;
    color: #212529;
}

.user-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    min-width: 280px;
    z-index: 1001;
    overflow: hidden;
}

.dropdown-header {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f7f8f9;
}

.user-avatar-large {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
}

.user-info {
    flex: 1;
}

.user-full-name {
    font-weight: 600;
    color: #212529;
}

.user-email {
    font-size: 12px;
    color: #6c757d;
}

.dropdown-divider {
    height: 1px;
    background: #e9ecef;
    margin: 8px 0;
}

.dropdown-item {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: #212529;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.2s;
    border: none;
    background: transparent;
    width: 100%;
    text-align: left;
    cursor: pointer;
}

.dropdown-item:hover {
    background: #f7f8f9;
}

.dropdown-item.text-danger {
    color: var(--primary-color);
}

/* Sign In/Up Buttons */
.sign-in-btn {
    color: #2d333f;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 15px;
    margin-right: 20px;
    transition: color 0.2s;
    padding: 8px 0;
}

.sign-in-btn:hover {
    color: var(--primary-color);
}

.sign-up-btn {
    background: var(--primary-color);
    color: #fff !important;
    padding: 10px 24px !important;
    border-radius: 8px !important;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(var(--primary-rgb), 0.2);
}

.sign-up-btn:hover {
    background: #b91d2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(var(--primary-rgb), 0.3);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    background: transparent;
    border: none;
    font-size: 20px;
    color: #212529;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: 999;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-menu.is-open {
    transform: translateX(0);
}

.mobile-search {
    padding: 20px;
    border-bottom: 1px solid #e9ecef;
}

.mobile-search-input {
    display: flex;
    align-items: center;
    background: #f7f8f9;
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 12px;
}

.mobile-search-input i {
    color: #6c757d;
    margin-right: 10px;
}

.mobile-search-input input {
    border: none;
    background: transparent;
    flex: 1;
    font-size: 16px;
    outline: none;
}

.mobile-nav-links {
    flex: 1;
    padding: 16px 0;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    color: #212529;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

.mobile-nav-link i {
    width: 24px;
    text-align: center;
    color: #6c757d;
}

.mobile-nav-divider {
    height: 1px;
    background: #e9ecef;
    margin: 16px 20px;
}

.mobile-footer {
    padding: 20px;
    border-top: 1px solid #e9ecef;
}

.mobile-vendor-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    padding: 12px;
    border: 1px solid var(--primary-color);
    border-radius: 8px;
}

/* Professional Location Popup Styles */
.professional-location-popup {
    border-radius: 20px;
    border: none;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    overflow: hidden;
}

.location-search-box {
    display: flex;
    align-items: center;
    background: #f1f3f5;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 14px 18px;
    margin-bottom: 5px;
}

.location-search-box i {
    color: #6c757d;
    margin-right: 12px;
}

.location-search-box input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 15px;
    outline: none;
    color: #212529;
}

.detect-location-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: transparent;
    border: none;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.2s;
}

.detect-location-btn:hover {
    background: #fff5f5;
}

.location-columns-popup {
    display: flex;
    border-top: 1px solid #eee;
    min-height: 400px;
}

.popup-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    border-right: 1px solid #eee;
}

.popup-column:last-child {
    border-right: none;
}

.column-title {
    font-size: 11px;
    font-weight: 800;
    color: #adb5bd;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 15px 20px 10px;
    margin: 0;
}

.custom-scrollbar {
    flex: 1;
    overflow-y: auto;
    max-height: 350px;
}

.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: #f8f9fa;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #dee2e6;
    border-radius: 10px;
}

.region-item, .state-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 20px;
    background: transparent;
    border: none;
    text-align: left;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    color: #2d3436;
}

.region-item:hover, .state-item:hover {
    background: #f8f9fa;
    color: var(--primary-color);
}

.region-item.active {
    background: #fff5f5;
    color: var(--primary-color);
    font-weight: 700;
    border-left: 3px solid var(--primary-color);
}

.state-item:hover .state-name {
    text-decoration: underline;
}

/* Scrolled State */
.main-header.is-scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .location-columns-popup {
        flex-direction: column;
    }
    .popup-column {
        border-right: none;
        border-bottom: 1px solid #eee;
    }
}

/* --- END: header-restored.css --- */

/* --- START: home-restored.css --- */
/* Page Specific Extensions */
.bg-gradient-danger {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff6b6b 100%);
}

.hero-search-wrapper {
    background: #fff;
    border-radius: 12px;
    padding: 8px;
    max-width: 950px;
    margin: 0 auto;
}

.hero-main-search {
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-field {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    color: #495057;
}

.search-field input, .search-field select {
    background: transparent;
    outline: none;
    font-weight: 500;
    margin-left: 8px;
    font-size: 15px;
}

.search-divider {
    width: 1px;
    height: 30px;
    background: #dee2e6;
}

.hero-search-btn {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.hero-search-btn:hover {
    background: #b91d2b;
}

.cuisine-card-modern {
    display: block;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 180px;
    text-decoration: none;
}

.cuisine-img-wrapper {
    height: 100%;
}

.cuisine-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.cuisine-card-modern:hover img {
    transform: scale(1.1);
}

.cuisine-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent 70%);
}

.cuisine-info {
    position: absolute;
    bottom: 20px;
    left: 0; right: 0;
    color: #fff;
}

.restaurant-card-premium {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
}

.card-image-holder {
    height: 180px;
    position: relative;
    overflow: hidden;
}

.card-image-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-badges {
    position: absolute;
    top: 15px;
    left: 15px;
}

.btn-like {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    background: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #adb5bd;
    transition: all 0.2s;
}

.btn-like:hover {
    color: var(--primary-color);
}

.neighborhood-card {
    display: block;
    border-radius: 12px;
    text-decoration: none;
    transition: transform 0.2s;
}

.neighborhood-card:hover {
    transform: translateY(-5px);
}

.step-icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 991.98px) {
    .hero-main-search {
        flex-direction: column;
        padding: 10px;
    }
    .search-divider {
        display: none;
    }
    .hero-search-btn {
        width: 100%;
    }
}

/* Premium Menu Item Card Design */
.menu-item-card-premium {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #f1f3f5;
    height: 100%;
    position: relative;
}

.menu-item-card-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.card-img-wrapper {
    position: relative;
    padding-top: 80%; /* Maintain aspect ratio */
    overflow: hidden;
}

.card-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.menu-item-card-premium:hover .card-img-wrapper img {
    transform: scale(1.1);
}

.item-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #27ae60;
    color: #fff;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
}

.item-badge.loved { background: #eb4d4b; }
.item-badge.hot { background: #f0932b; }

.add-btn-floating {
    position: absolute;
    bottom: -18px;
    right: 15px;
    width: 36px;
    height: 36px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(var(--primary-rgb), 0.4);
    border: none;
    z-index: 5;
    transition: all 0.2s;
    cursor: pointer;
}

.add-btn-floating:hover {
    transform: scale(1.1);
    background: #b91d2b;
}

.card-body-content {
    padding: 24px 15px 15px;
}

.item-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #2d3436;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-decoration: none;
}

.item-subtitle {
    font-size: 12px;
    color: #636e72;
    margin-bottom: 12px;
    display: block;
    text-decoration: none;
}

.item-price {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary-color);
}

.item-old-price {
    font-size: 14px;
    color: #b2bec3;
    text-decoration: line-through;
    margin-right: 6px;
}

.quick-view-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 10;
}

.card-img-wrapper:hover .quick-view-overlay {
    opacity: 1;
}

.btn-quick-view {
    background: rgba(255,255,255,0.9);
    color: #2d3436;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Section Styling */
.section-premium {
    padding: 60px 0;
    background: #fbfbfb;
}

.section-premium:nth-child(even) {
    background: #fff;
}

.section-label {
    background: var(--primary-color);
    color: #fff;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 15px;
}

.section-title-premium {
    font-size: 32px;
    font-weight: 800;
    color: #2d3436;
    margin-bottom: 10px;
}

.section-subtitle-premium {
    color: #636e72;
    margin-bottom: 40px;
}

@media (max-width: 767.98px) {
    .section-premium { padding: 40px 0; }
    .section-title-premium { font-size: 24px; }
}

/* --- END: home-restored.css --- */

/* --- START: my-custom-cards.css --- */
.filter-sidebar {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #dee2e6;
    position: sticky;
    top: 20px;
}

.sidebar-title {
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
}

.hero-title span {
    color: #ffd700;
}






.product-image-container {
    position: sticky;
    top: 20px;
}

.product-title {
    font-size: 2rem;
    font-weight: 700;
}

.option-group {
    border: 1px solid #eee;
}

.option-value label {
    cursor: pointer;
    transition: all 0.2s;
}

.option-value label:hover {
    background-color: #f8f9fa;
}

.option-value input[type="checkbox"],
.option-value input[type="radio"] {
    cursor: pointer;
}
.hero-title span {
    color: #ffd700;
}

.card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.menu-item-card:hover .card {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.img-wrapper {
    position: relative;
    overflow: hidden;
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.menu-item-card:hover .img-wrapper img {
    transform: scale(1.05);
}

.badges {
    position: absolute;
    bottom: 10px;
    left: 10px;
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.badge {
    font-size: 0.7rem;
    padding: 4px 8px;
    border-radius: 4px;
}

.card-body {
    padding: 15px;
}

.item-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #333;
    transition: color 0.3s;
}

.menu-item-card:hover .item-title {
    color: var(--primary-color);
}

.item-description {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.item-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .img-wrapper {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s;
    }
}

.menu-item-wrapper {
    position: relative;
}
.menu-item-wrapper {
    position: relative;
}


.quantity-input {
    width: 50px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 5px;
}
.quantity-btn {
    width: 30px;
    padding: 5px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.quantity-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* --- END: my-custom-cards.css --- */

/* --- START: my-custom-cart-checkout.css --- */

/*cart*/

.remove {
    font-size: 20px;
    color: var(--dark-color);
}
.update {
    font-size: 20px;
    color: var(--primary-color);
    cursor: pointer;
}

/*checkout*/


.method-option {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.method-option:hover {
    border-color: #c0c0c0;
}

.method-option.active {
    border-color: var(--bs-primary);
    background-color: rgba(var(--bs-primary-rgb), 0.05);
}

.method-icon {
    font-size: 1.75rem;
    color: var(--bs-primary);
    margin-right: 15px;
}

.payment-option {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-option:hover {
    border-color: #c0c0c0;
}

.payment-option.active {
    border-color: var(--bs-primary);
    background-color: rgba(var(--bs-primary-rgb), 0.05);
}

#card-element {
    min-height: 50px;
    padding: 12px;
    border-radius: 4px;
    border: 1px solid #ced4da;
}
.sticky-summary {
    position: sticky;
    top: 20px;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* --- END: my-custom-cart-checkout.css --- */

/* --- START: restaurants-modern.css --- */
/* Modern Restaurant Listing Page Styles */
.restaurants-results-container {
    padding: 30px 0;
    background: #f8f9fa;
}

.restaurant-listing-modern {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    display: flex;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid #f1f3f5;
}

.restaurant-listing-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.listing-image {
    width: 320px;
    min-width: 320px;
    position: relative;
    overflow: hidden;
}

.listing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.restaurant-listing-modern:hover .listing-image img {
    transform: scale(1.08);
}

.listing-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 2;
}

.favorite-btn-floating {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 18px;
    cursor: pointer;
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 2;
}

.favorite-btn-floating:hover {
    background: var(--primary-color);
    color: #fff;
    transform: scale(1.15);
}

.listing-content-modern {
    flex: 1;
    padding: 15px 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.listing-title-modern {
    font-size: 21px;
    font-weight: 800;
    margin-bottom: 0;
    letter-spacing: -0.5px;
}

.listing-title-modern a {
    color: #1a1f2c;
    text-decoration: none !important;
    transition: color 0.2s;
}

.listing-title-modern a:hover {
    color: var(--primary-color);
}

.meta-tag {
    display: inline-flex;
    align-items: center;
    margin-right: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #5a67d8;
    background: #ebf4ff;
    padding: 6px 14px;
    border-radius: 25px;
    transition: all 0.2s;
}

.meta-tag:hover {
    background: #5a67d8;
    color: #fff;
}

.meta-tag i {
    font-size: 11px;
}

.listing-summary {
    color: #4a5568;
    line-height: 1.7;
    font-size: 15px;
}

.listing-features-row {
    display: flex;
    gap: 12px;
}

.feature-icon {
    width: 36px;
    height: 36px;
    background: #fdf2f2;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 15px;
    transition: all 0.3s;
    border: 1px solid #fee2e2;
}

.feature-icon:hover {
    background: var(--primary-color);
    color: #fff;
    transform: rotate(8deg);
}

.listing-action-area {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #edf2f7;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.status-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 8px;
    box-shadow: 0 0 10px currentColor;
}

/* Sidebar Panel Styling */
.filter-sidebar {
    background: #fff;
    border-radius: 24px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    border: 1px solid #f1f3f5;
    position: sticky;
    top: 100px;
    z-index: 10;
}

.filter-group {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #f8f9fa;
}

.filter-group:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.filter-title {
    font-size: 15px;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-checkbox {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 32px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    color: #4a5568;
    user-select: none;
    transition: all 0.2s;
}

.filter-checkbox:hover {
    color: var(--primary-color);
    padding-left: 36px;
}

.filter-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #f1f3f5;
    border-radius: 6px;
    transition: all 0.2s;
}

.filter-checkbox:hover input ~ .checkmark {
    background-color: #e2e8f0;
}

.filter-checkbox input:checked ~ .checkmark {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.filter-checkbox input:checked ~ .checkmark:after {
    display: block;
}

.filter-checkbox .checkmark:after {
    left: 7px;
    top: 3px;
    width: 6px;
    height: 11px;
    border: solid white;
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg);
}

.price-buttons {
    display: flex;
    gap: 8px;
}

.price-btn {
    flex: 1;
    text-align: center;
    padding: 12px 0;
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    font-weight: 700;
    color: #4a5568;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.price-btn.active, .price-btn:has(input:checked) {
    background: var(--primary-color) !important;
    color: #fff !important;
    border-color: var(--primary-color) !important;
    box-shadow: 0 8px 20px rgba(var(--primary-rgb), 0.25) !important;
    transform: translateY(-2px);
}

/* Toolbar Styling */
.results-toolbar {
    background: #fff;
    padding: 18px 30px;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.03);
    border: 1px solid #f1f3f5;
}

.sort-select {
    border: 1px solid #e2e8f0;
    padding: 10px 18px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    color: #2d3748;
    outline: none;
    cursor: pointer;
    background-color: #fff;
    transition: all 0.2s;
}

.sort-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}

/* Scroll Loader */
.scroll-loader {
    padding: 20px;
    display: flex;
    justify-content: center;
    visibility: hidden;
    min-height: 10px;
}

.scroll-loader.active {
    visibility: visible;
}

/* Responsive Fixes */
@media (max-width: 1200px) {
    .listing-image {
        width: 280px;
        min-width: 280px;
    }
}

@media (max-width: 991px) {
    .restaurant-listing-modern {
        flex-direction: column;
    }
    .listing-image {
        width: 100%;
        min-width: 100%;
        height: 250px;
    }
    .listing-content-modern {
        padding: 25px;
    }
}
/* Horizontal Filter Bar V2 */
.horizontal-filter-bar {
    border: 1px solid #f1f3f5 !important;
    overflow: visible;
}

.filter-group-v2 {
    position: relative;
    min-width: 150px;
}

.filter-title-v2 {
    font-size: 13px;
    font-weight: 800;
    color: #1a1f2c;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-dropdown-v2 {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-chip-v2 {
    cursor: pointer;
    margin: 0;
}

.filter-chip-v2 input {
    display: none;
}

.filter-chip-v2 span {
    display: inline-block;
    padding: 6px 14px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #4a5568;
    transition: all 0.2s;
}

.filter-chip-v2:hover span {
    background: #e9ecef;
    border-color: #dee2e6;
}

.filter-chip-v2 input:checked + span {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.price-chip-v2 {
    cursor: pointer;
    padding: 6px 16px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    font-weight: 700;
    font-size: 13px;
    color: #4a5568;
    transition: all 0.2s;
}

.price-chip-v2.active, .price-chip-v2:has(input:checked) {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

/* Restaurant Card Modern V2 */
.restaurant-card-modern-v2 {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid #f1f3f5;
}

.restaurant-card-modern-v2:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1) !important;
}

.card-img-wrapper-v2 {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.card-img-wrapper-v2 .card-img-top {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.restaurant-card-modern-v2:hover .card-img-top {
    transform: scale(1.1);
}

.wishlist-btn-v2 {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
}

.wishlist-btn-v2:hover {
    transform: scale(1.1);
    background: #fff;
}

.featured-badge-v2 {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary-color);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.card-restaurant-name-v2 {
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 4px;
    letter-spacing: -0.3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-restaurant-name-v2 a {
    color: #1a1f2c;
    text-decoration: none;
}

.card-rating-v2 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
}

.stars-v2 {
    display: flex;
    gap: 2px;
}

.review-count-v2 {
    color: #718096;
}

.card-meta-v2 {
    font-size: 12px;
    color: #4a5568;
    font-weight: 600;
}

.meta-dot {
    margin: 0 4px;
    opacity: 0.5;
}

.booking-stat-v2 {
    font-size: 12px;
    font-weight: 700;
    color: #1a1f2c;
    background: #fff5f5;
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 6px;
    color: #c53030;
}

.tiny-icon {
    font-size: 10px;
    opacity: 0.7;
}

/* --- END: restaurants-modern.css --- */




/* ==========================================================================
   Unified HD Input Styles (Global) - ABSOLUTE FINAL FIX
   ========================================================================== */

/* 0. NEUTRAL RESET */
button, input, optgroup, select, textarea {
    margin: 0 !important;
    font-family: inherit !important;
    font-size: inherit !important;
    line-height: inherit !important;
    outline: none !important;
}

/* KILL ALL BROWSER FOCUS GLOWS */
:focus, :focus-visible, .form-control:focus, .form-control:hover, .btn:focus, input:focus, textarea:focus {
    outline: none !important;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
}

.form-label-hd {
    font-weight: 700;
    font-size: 0.85rem;
    color: #374151;
    margin-bottom: 8px;
    display: block;
}

/* 1. BASE STATES */
.input-group-hd {
    position: relative;
    display: flex;
    align-items: center;
    background: #fafbfc !important;
    border-radius: 12px !important;
    border: 1px solid #e5e7eb !important;
    width: 100%;
}

.form-control-hd {
    width: 100%;
    border: 1px solid #e5e7eb !important;
    border-radius: 12px !important;
    padding: 12px 16px 12px 45px !important;
    font-size: 0.95rem;
    color: #111827;
    background-color: #fafbfc !important;
}

.input-group-hd .input-icon {
    position: absolute;
    left: 15px;
    color: #9ca3af;
    font-size: 1rem;
    z-index: 5;
}

/* 2. THE SECRET FIX: Force inner inputs to be BORDERLESS ALWAYS if inside a group */
/* This is placed BEFORE interaction to set the base rule */
.input-group-hd .form-control-hd {
    border: 1px solid transparent !important;
    background: transparent !important;
    background-color: transparent !important;
}

/* 3. INTERACTION: APPLY DASHED BORDER */
/* We target the group AND standalone inputs */
.input-group-hd:hover,
.input-group-hd:focus-within,
.form-control-hd:hover,
.form-control-hd:focus {
    background-color: #fff !important;
    border: 1px dashed var(--primary-color) !important;
    box-shadow: none !important;
    outline: none !important;
}

/* 4. RE-ENFORCE RESET: Inner input MUST NOT get a border even on focus */
/* This rule has triple specificity to ensure it kills the interaction border above */
div.input-group-hd input.form-control-hd:focus,
div.input-group-hd input.form-control-hd:hover,
div.input-group-hd input.form-control-hd:active {
    border: 1px solid transparent !important;
    outline: none !important;
    box-shadow: none !important;
}

/* 5. AUTOFILL RESET */
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px white inset !important;
    -webkit-text-fill-color: #111827 !important;
}

/* Auth Helpers */
.show-pass-hd {
    position: absolute;
    right: 15px;
    background: transparent;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    padding: 0;
    z-index: 5;
}
.show-pass-hd .fa-eye { display: none; }
.show-pass-hd.active .fa-eye { display: inline-block; }
.show-pass-hd.active .fa-eye-slash { display: none; }

.btn-auth-hd {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 14px !important;
    width: 100% !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    cursor: pointer !important;
    box-shadow: 0 8px 20px rgba(var(--primary-rgb), 0.2) !important;
    text-align: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
}
.btn-auth-hd:hover:not(:disabled) {
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 25px rgba(var(--primary-rgb), 0.3) !important;
}

.auth-switch-link {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
}
