/* ==========================================
   9 Queen Chinese - Premium Restaurant CSS
   Color Theme: Traditional Imperial Red, Golden Amber & Charcoal Black
   Green Accent: Used Minimally for Status/Indicators
   ========================================== */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Caveat:wght@500;700&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Oswald:wght@300;400;500;600;700&display=swap');

/* CSS Variables for Premium Chinese Theme */
:root {
    --primary-color: #0B0B0D;
    /* Midnight charcoal black */
    --primary-light: #121216;
    /* Slate black for sections */
    --primary-card: #18181F;
    /* Solid dark card backgrounds */
    --accent-color: #C8102E;
    /* Imperial Chinese Red (Primary CTA & highlights) */
    --accent-hover: #A50B24;
    /* Deep crimson hover state */
    --accent-light: rgba(200, 16, 46, 0.08);
    /* Light crimson tint */
    --gold-color: #DFBA84;
    /* Metallic Gold (Titles secondary & rating stars) */
    --gold-hover: #C5A16D;
    /* Golden sand */
    --green-color: #1DC66D;
    /* Minor Green - strictly for "Open Now" or status badges */
    --text-color: #E2E8F0;
    /* Warm soft white for body text */
    --text-dark: #FFFFFF;
    /* Pure white for prominent headings */
    --text-muted: #94A3B8;
    /* Muted slate gray for secondary texts */
    --bg-white: #FFFFFF;
    --border-color: rgba(255, 255, 255, 0.06);
    /* Ultra thin dark border */
    --red-border: rgba(200, 16, 46, 0.25);
    /* Subtle red border */
    --gold-border: rgba(223, 186, 132, 0.2);
    /* Subtle luxurious gold border */

    /* Typography matching image exactly */
    --font-heading: 'Bebas Neue', sans-serif;
    /* Condensed, bold uppercase headings */
    --font-subheading: 'Oswald', sans-serif;
    /* Clean sans-serif headings */
    --font-script: 'Caveat', cursive, sans-serif;
    /* Elegant handwritten cursive */
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.25s ease;

    --wrapper-width: 1200px;
    --border-radius: 16px;
    --border-radius-lg: 24px;

    --box-shadow-subtle: 0 4px 30px rgba(0, 0, 0, 0.3);
    --box-shadow-medium: 0 10px 40px rgba(0, 0, 0, 0.5);
    --box-shadow-glow: 0 15px 40px rgba(200, 16, 46, 0.2);
    /* Deep red glow */
    --box-shadow-gold-glow: 0 15px 40px rgba(223, 186, 132, 0.1);

    /* Gradients */
    --red-gradient: linear-gradient(135deg, #FF3B53 0%, #C8102E 50%, #80001C 100%);
    --gold-gradient: linear-gradient(135deg, #F5DCA3 0%, #DFBA84 50%, #9C7844 100%);
    --dark-gradient: linear-gradient(145deg, #18181F 0%, #070709 100%);
    --overlay-gradient: linear-gradient(to bottom, rgba(11, 11, 13, 0.3) 0%, rgba(11, 11, 13, 0.92) 100%);
    --shimmer-gradient: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0) 100%);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    font-size: 16px;
}

body {
    background-color: var(--primary-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-weight: 700;
    letter-spacing: 1px;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Wrapper / Container */
.wrapper {
    max-width: var(--wrapper-width);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.section-padding {
    padding: clamp(60px, 8vw, 100px) 0;
}

/* Common Section Header */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-badge {
    display: inline-block;
    color: var(--gold-color);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
    position: relative;
    padding-bottom: 6px;
}

.section-badge::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: var(--gold-gradient);
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 16px;
    text-transform: uppercase;
    color: var(--text-dark);
}

.section-header .section-desc {
    color: var(--text-muted);
    font-size: clamp(0.95rem, 2vw, 1.1rem);
}

/* Common Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    gap: 8px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-accent {
    background: var(--red-gradient);
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(200, 16, 46, 0.35);
}

.btn-accent:hover {
    background: var(--red-gradient);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow-glow);
    filter: brightness(1.1);
}

.btn-outline {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
    border-color: var(--gold-color);
    color: var(--gold-color);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(223, 186, 132, 0.1);
}

/* Shimmer Hover Shine Effect */
.shimmer-hover::after {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 50%;
    height: 100%;
    background: var(--shimmer-gradient);
    transform: skewX(-25deg);
    transition: 0.75s;
    z-index: -1;
}

.shimmer-hover:hover::after {
    left: 125%;
}

/* Keyframes for Swing Animation */
@keyframes swing-slow {
    0% {
        transform: rotate(0deg);
    }

    20% {
        transform: rotate(10deg);
    }

    40% {
        transform: rotate(-8deg);
    }

    60% {
        transform: rotate(5deg);
    }

    80% {
        transform: rotate(-3deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.swing-hover:hover {
    animation: swing-slow 0.8s ease-in-out;
}

/* Keyframes for Floating Animation */
@keyframes float-slow {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.float-infinite {
    animation: float-slow 4s ease-in-out infinite;
}

/* Dynamic Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: var(--transition-smooth);
    padding: 20px 0;
    background: rgba(11, 11, 13, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

header.scrolled {
    padding: 12px 0;
    background: rgba(5, 5, 5, 0.98);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--box-shadow-subtle);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    display: flex;
    align-items: center;
    background: #FFFFFF;
    border-radius: 8px;
    padding: 6px 14px;
    box-shadow: var(--box-shadow-subtle);
    gap: 12px;
}

.header-logo img {
    height: 38px;
    width: auto;
    transition: var(--transition-smooth);
    filter: none;
    /* Keep original colors of the logo! */
}

header.scrolled .header-logo img {
    height: 32px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red-gradient);
    transition: var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-color);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Mobile Toggle Hamburger */
.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 101;
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #FFFFFF;
    position: absolute;
    left: 0;
    transition: var(--transition-fast);
}

.mobile-toggle span:nth-child(1) {
    top: 2px;
}

.mobile-toggle span:nth-child(2) {
    top: 11px;
}

.mobile-toggle span:nth-child(3) {
    top: 20px;
}

.mobile-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    background-color: var(--accent-color);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    background-color: var(--accent-color);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-section .wrapper {
    z-index: 2;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--overlay-gradient);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 24px;
    text-transform: uppercase;
    color: #FFFFFF;
}

.hero-content h1 span {
    color: var(--green-color);
    display: inline-block;
    font-family: var(--font-heading);
    letter-spacing: 2px;
}

.hero-content p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Featured Section - Chef Signatures */
.features-section {
    background-color: var(--primary-light);
}

.dish-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.dish-card {
    background-color: var(--primary-card);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: var(--box-shadow-subtle);
}

.dish-card:hover {
    transform: translateY(-8px);
    border-color: var(--red-border);
    box-shadow: var(--box-shadow-glow);
}

.dish-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.dish-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.dish-card:hover .dish-img-wrap img {
    transform: scale(1.08);
}

.dish-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--red-gradient);
    color: #FFFFFF;
    padding: 6px 16px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    border-radius: 20px;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.dish-content {
    
}

.dish-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    gap: 10px;
}

.dish-title {
    font-size: 1.3rem;
    text-transform: uppercase;
    color: var(--text-dark);
}

.dish-price {
    color: var(--gold-color);
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
}

.dish-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.dish-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
}

.dish-meta {
    display: flex;
    gap: 12px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.dish-meta span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.dish-order-btn {
    background: transparent;
    border: none;
    color: var(--gold-color);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-fast);
}

.dish-order-btn:hover {
    color: #FFFFFF;
}

.dish-order-btn svg {
    transition: var(--transition-fast);
}

.dish-order-btn:hover svg {
    transform: translateX(4px);
}

/* About / Story Preview Block */
.about-promo-section {
    position: relative;
    overflow: hidden;
}

.about-promo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-promo-img {
    position: relative;
}

.about-promo-img img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-medium);
    border: 1px solid var(--border-color);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary-card);
    border: 2px solid var(--gold-color);
    border-radius: var(--border-radius);
    padding: 24px;
    text-align: center;
    box-shadow: var(--box-shadow-medium);
    max-width: 180px;
}

.experience-badge h3 {
    font-size: 2rem;
    color: var(--gold-color);
    margin-bottom: 4px;
}

.experience-badge p {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    color: var(--text-dark);
}

.about-promo-text h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 20px;
    text-transform: uppercase;
    color: var(--text-dark);
    line-height: normal;
}

.about-promo-text p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.philosophy-bullets {
    margin-bottom: 32px;
    list-style: none;
}

.philosophy-bullets li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 16px;
}

.philosophy-bullets svg {
    color: var(--gold-color);
    flex-shrink: 0;
    margin-top: 4px;
}

.philosophy-bullets strong {
    color: #FFFFFF;
    display: block;
    margin-bottom: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.philosophy-bullets span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Call to Action Banner */
.cta-banner {
    background-size: cover;
    background-position: center;
    position: relative;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: radial-gradient(circle, rgba(11, 11, 13, 0.8) 0%, rgba(11, 11, 13, 0.92) 100%);
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #FFFFFF;
    line-height: normal;
}

.cta-content p {
    color: var(--text-muted);
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 35px;
}

/* Reviews / Testimonials Section */
.reviews-section {
    background-color: var(--primary-light);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.review-card {
    background-color: var(--primary-card);
    border-radius: var(--border-radius);
    padding: 32px;
    border: 1px solid var(--border-color);
    position: relative;
    transition: var(--transition-smooth);
    box-shadow: var(--box-shadow-subtle);
}

.review-card:hover {
    border-color: var(--gold-border);
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-medium);
}

.quote-icon {
    position: absolute;
    top: 24px;
    right: 32px;
    color: rgba(223, 186, 132, 0.1);
}

.stars {
    display: flex;
    gap: 4px;
    color: var(--gold-color);
    margin-bottom: 16px;
}

.review-text {
    color: var(--text-muted);
    font-style: italic;
    font-size: 0.95rem;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--accent-light);
    color: var(--gold-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    border: 1px solid var(--gold-border);
}

.reviewer-meta h4 {
    font-size: 1rem;
    text-transform: uppercase;
    color: var(--text-dark);
}

.reviewer-meta p {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* Interactive Menu Page Filters */
.menu-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-btn {
    background-color: var(--primary-light);
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--border-color);
    padding: 10px 24px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--red-gradient);
    color: #FFFFFF;
    border-color: var(--accent-color);
    box-shadow: 0 4px 15px rgba(200, 16, 46, 0.25);
}

.menu-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

/* Inner Page Banners */
.page-header {
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 120px 0 60px;
    text-align: center;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: var(--overlay-gradient);
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.breadcrumb {
    display: inline-flex;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.breadcrumb a:hover {
    color: var(--gold-color);
}

.page-header h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    text-transform: uppercase;
    color: #FFFFFF;
}

/* About philosophy grid */
.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.philosophy-card {
    background-color: var(--primary-card);
    border-radius: var(--border-radius);
    padding: 40px 32px;
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    text-align: center;
    box-shadow: var(--box-shadow-subtle);
}

.philosophy-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-border);
    box-shadow: var(--box-shadow-medium);
}

.philosophy-icon-wrap {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background-color: var(--accent-light);
    color: var(--gold-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border: 1px solid var(--gold-border);
}

.philosophy-card h3 {
    margin-bottom: 12px;
    text-transform: uppercase;
    color: var(--text-dark);
}

.philosophy-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Contact layout */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-info-panel {
    background-color: var(--primary-light);
    border-radius: var(--border-radius);
    padding: 40px;
    border: 1px solid var(--border-color);
}

.contact-info-panel h2 {
    font-size: 1.8rem;
    text-transform: uppercase;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.contact-info-panel .intro-text {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.contact-info-list {
    list-style: none;
    margin-bottom: 40px;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--accent-light);
    color: var(--gold-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid var(--gold-border);
}

.contact-info-text h4 {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 4px;
    color: var(--text-dark);
    font-weight: 500 !important;
}

.contact-info-text p,
.contact-info-text a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.contact-info-text a:hover {
    color: var(--gold-color);
}

.social-connect h3 {
    font-size: 1rem;
    text-transform: uppercase;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 500 !important;
    letter-spacing: 1.5px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-card);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    box-shadow: var(--box-shadow-subtle);
}

.social-link:hover {
    background: var(--red-gradient);
    color: #FFFFFF;
    border-color: var(--accent-color);
}

/* Contact Form Panel */
.contact-form-panel {
    background-color: var(--primary-card);
    border-radius: var(--border-radius);
    padding: 40px;
    border: 1px solid var(--border-color);
    box-shadow: var(--box-shadow-medium);
}

.contact-form-panel h3 {
    font-size: 1.8rem;
    text-transform: uppercase;
    margin-bottom: 24px;
    text-align: center;
    color: var(--text-dark);
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: var(--text-muted);
}

input,
select,
textarea {
    width: 100%;
    background-color: var(--primary-light);
    border: 1px solid var(--border-color);
    padding: 14px 18px;
    color: #FFFFFF;
    font-family: var(--font-body);
    font-size: 0.95rem;
    border-radius: 8px;
    outline: none;
    transition: var(--transition-fast);
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--gold-color);
    box-shadow: 0 0 10px rgba(223, 186, 132, 0.15);
}

textarea {
    resize: vertical;
    min-height: 120px;
}

/* Map placeholder */
.map-container {
    width: 100%;
    height: 350px;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid var(--border-color);
    margin-top: 50px;
}

/* Footer Styles (Elegant Dark Black) */
footer {
    background-color: #060608;
    border-top: 1px solid var(--border-color);
    padding: 80px 0 30px;
    color: var(--text-muted);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-about img {
    height: 55px;
    margin-bottom: 0;
}

.footer-about p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 24px;
    color: var(--text-muted);
}

.footer-column h3 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
    color: #FFFFFF;
    position: relative;
    padding-bottom: 8px;
    font-weight: 500;

}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-color);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
}

.footer-links a::before {
    content: '›';
    color: var(--accent-color);
    font-size: 1.2rem;
    line-height: 1;
}

.footer-links a:hover {
    color: var(--gold-color);
    padding-left: 5px;
}

.footer-hours-list {
    list-style: none;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-hours-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
    padding-bottom: 3px;
}

.footer-hours-list strong {
    color: #FFFFFF;
}

.footer-newsletter p {
    font-size: 0.9rem;
    margin-bottom: 16px;
    padding-left: 25px;
    position: relative;
}
.footer-newsletter p svg {
    position: absolute;
    left: 0;
    top: 2px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-form input {
    padding: 12px 16px;
    font-size: 0.85rem;
    background-color: #0E0F12;
}

.newsletter-form button {
    background: var(--red-gradient);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    cursor: pointer;
}

.newsletter-form button:hover {
    filter: brightness(1.1);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    font-size: 0.8rem;
    color: var(--text-muted);
}
.footer-bottom a {
    color: var(--accent-color) !important;
}
.footer-bottom a:hover {
    color: #fff;
}
/* Floating Action / Back to Top Button */
.floating-quote-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--red-gradient);
    color: #FFFFFF;
    border-radius: 50px;
    padding: 16px 28px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: var(--box-shadow-glow);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 99;
    border: none;
    cursor: pointer;
}

.floating-quote-btn:hover {
    transform: translateY(-5px);
    filter: brightness(1.1);
}

/* Status Badges - Minor Green use */
.status-badge-green {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--green-color);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    border: 1.5px solid var(--green-color);
    padding: 4px 12px;
    border-radius: 20px;
    background: rgba(29, 198, 109, 0.08);
}

.status-badge-green::before {
    content: '';
    width: 8px;
    height: 8px;
    background-color: var(--green-color);
    border-radius: 50%;
    display: inline-block;
    animation: blink-green 1.5s infinite;
}

@keyframes blink-green {
    0% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.3;
    }
}

/* Animations Scroll Reveal classes */
/* .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-visible {
    opacity: 1 !important;
    transform: translate(0) !important;
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
} */

/* Responsive adjustments */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 0;
        background: rgba(11, 11, 13, 0.95);
    }

    .mobile-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--dark-gradient);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 35px;
        transition: var(--transition-smooth);
        border-left: 1px solid var(--border-color);
        box-shadow: var(--box-shadow-medium);
        z-index: 100;
        backdrop-filter: blur(20px);
    }

    .nav-menu.active {
        right: 0;
    }

    .about-promo-grid,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-promo-img {
        max-width: 500px;
        margin: 0 auto;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .contact-form-panel,
    .contact-info-panel {
        padding: 24px;
    }


  
}

/* ==========================================
   9 Queen Chinese - Custom Blueprint Layouts
   Matching desidn.png Design Elements
   ========================================== */

/* Overlapping Floating Contact Info Bar */
.contact-info-bar {
    background: #FFFFFF;
    border-radius: 50px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 18px 30px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    margin: -45px auto 40px;
    position: relative;
    z-index: 10;
    border: 1px solid rgba(223, 186, 132, 0.25);
    align-items: center;
    max-width: var(--wrapper-width);
    width: calc(100% - 48px);
}

.info-bar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #1F2937;
    font-size: 0.85rem;
    font-weight: 700;
    padding-left: 20px;
}

.info-bar-item:not(:last-child) {
    border-right: 1px solid rgba(0, 0, 0, 0.08);
    padding-right: 20px;
}

.info-bar-icon {
    color: var(--accent-color);
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.info-bar-text {
    display: flex;
    flex-direction: column;
}

.info-bar-text .label {
    text-transform: uppercase;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.info-bar-text .val {
    color: #111827;
    font-size: 0.82rem;
    font-weight: 800;
}

/* Late Night Cravings Layout */
.hours-cravings-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.cravings-card {
    background: var(--primary-card);
    border: 1.5px solid var(--gold-color);
    border-radius: var(--border-radius);
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    box-shadow: var(--box-shadow-medium);
}

.cravingscardleftmain {
    display: flex;
    flex-direction: column;
    gap: 20px;

}

.cravingscardleft .phone-mockup-wrapper {
    width: 100%;
}

.cravingscardleftmain .phone-mockup-wrapper picture,
.cravingscardleftmain .phone-mockup-wrapper picture .phone-mockup-img {
    width: 100%;
    max-width: 100%;
}

.cravingscardleftmain .cravingscardleft {
    width: 100%;
}

.cravings-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: rgba(200, 16, 46, 0.05);
    border-radius: 50%;
    filter: blur(20px);
}

.cravings-content {
    flex: 1;
    z-index: 2;
}

.cravings-img {
    flex: 0.9;
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-end;
}

.cravings-img img {
    max-width: 180px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.5));
    animation: float-slow 4s ease-in-out infinite;
}

/* Welcome Collage Layout */
.welcome-collage {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 20px;
}

.collage-left {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 400px;
    box-shadow: var(--box-shadow-medium);
    border: 1px solid var(--border-color);
}

.collage-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.collage-left:hover img {
    transform: scale(1.05);
}

.brush-stroke-badge {
    position: absolute;
    top: 20px;
    left: -50px;
    padding: 10px 44px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transform: rotate(-33deg);
    z-index: 3;
    border-radius: 4px;
    background: #fff;
    color: #d9b477;
    border: 1px solid #d9b477;
    box-shadow: none;
}

.collage-right {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
}

.collage-img-small {
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 190px;
    box-shadow: var(--box-shadow-medium);
    border: 1px solid var(--border-color);
}

.collage-img-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.collage-img-small:hover img {
    transform: scale(1.05);
}

/* Feature Grid under Welcome */
.welcome-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 30px 0 35px;
}

.welcome-feature-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.welcome-feature-icon {
    color: var(--accent-color);
    margin-bottom: 12px;
}

.welcometolft .welcome-feature-icon {
    color: var(--accent-color);
}

.welcome-feature-box h4 {
    font-size: 0.85rem;
    color: #000;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.welcome-feature-box p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Specials Section Details */
.popular-dish-card {
    background: var(--primary-card);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    padding: 20px;
    text-align: center;
    transition: var(--transition-smooth);
    box-shadow: var(--box-shadow-subtle);
}

.popular-dish-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-border);
    box-shadow: var(--box-shadow-medium);
}

.popular-dish-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 16px;
    overflow: hidden;
    border: 3px solid var(--primary-light);
    box-shadow: var(--box-shadow-subtle);
}

.popular-dish-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popular-dish-card h3 {
    font-size: 1rem;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 8px;
    font-family: var(--font-body);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.popular-dish-price {
    color: var(--accent-color);
    font-size: 1.1rem;
    font-weight: 800;
}

/* Why Choose Us & Wok Graphic */
.choose-us-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.choose-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.choose-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent-light);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1.5px solid var(--red-border);
}

.choose-text h4 {
    font-size: 0.95rem;
    color: #FFFFFF;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 4px;
}

.choose-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.wok-graphic-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wok-circle-bg {
    position: absolute;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(200, 16, 46, 0.2) 0%, rgba(200, 16, 46, 0) 70%);
    border-radius: 50%;
    z-index: 1;
    animation: pulse-mint 2.5s infinite;
}

.wok-graphic-container img {
    position: relative;
    z-index: 2;
    border-radius: 50%;
    width: 280px;
    height: 280px;
    object-fit: cover;
    border: 4px solid var(--gold-color);
    box-shadow: var(--box-shadow-glow);
}

/* Delivery Logos */
.delivery-brand-logos {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: 24px;
    flex-wrap: wrap;
}

.delivery-brand-logos span {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 14px;
    border-radius: 4px;
    transition: var(--transition-fast);
}

.delivery-brand-logos span:hover {
    color: #FFFFFF;
    border-color: var(--accent-color);
}

/* Phone Mockup Overlap style */
.phone-mockup-wrapper {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.phone-mockup-img {
    max-width: 250px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6));
    border-radius: 24px;
    border: 4px solid rgba(255, 255, 255, 0.1);
}

/* Responsiveness for new layouts */
@media (max-width: 1024px) {
    .contact-info-bar {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        border-radius: var(--border-radius);
        margin-top: -30px;
    }

    .info-bar-item:not(:last-child) {
        border-right: none;
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .contact-info-bar {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .hours-cravings-grid,
    .welcome-collage,
    .choose-us-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cravings-card {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .cravings-img {
        justify-content: center;
    }

    .welcome-features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .collage-left {
        height: 300px;
    }

    .collage-right {
        grid-template-columns: 1fr 1fr;
        height: 150px;
        gap: 16px;
    }

    .collage-img-small {
        height: 100%;
    }
}


/* ========================================== 
   9 Queen Chinese - Extracted Semantic Styles 
   ========================================== */

.hero-bg-home {
    background-image: url('../images/hero-home.png');
    background-size: cover;
    background-position: center;
}

.hero-bg-menu {
    background-image: url('../images/hero-menu.jpg');
    background-size: cover;
    background-position: center;
}

.hero-bg-about {
    background-image: url('../images/hero-about.jpg');
    background-size: cover;
    background-position: center;
}

.hero-grid-split {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-tagline-script {
    font-family: var(--font-script);
  color: #fff;
  font-size: 2.2rem;
  font-style: italic;
  display: block;
  margin-bottom: 10px;
  text-transform: none;
  letter-spacing: 1px;
  text-shadow: 0px 2px 0px rgba(0,0,0,1);
}

.hero-main-heading {
    margin-bottom: 20px;
    font-weight: 900;
    line-height: 1.15;
    color: #FFFFFF;
}

.glowing-fresh-text {
    color: var(--green-color);
    text-shadow: 0 0 15px rgba(29, 198, 109, 0.4);
}

.hero-description-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    margin-bottom: 35px;
    max-width: 550px;
}

.flex-end-container {
    display: flex;
    justify-content: flex-end;
}

.hero-round-image {
    max-width: 100%;
    /* border-radius: 50%;
    box-shadow: var(--box-shadow-glow);
    border: 4px solid var(--gold-color); */
    width: 440px;
    height: 440px;
    object-fit: cover;
}

.brand-logo-img {
    height: 55px;
    object-fit: contain;
    margin: -10px 0;
}

.status-open-header {
    color: var(--green-color);
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 4px;
}

.blinking-green-dot {
    width: 6px;
    height: 6px;
    background: var(--green-color);
    border-radius: 50%;
    display: inline-block;
    animation: blink-green 1.5s infinite;
}

.hours-section-backdrop {
    /* background-color: var(--primary-light); */
    padding-top: 50px;
    /* background: url(../images/bg-fix.png);
    width: 100%;
    height: 100%;
     */
}

.badge-align-left {
    text-align: left;
    margin-bottom: 15px;
}

.hours-section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    text-transform: uppercase;
    margin-bottom: 30px;
    letter-spacing: 1px;
    color: #fff;
}

.hours-grid-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 40px;
}

.hours-row-item {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
    padding-bottom: 8px;
}

.cravings-title {
    font-size: 1.8rem;
    line-height: normal;
    margin-bottom: 6px;
    font-weight: 800;
    color: #FFFFFF;
}

.welcome-section-light {
    background-color: #FFFFFF;
    color: #374151;
}

.welcome-text-color {
    color: #374151;
}

.welcome-section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: #111827;
    margin-bottom: 20px;
}

.welcome-description-text {
    color: #4B5563;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.why-choose-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    text-transform: uppercase;
    margin-bottom: 35px;
    letter-spacing: 1px;
}

.promo-cravings-card {
    padding: 40px 30px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 20px;
    align-items: flex-end;
}

.promo-cravings-title {
    font-size: 1.6rem;
    color: #FFFFFF;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.promo-cravings-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 24px;
    line-height: 1.5;
}

.menu-order-now-box {
    background: rgba(29, 198, 109, 0.08);
    border: 2px dashed var(--mint-border);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    margin-bottom: 50px;
    box-shadow: var(--box-shadow-subtle);
}

.menu-order-title {
    color: #FFFFFF;
    font-size: 1.6rem;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.menu-order-desc {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.menu-order-btn-custom {
    font-size: 0.85rem;
    padding: 12px 32px;
    display: inline-flex;
}

.page-header-subtitle {
    color: var(--text-muted);
    max-width: 600px;
    margin: 10px auto 0;
}

.contact-hours-desc {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-color);
}

.google-map-iframe {
    border: 0;
    filter: grayscale(100%) invert(90%) contrast(90%);
}

.bg-primary-dark {
    background-color: var(--primary-color);
}

.bg-primary-slate {
    background-color: var(--primary-light);
}

.hidden-element {
    display: none;
}

.flex-justify-center {
    justify-content: center;
}

.text-white-force {
    color: #FFFFFF !important;
}

.text-gold-force {
    color: var(--gold-color) !important;
}

.text-red-bold {
    color: var(--accent-color) !important;
    font-weight: bold;
}

.text-muted-force {
    color: var(--text-muted) !important;
}

.brand-script-chinese {
    font-family: var(--font-script), cursive;
    font-style: italic;
    color: var(--green-color);
    text-transform: none;
}

.grid-reservations-split {
    grid-template-columns: 1fr 1.5fr;
}

.text-align-left {
    text-align: left;
}

.text-align-left.section-badge::after,
.reveal-left .section-badge::after {
left: 0;
transform: translateX(-0%);
}
.text-align-center {
    text-align: center;
}

.heading-style-bebas {
    font-family: var(--font-heading);
    margin-bottom: 24px;
}

.subtext-centered {
    font-size: 1rem;
    margin-bottom: 24px;
    text-align: center;
}

.w-100-btn {
    width: 100%;
    margin-top: 10px;
}

.m-b-20 {
    margin-bottom: 20px;
}

.m-t-10 {
    margin-top: 10px;
}

.img-about-cover {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.img-about-detail {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.img-brightness-tint {
    filter: brightness(0.95);
}


/* --- Automatically Extracted Inline Styles --- */

.custom-style-val-1 {
    margin-right: 4px;
}

.custom-style-val-10 {
    color: var(--green-color);
    font-family:var(--font-heading);
    font-style: italic;
    text-transform: none;
}

.custom-style-val-11 {
    display: inline-flex;
    font-size: 0.8rem;
    padding: 12px 24px;
}

.custom-style-val-12 {
    align-items: center;
}

.custom-style-val-13 {
    height: 450px;
    object-fit: cover;
    width: 100%;
}

.custom-style-val-14 {
    font-size: 1.4rem;
    text-transform: uppercase;
}

.custom-style-val-15 {
    color: var(--gold-color);
    font-size: 1.4rem;
    text-transform: uppercase;
}

.custom-style-val-16 {
    margin-top: 15px;
}

.custom-style-val-17 {
    font-family: var(--font-heading);
    margin-bottom: 12px;
    text-align: left;
}

.custom-style-val-18 {
    color: var(--gold-color);
    font-weight: bold;
}

.custom-style-val-19 {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 24px;
    text-align: center;
}

.custom-style-val-2 {
    color: var(--green-color);
}

.custom-style-val-3 {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.custom-style-val-4 {
    font-size: 0.8rem;
    padding: 12px 24px;
}

.custom-style-val-5 {
    align-items: center;
    grid-template-columns: 1fr 1.1fr;
}

.custom-style-val-6 {
    color: var(--accent-color);
    text-align: left;
}

.custom-style-val-7 {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.custom-style-val-8 {
    margin-top: 40px;
    text-align: center;
}

.custom-style-val-9 {
    align-items: flex-end;
    padding: 40px 30px;
}

/* ==========================================
   9 Queen Chinese - Central Component Styles
   Extracted from js/components.js
   ========================================== */
.brand-logo-inline {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.nav-phone-btn {
    padding: 10px 20px;
    font-size: 0.8rem;
    display: none;
}

@media (max-width: 600px) {
    .dish-img-wrap {
        width: 100% !important;
        height: auto !important;
    }
    .dish-card-inner {
        flex-direction: column !important;
    }
    .filter-btn {
        padding: 10px 14px;
        font-size: 0.55rem;
    }
    .menu-filters {
        gap: 4px;
    }
}
@media (min-width: 480px) {
    .nav-phone-btn {
        display: inline-flex;
    }
}

.nav-order-btn {
    padding: 10px 24px;
    font-size: 0.8rem;
}

.footer-logo-container {
    display: inline-block;
    background: #FFFFFF;
    padding: 6px 14px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: var(--box-shadow-subtle);
}

.footer-logo-img {
    height: 40px;
    object-fit: contain;
    display: block;
}

.footer-hours-badge-wrap {
    margin-bottom: 16px;
}

.footer-contact-address {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer-contact-phone-wrap {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-newsletter-title {
    color: #ffffff;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-weight: bold;
    letter-spacing: 1.5px;
    font-weight: 500;
}
.custQualitysec {
    position: relative;
}
.custQualitysec::before {
content: "";
width: 376px;
height: 100%;
position: absolute;
left: 0;
top: 0;
background: url(../images/qualityfirstlft.png);
background-repeat: no-repeat;
background-size: cover;
}
.custQualitysec::after {
    content: "";
    width: 469px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    background: url(../images/qualityfirstRt.png);
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
    }
    .custQualitysec .choose-us-layout {
position: relative;
z-index: 2;
    }
    @media (max-width: 600px) {
        .hero-grid-split {
            grid-template-columns: 1fr;
        }
        .nav-order-btn {
            padding: 10px 10px;
        }
        .hero-round-image {
            width: 200px;
            height: 200px;
        }
        .hero-content h1 {
            font-size: clamp(2.2rem, 6vw, 4.5rem);
        }
        .hero-tagline-script {
            font-size: 1.7rem;
        }
        .hero-content p {
            margin-bottom: 10px;
        }
        .flex-end-container {
            justify-content: center;
        }
        .hours-grid-columns {
            grid-template-columns: 1fr;
        }
        .custom-style-val-5 {
            grid-template-columns: 1fr;
        }
    }
/* ==========================================
   New Menu Page & Component Custom Styles
   (Matches menucopy.png design with NO inline CSS)
   ========================================== */

.category-header-bar {
    background-color: #537678;
    color: #FFFFFF;
    padding: 14px 22px;
    border-radius: 8px 8px 0 0;
    margin-top: 36px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.category-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    letter-spacing: 1px;
    color: #FFFFFF;
    margin: 0;
    text-transform: uppercase;
}

.category-subtitle {
    font-family: var(--font-subheading);
    font-size: 0.95rem;
    color: var(--gold-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.combo-notice-banner {
    background: rgba(83, 118, 120, 0.15);
    border-left: 4px solid #537678;
    padding: 12px 18px;
    margin-bottom: 20px;
    border-radius: 4px;
    color: var(--text-color);
    font-size: 0.9rem;
    font-weight: 500;
}

.quick-category-nav {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    gap: 10px;
    padding: 12px 10px;
    background: var(--primary-card);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 25px;
    position: sticky;
    top: 70px;
    z-index: 80;
    border-radius: 8px;
}

.quick-category-nav::-webkit-scrollbar {
    height: 4px;
}

.quick-category-nav::-webkit-scrollbar-thumb {
    background: #537678;
    border-radius: 4px;
}

.category-nav-link {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition-fast);
    border: 1px solid transparent;
}

.category-nav-link:hover {
    background: #537678;
    color: #FFFFFF;
    border-color: #537678;
}

.menu-items-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

@media (max-width: 992px) {
    .menu-items-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .menu-items-grid {
        grid-template-columns: 1fr;
    }
}

.dish-card {
    background: var(--primary-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.dish-card:hover {
    border-color: #537678;
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
    transform: translateY(-2px);
}

.dish-card-inner {
    padding: 16px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    height: 100%;
}

.dish-img-wrap {
    width: 85px;
    height: 85px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    background: #000;
}

.dish-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dish-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.dish-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 6px;
}

.dish-title {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.25;
}

.dish-price {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--gold-color);
    white-space: nowrap;
}

.dish-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.4;
    margin: 0 0 12px 0;
    flex-grow: 1;
}

.dish-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 8px;
}

.dish-badges {
    display: none;
    align-items: center;
    gap: 4px;
}

.badge-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

.badge-thumb {
    color: #4A90E2;
}

.badge-spicy {
    color: #FF4D4D;
}

.badge-veg {
    color: #1DC66D;
}

.dish-order-btn {
    background: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-fast);
}

.dish-order-btn:hover {
    background: var(--accent-color);
    color: #FFFFFF;
}

.btn-added-state {
    color: #FFFFFF;
    background: var(--accent-color);
}

.filter-hidden {
    display: none !important;
}

.floating-cart-widget {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: var(--primary-card);
    border: 2px solid var(--accent-color);
    color: #FFFFFF;
    border-radius: 50px;
    padding: 14px 24px;
    box-shadow: var(--box-shadow-glow);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 99;
    transform: translateY(150px);
    transition: var(--transition-smooth);
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    display: none !important;
}

.cart-accent-text {
    color: var(--accent-color);
}

.pulse-anim {
    animation: pulse-mint 0.4s ease-in-out;
}

.text-center-footer {
    text-align: center;
}

.footer-copyright-full {
    width: 100%;
}

.spin-icon-inline {
    animation: spin 1.2s linear infinite;
    margin-right: 8px;
    display: inline-block;
    vertical-align: middle;
}

.res-feedback-wrap {
    text-align: center;
    padding: 20px 0;
}

.res-success-badge {
    width: 70px;
    height: 70px;
    background-color: rgba(29, 198, 109, 0.1);
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    animation: pulse-mint 1s infinite;
}

.res-success-heading {
    color: var(--accent-color);
    font-family: var(--font-heading);
    font-size: 1.8rem;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.res-success-sub {
    color: #FFFFFF;
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.res-success-body {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 450px;
    margin: 0 auto 20px;
}

.res-another-btn {
    padding: 10px 24px;
    font-size: 0.8rem;
}


@media (max-width: 767px) {

    .hours-grid-columns {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .hours-row-item:nth-child(1) { order: 1; } /* SUN */
    .hours-row-item:nth-child(3) { order: 2; } /* MON */
    .hours-row-item:nth-child(5) { order: 3; } /* TUE */
    .hours-row-item:nth-child(7) { order: 4; } /* WED */
    .hours-row-item:nth-child(2) { order: 5; } /* THU */
    .hours-row-item:nth-child(4) { order: 6; } /* FRI */
    .hours-row-item:nth-child(6) { order: 7; } /* SAT */

}