/* CSS RESET & VARIABLES */
:root {
    --bg-dark: #0b0806;
    --bg-mahogany: #16100c;
    --bg-bronze: #231a14;
    
    --gold-primary: #c5a880;
    --gold-light: #f0d29e;
    --gold-dark: #8c6e43;
    
    --text-light: #fcfaf7;
    --text-muted: #d1c7bd;
    --text-dark: #a89785;
    
    --crimson: #8f2d18;
    --crimson-glow: rgba(143, 45, 24, 0.4);
    --gold-glow: rgba(197, 168, 128, 0.15);
    --gold-glow-bright: rgba(240, 210, 158, 0.35);
    
    --font-display: 'Cinzel Decorative', Georgia, serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Montserrat', sans-serif;
    
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-sans);
    font-size: 15px;
    line-height: 1.6;
    overflow-x: hidden;
}

/* CUSTOM SCROLLBAR */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--gold-dark);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold-primary);
}

/* HEADER & BRANDING */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--bg-mahogany);
    border-bottom: 1px solid var(--gold-dark);
    padding: 1.2rem 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.6);
}

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

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    color: var(--gold-primary);
    font-size: 1.8rem;
    animation: pulse-glow 3s infinite ease-in-out;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--gold-light);
    letter-spacing: 2px;
    font-weight: 700;
    line-height: 1;
}

.brand-subtitle {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: 4px;
}

.header-links {
    display: flex;
    gap: 1.1rem;
    list-style: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

.header-links a {
    white-space: nowrap;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.header-links a:hover, .header-links a.active {
    color: var(--gold-light);
}

/* MAIN CONTENT STRUCTURE */
main {
    margin-top: 75px;
    padding-bottom: 5rem;
}

/* DIRECTORY TITLE BANNER */
.directory-banner {
    background: linear-gradient(180deg, var(--bg-mahogany) 0%, var(--bg-dark) 100%);
    padding: 2.2rem 2rem 1.8rem 2rem;
    text-align: center;
    border-bottom: 1px solid rgba(197, 168, 128, 0.1);
}

.directory-main-title {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: var(--gold-light);
    margin-bottom: 0.8rem;
    letter-spacing: 1px;
}

.directory-main-title span {
    color: var(--text-light);
}

.directory-tagline {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 2rem auto;
    line-height: 1.6;
}

/* PREMIUM LIVE SEARCH BAR */
.search-container {
    max-width: 650px;
    margin: 0 auto;
    position: relative;
}

.search-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    background-color: var(--bg-mahogany);
    border: 2px solid var(--gold-dark);
    border-radius: 30px;
    padding: 0.8rem 1.5rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.5), inset 0 2px 5px rgba(0,0,0,0.8);
    transition: var(--transition-smooth);
}

.search-wrapper:focus-within {
    border-color: var(--gold-primary);
    box-shadow: 0 8px 30px var(--gold-glow-bright), inset 0 2px 5px rgba(0,0,0,0.8);
}

.search-icon {
    color: var(--gold-primary);
    font-size: 1.2rem;
    margin-right: 12px;
}

#menu-search-input {
    background: none;
    border: none;
    color: var(--text-light);
    font-family: var(--font-sans);
    font-size: 1.05rem;
    width: 100%;
    outline: none;
}

#menu-search-input::placeholder {
    color: var(--text-dark);
}

.search-clear-btn {
    color: var(--text-dark);
    font-size: 1.2rem;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    background: none;
}

.search-clear-btn:hover {
    color: var(--gold-light);
}

.search-stats {
    margin-top: 10px;
    font-size: 0.85rem;
    color: var(--gold-primary);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* DUAL-COLUMN LAYOUT */
.directory-container {
    display: flex;
    gap: 2.5rem;
    max-width: 1300px;
    margin: 1.5rem auto 0 auto;
    padding: 0 1.5rem;
    position: relative;
}

/* STICKY SIDEBAR */
.sidebar {
    width: 300px;
    flex-shrink: 0;
    position: sticky;
    top: 120px;
    height: calc(100vh - 160px);
    overflow-y: auto;
    background-color: var(--bg-mahogany);
    border: 1px solid rgba(197, 168, 128, 0.25);
    border-radius: 6px;
    padding: 1.5rem;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

.sidebar-title {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--gold-light);
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-bottom: 1px solid var(--gold-dark);
    padding-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.sidebar-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0.8rem;
    border-radius: 4px;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    transition: var(--transition-smooth);
    border-left: 2px solid transparent;
    text-decoration: none;
}

.sidebar-link:hover, .sidebar-link.active {
    color: var(--gold-light);
    background-color: var(--bg-bronze);
    border-left-color: var(--gold-primary);
    padding-left: 1.1rem;
}

.sidebar-count {
    background-color: var(--bg-dark);
    color: var(--gold-primary);
    font-size: 0.75rem;
    padding: 2px 6px;
    border-radius: 10px;
    font-weight: 700;
    border: 1px solid rgba(197, 168, 128, 0.25);
}

/* MAIN CONTENT ROW LISTS & GRIDS */
.main-content {
    flex-grow: 1;
    min-width: 0;
}

.directory-section {
    margin-bottom: 2.2rem;
    scroll-margin-top: 120px;
}

.directory-section-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--gold-light);
    border-bottom: 2px solid var(--gold-dark);
    padding-bottom: 0.6rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CARD GRID STYLES */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.8rem;
}

.menu-card {
    background-color: var(--bg-mahogany);
    border: 1px solid rgba(197, 168, 128, 0.15);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    position: relative;
}

.menu-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(197, 168, 128, 0.15);
}

.menu-card.hidden {
    display: none !important;
}

.card-img-wrapper {
    position: relative;
    width: 100%;
    height: 170px;
    overflow: hidden;
    background-color: var(--bg-dark);
    border-bottom: 1px solid rgba(197, 168, 128, 0.1);
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.menu-card:hover .card-img {
    transform: scale(1.06);
}

.card-img-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-mahogany) 0%, var(--bg-bronze) 100%);
    color: var(--gold-dark);
    text-align: center;
    padding: 1rem;
}

.card-img-fallback i {
    font-size: 2.2rem;
    margin-bottom: 6px;
}

.card-img-fallback-text {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    color: var(--gold-primary);
}

.card-content {
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 0.8rem;
}

.card-header-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.card-title {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1.25;
}

.card-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    flex-grow: 1;
}

.card-price-cal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    border-top: 1px solid rgba(197, 168, 128, 0.1);
    padding-top: 0.8rem;
}

.card-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold-light);
    font-family: var(--font-sans);
}

.card-cal {
    font-size: 0.8rem;
    color: var(--gold-primary);
    font-weight: 700;
    background-color: var(--bg-dark);
    padding: 2px 6px;
    border-radius: 4px;
    border: 1px solid rgba(140, 110, 67, 0.25);
}

.card-badge-container {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 10;
    display: flex;
    gap: 6px;
}

.badge-tag {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 3px 8px;
    border-radius: 4px;
    line-height: 1.2;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}
.badge-spicy {
    background-color: var(--crimson);
    color: var(--text-light);
}
.badge-popular {
    background-color: var(--gold-dark);
    color: var(--bg-dark);
}
.badge-secret {
    background-color: #1a0f0d;
    border: 1px solid var(--crimson);
    color: var(--gold-light);
}

/* COUPONS SECTION */
.coupons-section {
    background-color: var(--bg-mahogany);
    border-top: 1px solid rgba(197, 168, 128, 0.1);
    border-bottom: 1px solid rgba(197, 168, 128, 0.1);
    padding: 2.5rem 2rem;
    text-align: center;
    scroll-margin-top: 120px;
}

.coupons-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.coupon-card {
    background-color: var(--bg-dark);
    border: 2px dashed var(--gold-dark);
    border-radius: 8px;
    padding: 2rem;
    transition: var(--transition-smooth);
    position: relative;
}

.coupon-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.coupon-discount {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    color: var(--gold-light);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.coupon-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.coupon-code-box {
    background-color: var(--bg-mahogany);
    border: 1px solid var(--gold-dark);
    color: var(--gold-light);
    font-weight: 700;
    padding: 0.7rem 1.5rem;
    border-radius: 4px;
    display: inline-block;
    font-family: var(--font-sans);
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.coupon-code-box:hover {
    background-color: var(--gold-primary);
    color: var(--bg-dark);
    border-color: var(--gold-primary);
}

.coupon-copy-tip {
    display: block;
    font-size: 0.7rem;
    color: var(--text-dark);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* LOCATION & FOOTER */
footer {
    background-color: var(--bg-mahogany);
    padding: 2.2rem 2rem 1.8rem 2rem;
    border-top: 1px solid var(--gold-dark);
}

.footer-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    border-bottom: 1px solid var(--bg-bronze);
    padding-bottom: 3rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--gold-light);
    letter-spacing: 2px;
}

.footer-about {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-col-title {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--gold-primary);
}

.footer-hours-list {
    list-style: none;
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-hours-list li {
    display: flex;
    justify-content: space-between;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.contact-item i {
    color: var(--gold-primary);
    margin-top: 3px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--bg-dark);
    border: 1px solid var(--gold-dark);
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.social-icon:hover {
    background-color: var(--gold-primary);
    color: var(--bg-dark);
    border-color: var(--gold-primary);
    transform: translateY(-2px);
}

.footer-bottom {
    max-width: 1300px;
    margin: 2rem auto 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.8rem;
    color: var(--text-dark);
    font-weight: 600;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-bottom-links a:hover {
    color: var(--gold-primary);
}

/* SCROLL ANIMATION CLASS */
.fade-in-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ANIMATIONS */
@keyframes pulse-glow {
    0%, 100% {
        text-shadow: 0 0 2px rgba(197, 168, 128, 0.4);
    }
    50% {
        text-shadow: 0 0 12px var(--gold-primary);
    }
}

/* HAMBURGER BUTTON */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    cursor: pointer;
    background: none;
    border: 1px solid rgba(197,168,128,0.35);
    border-radius: 6px;
    padding: 9px;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}
.hamburger-btn:hover { border-color: var(--gold-primary); }
.hamburger-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--gold-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}
.hamburger-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger-btn.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* MOBILE NAV OVERLAY */
.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(11,8,6,0.98);
    z-index: 1010;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    overflow-y: auto;
}
.mobile-nav.active {
    opacity: 1;
    pointer-events: all;
}
.mobile-nav-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 1.5rem;
    border-bottom: 1px solid rgba(197,168,128,0.2);
    flex-shrink: 0;
}
.mobile-nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}
.mobile-nav-brand-text {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--gold-light);
    letter-spacing: 2px;
    font-weight: 700;
}
.mobile-nav-close {
    background: none;
    border: 1px solid rgba(197,168,128,0.35);
    color: var(--gold-primary);
    width: 38px;
    height: 38px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}
.mobile-nav-close:hover { background: var(--gold-primary); color: var(--bg-dark); border-color: var(--gold-primary); }
.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    padding: 1rem 0;
}
.mobile-nav-links li { border-bottom: 1px solid rgba(197,168,128,0.08); }
.mobile-nav-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 1.1rem 1.8rem;
    color: var(--text-muted);
    text-decoration: none;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.25s ease;
}
.mobile-nav-links a:hover, .mobile-nav-links a.active {
    color: var(--gold-light);
    background-color: rgba(197,168,128,0.06);
    padding-left: 2.2rem;
}
.mobile-nav-links a.active { color: var(--gold-light); }
.mobile-nav-links a i {
    color: var(--gold-primary);
    width: 18px;
    text-align: center;
    font-size: 0.9rem;
}

/* DINING GUIDE & FAQ STYLES (SEO IMPROVEMENTS) */
.info-content-section {
    background-color: var(--bg-mahogany);
    border-top: 1px solid rgba(197, 168, 128, 0.15);
    padding: 2.5rem 2rem;
    text-align: center;
}

.info-content-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    text-align: left;
}

.info-card {
    background-color: var(--bg-dark);
    border: 1px solid rgba(197, 168, 128, 0.15);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    transition: var(--transition-smooth);
}

.info-card:hover {
    border-color: var(--gold-primary);
    box-shadow: 0 12px 30px rgba(197, 168, 128, 0.1);
}

.info-card-title {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--gold-light);
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--bg-bronze);
    padding-bottom: 0.5rem;
}

.info-card-text {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.info-card-text p {
    margin-bottom: 0.8rem;
}

.faq-section {
    background-color: var(--bg-dark);
    border-top: 1px solid rgba(197, 168, 128, 0.15);
    padding: 2.5rem 2rem;
    scroll-margin-top: 120px;
}

.faq-container {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background-color: var(--bg-mahogany);
    border: 1px solid rgba(197, 168, 128, 0.15);
    border-radius: 6px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-question-btn {
    width: 100%;
    background: none;
    border: none;
    color: var(--text-light);
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 600;
    text-align: left;
    padding: 1.2rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.faq-question-btn:hover {
    color: var(--gold-light);
    background-color: var(--bg-bronze);
}

.faq-icon {
    color: var(--gold-primary);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: var(--bg-dark);
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.faq-answer-content {
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-answer-content ul {
    margin-top: 0.5rem;
    margin-left: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.faq-item.active {
    border-color: var(--gold-primary);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 350px; /* enough space for answer */
}

/* ==========================================================================
   PREMIUM CULINARY AUTHORITY & SEO STYLES
   ========================================================================== */
.culinary-guide-section {
    background-color: var(--bg-mahogany);
    border-top: 1px solid rgba(197, 168, 128, 0.15);
    padding: 3rem 2rem;
    text-align: center;
}

.guide-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.guide-block {
    background-color: var(--bg-dark);
    border: 1px solid rgba(197, 168, 128, 0.15);
    border-radius: 8px;
    padding: 2.5rem;
    box-shadow: 0 12px 35px rgba(0,0,0,0.5);
    transition: var(--transition-smooth);
    scroll-margin-top: 120px;
}

.guide-block:hover {
    border-color: var(--gold-primary);
    box-shadow: 0 15px 40px rgba(197, 168, 128, 0.08);
}

.guide-block-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--gold-light);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--bg-bronze);
    padding-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.guide-paragraph {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.guide-paragraph strong {
    color: var(--gold-light);
}

.guide-highlight {
    color: var(--gold-light);
    font-weight: 600;
}

/* CUSTOM STEAKHOUSE COMPARISON TABLE */
.seo-table-wrapper {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: 6px;
    border: 1px solid rgba(197, 168, 128, 0.2);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.seo-table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    text-align: left;
    color: var(--text-muted);
    min-width: 600px;
}

.seo-table th {
    background-color: var(--bg-bronze);
    color: var(--gold-light);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 1rem 1.2rem;
    border-bottom: 2px solid var(--gold-dark);
}

.seo-table td {
    padding: 1rem 1.2rem;
    border-bottom: 1px solid rgba(197, 168, 128, 0.1);
}

.seo-table tr:nth-child(even) {
    background-color: rgba(22, 16, 12, 0.3);
}

.seo-table tr:hover {
    background-color: rgba(197, 168, 128, 0.05);
}

.table-badge {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

.table-badge-longhorn {
    background-color: rgba(197, 168, 128, 0.2);
    color: var(--gold-light);
    border: 1px solid var(--gold-primary);
}

.table-badge-outback {
    background-color: rgba(143, 45, 24, 0.15);
    color: #f7a08d;
    border: 1px solid var(--crimson);
}

.table-badge-roadhouse {
    background-color: rgba(140, 110, 67, 0.15);
    color: #f0d29e;
    border: 1px solid var(--gold-dark);
}

/* DONENESS SPECIFIC STYLE */
.doneness-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.doneness-card {
    background-color: var(--bg-mahogany);
    border: 1px solid rgba(197, 168, 128, 0.1);
    border-radius: 6px;
    padding: 1.5rem;
    transition: var(--transition-smooth);
}

.doneness-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-2px);
}

.doneness-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(197, 168, 128, 0.15);
    padding-bottom: 0.5rem;
    margin-bottom: 0.8rem;
}

.doneness-name {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold-light);
}

.doneness-temp {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold-primary);
    background-color: rgba(197, 168, 128, 0.1);
    border: 1px solid var(--gold-dark);
    padding: 2px 8px;
    border-radius: 20px;
}

/* RECIPE SPECIFIC CARDS */
.recipes-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.recipe-box {
    background-color: var(--bg-mahogany);
    border: 1px solid rgba(197, 168, 128, 0.15);
    border-radius: 8px;
    padding: 2rem;
}

.recipe-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.85rem;
    color: var(--gold-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.2rem;
    border-bottom: 1px solid rgba(197, 168, 128, 0.15);
    padding-bottom: 0.8rem;
}

.recipe-meta span i {
    margin-right: 6px;
}

.recipe-section-heading {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--gold-light);
    margin: 1.2rem 0 0.6rem 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.recipe-ingredients-list {
    list-style: none;
    margin: 1rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.5rem;
}

.recipe-ingredients-list li {
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.recipe-ingredients-list li i {
    color: var(--gold-primary);
    font-size: 0.8rem;
}

.recipe-steps {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.recipe-steps li {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    position: relative;
    padding-left: 2rem;
}

.recipe-steps li::before {
    content: attr(data-step);
    position: absolute;
    left: 0;
    top: 2px;
    width: 22px;
    height: 22px;
    background-color: var(--gold-dark);
    color: var(--bg-dark);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- NEW UX & LAYOUT COMPONENT STYLES --- */

/* 1. FLOATING BACK TO TOP BUTTON */
.floating-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 48px;
    height: 48px;
    background-color: var(--bg-mahogany);
    border: 2px solid var(--gold-dark);
    color: var(--gold-primary);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.6);
    z-index: 1000;
    transition: var(--transition-smooth);
    opacity: 0;
    visibility: hidden;
    outline: none;
}
.floating-btn:hover {
    background-color: var(--gold-primary);
    color: var(--bg-dark);
    border-color: var(--gold-primary);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--gold-glow-bright);
}
.floating-btn.visible {
    opacity: 1;
    visibility: visible;
}

/* 2. FLEX CARD HEIGHT UNIFORMITY & NATURAL STRETCH */
.menu-card {
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
}
.card-content {
    display: flex !important;
    flex-direction: column !important;
    flex-grow: 1 !important;
}
.card-desc {
    flex-grow: 1 !important;
}
.card-price-cal {
    margin-top: auto !important;
}

/* 3. PREMIUM STAR RATING BADGE */
.card-rating {
    font-size: 0.8rem;
    color: var(--gold-light);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
    background-color: rgba(197, 168, 128, 0.12);
    padding: 3px 8px;
    border-radius: 4px;
    border: 1px solid rgba(197, 168, 128, 0.25);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: var(--transition-smooth);
}
.card-rating i {
    color: var(--gold-light);
    font-size: 0.75rem;
}
.menu-card:hover .card-rating {
    border-color: var(--gold-primary);
    background-color: rgba(240, 210, 158, 0.18);
    box-shadow: 0 2px 8px rgba(197, 168, 128, 0.15);
}

/* 4. SECTION BACK TO TOP LINKS */
.back-to-top-link-wrapper a {
    transition: var(--transition-smooth) !important;
}
.back-to-top-link-wrapper a:hover {
    color: var(--gold-light) !important;
    transform: translateY(-2px);
}

/* 5. RESPONSIVE COMPARISON TABLE (MOBILE STACKED CARDS) */

/* RESPONSIVE LAYOUTS */
@media (max-width: 992px) {
    .directory-main-title { font-size: 2.5rem; }
    .directory-tagline { font-size: 1rem; }
    .sidebar { width: 250px; }
}

@media (max-width: 1200px) {
    header {
        padding: 0.75rem 1.2rem;
    }

    .header-container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 0;
    }

    .brand-subtitle {
        display: none;
    }

    .header-links {
        display: none !important;
    }

    .hamburger-btn {
        display: flex !important;
    }

    .mobile-nav {
        display: flex !important;
    }

    main {
        margin-top: 64px;
    }
}

@media (max-width: 768px) {
    .directory-container {
        flex-direction: column; gap: 1.5rem;
    }

    .sidebar {
        position: static;
        width: 100%;
        height: auto;
        overflow-x: auto;
        overflow-y: hidden;
        border-radius: 0;
        padding: 0.6rem 1rem;
        border-left: none;
        border-right: none;
        border-top: 1px solid rgba(197,168,128,0.2);
        border-bottom: 1px solid rgba(197,168,128,0.25);
        box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    }

    .sidebar-title {
        display: none;
    }

    .sidebar-list {
        flex-direction: row; gap: 0.5rem;
    }

    .sidebar-link {
        padding: 0.4rem 0.8rem;
        border-radius: 20px;
        border: 1px solid rgba(197,168,128,0.2);
        background-color: var(--bg-dark);
        font-size: 0.8rem;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .sidebar-link:hover, .sidebar-link.active {
        border-color: var(--gold-primary);
        background-color: var(--bg-bronze);
        padding-left: 0.8rem;
    }

    .directory-main-title {
        font-size: 2rem;
    }

    .directory-tagline {
        font-size: 0.95rem;
    }

    .menu-grid {
        grid-template-columns: 1fr 1fr; gap: 1rem;
    }

    .coupon-card {
        padding: 1.5rem;
    }

    .coupon-discount {
        font-size: 1.8rem;
    }

    .footer-grid {
        grid-template-columns: 1fr; gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column; gap: 1rem; align-items: center; text-align: center;
    }

    .footer-bottom-links {
        flex-wrap: wrap; justify-content: center; gap: 1rem;
    }
}

@media (max-width: 480px) {
    .menu-grid { grid-template-columns: 1fr; }
    .directory-main-title { font-size: 1.7rem; }
    .directory-section-title { font-size: 1.5rem; }
    .directory-banner { padding: 1.5rem 1rem 1.2rem; }
}

@media (max-width: 768px) {
    .seo-table-wrapper {
        border: none !important;
        box-shadow: none !important;
        margin: 1.5rem 0 !important;
    }
    .seo-table, 
    .seo-table tbody, 
    .seo-table tr, 
    .seo-table td {
        display: block !important;
        width: 100% !important;
    }
    .seo-table thead {
        display: none !important;
    }
    .seo-table tr {
        background-color: var(--bg-mahogany) !important;
        border: 1px solid rgba(197, 168, 128, 0.2) !important;
        border-radius: 6px !important;
        margin-bottom: 1.5rem !important;
        padding: 1.2rem !important;
        box-shadow: 0 5px 15px rgba(0,0,0,0.4) !important;
    }
    .seo-table tr:hover {
        background-color: var(--bg-mahogany) !important;
        border-color: var(--gold-primary) !important;
    }
    .seo-table td {
        border-bottom: 1px solid rgba(197, 168, 128, 0.1) !important;
        padding: 0.8rem 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.3rem !important;
        text-align: left !important;
    }
    .seo-table td:last-child {
        border-bottom: none !important;
    }
    .seo-table td::before {
        content: attr(data-label);
        font-weight: 700 !important;
        color: var(--gold-light) !important;
        text-transform: uppercase !important;
        font-size: 0.75rem !important;
        letter-spacing: 0.5px !important;
    }
    .seo-table td .table-badge {
        display: inline-block !important;
        margin-top: 2px !important;
    }
}

/* MOBILE RESPONSIVE REFINE FIX */
@media (max-width: 768px) {
    .legal-content-box {
        padding: 2rem 1.5rem !important;
    }
    .legal-content-box h2 {
        font-size: 1.5rem !important;
    }
    .legal-content-box h3 {
        font-size: 1.3rem !important;
    }
}
@media (max-width: 480px) {
    .brand-title {
        font-size: 1.1rem !important;
        letter-spacing: 1px !important;
    }
    .directory-container {
        padding: 0 0.8rem !important;
    }
    .legal-content-box {
        padding: 1.5rem 1rem !important;
    }
    .legal-content-box h2 {
        font-size: 1.35rem !important;
    }
    .legal-content-box h3 {
        font-size: 1.15rem !important;
    }
    .legal-content-box ul, 
    .legal-content-box ol {
        margin-left: 1.2rem !important;
    }
}


/* Added from about-us.html */
/* CSS RESET & VARIABLES */
        :root {
            --bg-dark: #0b0806;
            --bg-mahogany: #16100c;
            --bg-bronze: #231a14;
            
            --gold-primary: #c5a880;
            --gold-light: #f0d29e;
            --gold-dark: #8c6e43;
            
            --text-light: #fcfaf7;
            --text-muted: #d1c7bd;
            --text-dark: #a89785;
            
            --crimson: #8f2d18;
            --crimson-glow: rgba(143, 45, 24, 0.4);
            --gold-glow: rgba(197, 168, 128, 0.15);
            --gold-glow-bright: rgba(240, 210, 158, 0.35);
            
            --font-display: 'Cinzel Decorative', Georgia, serif;
            --font-serif: 'Playfair Display', Georgia, serif;
            --font-sans: 'Montserrat', sans-serif;
            
            --transition-smooth: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);}

/* Added from about-us.html */
/* CUSTOM SCROLLBAR */
        ::-webkit-scrollbar {
            width: 8px;
            height: 8px;}

/* Added from about-us.html */
/* HEADER & BRANDING */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background-color: var(--bg-mahogany);
            border-bottom: 1px solid var(--gold-dark);
            padding: 1.2rem 2rem;
            box-shadow: 0 4px 20px rgba(0,0,0,0.6);}

/* Added from about-us.html */
/* MAIN CONTENT STRUCTURE */
        main {
            margin-top: 75px;
            padding-bottom: 5rem;}

/* Added from about-us.html */
/* BANNER */
        .directory-banner {
            background: linear-gradient(180deg, var(--bg-mahogany) 0%, var(--bg-dark) 100%);
            padding: 2.2rem 2rem 1.8rem 2rem;
            text-align: center;
            border-bottom: 1px solid rgba(197, 168, 128, 0.1);}

/* Added from about-us.html */
/* DUAL-COLUMN LAYOUT */
        .directory-container {
            display: flex;
            gap: 2.5rem;
            max-width: 1300px;
            margin: 1.5rem auto 0 auto;
            padding: 0 1.5rem;
            position: relative;}

/* Added from about-us.html */
/* STICKY SIDEBAR */
        .sidebar {
            width: 300px;
            flex-shrink: 0;
            position: sticky;
            top: 120px;
            height: calc(100vh - 160px);
            overflow-y: auto;
            background-color: var(--bg-mahogany);
            border: 1px solid rgba(197, 168, 128, 0.25);
            border-radius: 6px;
            padding: 1.5rem;
            box-shadow: 0 15px 40px rgba(0,0,0,0.6);}

/* Added from about-us.html */
/* MAIN CONTENT */
        .main-content {
            flex-grow: 1;
            min-width: 0;}

/* Added from about-us.html */
/* DEALS FILTER COMPONENT */
        .dietary-tabs {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 2.5rem;}

/* Added from about-us.html */
.dietary-btn {
            background-color: var(--bg-mahogany);
            border: 1px solid var(--gold-dark);
            color: var(--text-muted);
            padding: 10px 20px;
            border-radius: 30px;
            font-family: var(--font-sans);
            font-weight: 600;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: var(--transition-smooth);
            outline: none;
            display: flex;
            align-items: center;
            gap: 8px;}

/* Added from about-us.html */
.dietary-btn:hover {
            color: var(--gold-light);
            border-color: var(--gold-primary);
            background-color: var(--bg-bronze);}

/* Added from about-us.html */
.dietary-btn.active {
            background-color: var(--gold-primary);
            color: var(--bg-dark);
            border-color: var(--gold-primary);
            box-shadow: 0 4px 15px var(--gold-glow-bright);}

/* Added from about-us.html */
/* DEALS GRID */
        .deals-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
            gap: 1.8rem;
            transition: var(--transition-smooth);}

/* Added from about-us.html */
.deal-card {
            background-color: var(--bg-mahogany);
            border: 1px solid rgba(197, 168, 128, 0.15);
            border-radius: 8px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), 
                        opacity 0.4s ease, 
                        border-color 0.3s ease;
            opacity: 1;
            transform: scale(1);
            box-shadow: 0 10px 25px rgba(0,0,0,0.4);
            position: relative;}

/* Added from about-us.html */
.deal-card.hidden {
            display: none;
            opacity: 0;
            transform: scale(0.9);}

/* Added from about-us.html */
.deal-card:hover {
            border-color: var(--gold-primary);
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(197, 168, 128, 0.15);}

/* Added from about-us.html */
.deal-icon-header {
            height: 80px;
            background: linear-gradient(135deg, var(--bg-mahogany) 0%, var(--bg-bronze) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.2rem;
            color: var(--gold-primary);
            border-bottom: 1px solid rgba(197, 168, 128, 0.1);}

/* Added from about-us.html */
.deal-content {
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
            gap: 0.8rem;}

/* Added from about-us.html */
.deal-title {
            font-family: var(--font-serif);
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--gold-light);
            line-height: 1.25;
            text-align: center;}

/* Added from about-us.html */
.deal-value-badge {
            align-self: center;
            background-color: var(--crimson);
            color: var(--text-light);
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 4px 12px;
            border-radius: 20px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.3);}

/* Added from about-us.html */
.deal-desc {
            font-size: 0.85rem;
            color: var(--text-muted);
            line-height: 1.6;
            text-align: center;
            flex-grow: 1;}

/* Added from about-us.html */
.deal-footer {
            border-top: 1px solid rgba(197, 168, 128, 0.1);
            padding-top: 1rem;
            display: flex;
            flex-direction: column;
            gap: 10px;}

/* Added from about-us.html */
.deal-requirements {
            font-size: 0.72rem;
            color: var(--text-dark);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-weight: 700;
            text-align: center;}

/* Added from about-us.html */
.deal-action-btn {
            background-color: var(--bg-dark);
            border: 1px solid var(--gold-dark);
            color: var(--gold-primary);
            text-align: center;
            padding: 8px 16px;
            border-radius: 4px;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-decoration: none;
            transition: var(--transition-smooth);}

/* Added from about-us.html */
.deal-action-btn:hover {
            background-color: var(--gold-primary);
            color: var(--bg-dark);
            border-color: var(--gold-primary);}

/* Added from about-us.html */
/* CONSUMER ADVISORY ALERT PANEL */
        .advisory-block {
            background-color: rgba(143, 45, 24, 0.08);
            border: 2px solid var(--crimson);
            border-radius: 8px;
            padding: 2rem;
            box-shadow: 0 10px 25px rgba(0,0,0,0.5);
            margin-bottom: 3rem;
            position: relative;}

/* Added from about-us.html */
.advisory-title {
            font-family: var(--font-serif);
            font-size: 1.3rem;
            color: #f7a08d;
            margin-bottom: 0.8rem;
            display: flex;
            align-items: center;
            gap: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;}

/* Added from about-us.html */
.advisory-text {
            font-size: 0.95rem;
            color: var(--text-muted);
            line-height: 1.7;
            margin-bottom: 1.2rem;}

/* Added from about-us.html */
.advisory-fact-list {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 1.2rem;
            margin-top: 1rem;
            padding-top: 1.2rem;
            border-top: 1px solid rgba(143, 45, 24, 0.2);}

/* Added from about-us.html */
.advisory-fact-list li {
            font-size: 0.85rem;
            color: var(--text-light);
            display: flex;
            gap: 10px;}

/* Added from about-us.html */
.advisory-fact-list li i {
            color: var(--gold-primary);
            font-size: 1.1rem;
            margin-top: 2px;}

/* Added from about-us.html */
/* FAQ ACCORDION */
        .faq-section {
            background-color: var(--bg-dark);
            border-top: 1px solid rgba(197, 168, 128, 0.15);
            padding: 2.5rem 2rem;
            scroll-margin-top: 120px;}

/* Added from about-us.html */
/* FLOATING BACK TO TOP */
        .floating-btn {
            position: fixed;
            bottom: 25px;
            right: 25px;
            width: 48px;
            height: 48px;
            background-color: var(--bg-mahogany);
            border: 2px solid var(--gold-dark);
            color: var(--gold-primary);
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            box-shadow: 0 4px 15px rgba(0,0,0,0.6);
            z-index: 1000;
            transition: var(--transition-smooth);
            opacity: 0;
            visibility: hidden;
            outline: none;}

/* Added from about-us.html */
/* SCROLL ANIMATION */
        .fade-in-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;}

/* Added from about-us.html */
/* ANIMATIONS */
        @keyframes pulse-glow {
            0%, 100% { text-shadow: 0 0 2px rgba(197, 168, 128, 0.4);}

/* Added from about-us.html */
/* FOOTER */
        footer {
            background-color: var(--bg-mahogany);
            padding: 2.2rem 2rem 1.8rem 2rem;
            border-top: 1px solid var(--gold-dark);}

/* Added from about-us.html */
/* RESPONSIVE LAYOUTS */
                                                                                                                                                                                                 

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

                                                                                                                                                                      
    
        /* HAMBURGER BUTTON */
        .hamburger-btn {
            display: none;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
            width: 42px;
            height: 42px;
            cursor: pointer;
            background: none;
            border: 1px solid rgba(197,168,128,0.35);
            border-radius: 6px;
            padding: 9px;
            flex-shrink: 0;
            transition: var(--transition-smooth);}

/* Added from about-us.html */
/* MOBILE NAV OVERLAY */
        .mobile-nav {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(11,8,6,0.98);
            z-index: 1010;
            flex-direction: column;
            align-items: stretch;
            justify-content: flex-start;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
            overflow-y: auto;}

/* Added from about-us.html */
/* RESPONSIVE LAYOUTS */
        @media (max-width: 992px) {
            .directory-main-title { font-size: 2.5rem;}

/* Added from about-us.html */
.brand-byline {
                display: none !important;}

/* Added from about-us.html */
@media (max-width: 576px) {
            .directory-banner { padding: 1.8rem 1rem 1.2rem 1rem;}

/* Added from best-appetizers.html */
/* RESPONSIVE LAYOUTS */
        
        /* FOOTER / CONTACT */
        footer {
            background-color: var(--bg-mahogany);
            padding: 2.2rem 2rem 1.8rem 2rem;
            border-top: 1px solid var(--gold-dark);
            margin-top: auto;}

/* Added from blog.html */
/* RESPONSIVE LAYOUTS */
                                                                                                                                                                       

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

                                                                                                                                                                      
    
        /* HAMBURGER BUTTON */
        .hamburger-btn {
            display: none;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
            width: 42px;
            height: 42px;
            cursor: pointer;
            background: none;
            border: 1px solid rgba(197,168,128,0.35);
            border-radius: 6px;
            padding: 9px;
            flex-shrink: 0;
            transition: var(--transition-smooth);}

/* Added from dinner-menu.html */
/* CARD GRID STYLES */
        .menu-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 1.8rem;}

/* Added from dinner-menu.html */
/* DYNAMIC SELECTOR TOGGLE */
        .steak-portion-select {
            background-color: var(--bg-dark);
            border: 1px solid var(--gold-dark);
            color: var(--gold-primary);
            padding: 4px 8px;
            border-radius: 4px;
            font-family: var(--font-sans);
            font-size: 0.78rem;
            font-weight: 700;
            outline: none;
            cursor: pointer;
            transition: var(--transition-smooth);}

/* Added from dinner-menu.html */
.steak-portion-select:hover {
            border-color: var(--gold-primary);}

/* Added from happy-hour.html */
/* QUICK FACTS GRID */
        .quick-facts-container {
            max-width: 1300px;
            margin: 2rem auto;
            padding: 0 1.5rem;}

/* Added from happy-hour.html */
.quick-facts-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;}

/* Added from happy-hour.html */
.fact-card {
            background-color: var(--bg-mahogany);
            border: 1px solid rgba(197, 168, 128, 0.2);
            border-radius: 8px;
            padding: 2rem;
            text-align: center;
            transition: var(--transition-smooth);
            box-shadow: 0 10px 25px rgba(0,0,0,0.5);}

/* Added from happy-hour.html */
.fact-card:hover {
            border-color: var(--gold-primary);
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(197, 168, 128, 0.1);}

/* Added from happy-hour.html */
.fact-icon {
            font-size: 2.5rem;
            color: var(--gold-primary);
            margin-bottom: 1rem;}

/* Added from happy-hour.html */
.fact-title {
            font-family: var(--font-serif);
            font-size: 1.25rem;
            color: var(--gold-light);
            margin-bottom: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;}

/* Added from happy-hour.html */
.fact-desc {
            font-size: 0.9rem;
            color: var(--text-muted);
            line-height: 1.5;}

/* Added from happy-hour.html */
.badge-bar-special {
            background-color: #1a2d1f;
            border: 1px solid #c5a880;
            color: var(--gold-light);}

/* Added from happy-hour.html */
/* COMPARISON TABLE */
        .seo-table-wrapper {
            overflow-x: auto;
            margin: 2rem 0;
            border-radius: 6px;
            border: 1px solid rgba(197, 168, 128, 0.2);
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);}

/* Added from happy-hour.html */
/* CULINARY GUIDE */
        .culinary-guide-section {
            background-color: var(--bg-mahogany);
            border-top: 1px solid rgba(197, 168, 128, 0.15);
            padding: 3rem 2rem;
            text-align: center;}

/* Added from happy-hour.html */
/* LOCATION FINDER */
        .location-finder-section {
            background-color: var(--bg-dark);
            border-top: 1px solid rgba(197, 168, 128, 0.15);
            padding: 3rem 2rem;
            scroll-margin-top: 120px;}

/* Added from happy-hour.html */
.location-container {
            max-width: 1100px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;}

/* Added from happy-hour.html */
.location-info-card {
            background-color: var(--bg-mahogany);
            border: 1px solid rgba(197, 168, 128, 0.25);
            border-radius: 8px;
            padding: 2.5rem;
            box-shadow: 0 15px 40px rgba(0,0,0,0.6);}

/* Added from happy-hour.html */
.location-title {
            font-family: var(--font-serif);
            font-size: 1.6rem;
            color: var(--gold-light);
            margin-bottom: 1.5rem;
            border-bottom: 1px solid var(--gold-dark);
            padding-bottom: 0.5rem;}

/* Added from happy-hour.html */
.location-detail-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1.2rem;}

/* Added from happy-hour.html */
.location-detail-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: 0.95rem;
            color: var(--text-muted);}

/* Added from happy-hour.html */
.location-detail-item i {
            color: var(--gold-primary);
            font-size: 1.2rem;
            margin-top: 3px;}

/* Added from happy-hour.html */
.location-map-mock {
            background-color: var(--bg-mahogany);
            border: 1px solid rgba(197, 168, 128, 0.2);
            border-radius: 8px;
            height: 380px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 2rem;
            position: relative;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0,0,0,0.6);}

/* Added from happy-hour.html */
.map-glow-dot {
            position: absolute;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background-color: var(--crimson);
            box-shadow: 0 0 15px var(--crimson);
            animation: pulse-glow-dot 2s infinite ease-in-out;}

/* Added from happy-hour.html */
@keyframes pulse-glow-dot {
            0%, 100% {
                transform: scale(0.8);
                opacity: 0.5;}

/* Added from happy-hour.html */
.map-overlay-title {
            font-family: var(--font-display);
            font-size: 1.1rem;
            color: var(--gold-light);
            z-index: 5;
            margin-bottom: 10px;}

/* Added from happy-hour.html */
.map-cta-btn {
            background-color: var(--bg-bronze);
            border: 1px solid var(--gold-primary);
            color: var(--gold-light);
            padding: 0.8rem 1.8rem;
            font-family: var(--font-sans);
            font-weight: 700;
            font-size: 0.85rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            border-radius: 4px;
            cursor: pointer;
            z-index: 5;
            transition: var(--transition-smooth);
            text-decoration: none;
            display: inline-block;
            margin-top: 15px;}

/* Added from happy-hour.html */
.map-cta-btn:hover {
            background-color: var(--gold-primary);
            color: var(--bg-dark);
            border-color: var(--gold-primary);
            box-shadow: 0 5px 15px var(--gold-glow-bright);}

/* Added from happy-hour.html */
/* BACK TO TOP & RATING DYNAMICS */
        .floating-btn {
            position: fixed;
            bottom: 25px;
            right: 25px;
            width: 48px;
            height: 48px;
            background-color: var(--bg-mahogany);
            border: 2px solid var(--gold-dark);
            color: var(--gold-primary);
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            box-shadow: 0 4px 15px rgba(0,0,0,0.6);
            z-index: 1000;
            transition: var(--transition-smooth);
            opacity: 0;
            visibility: hidden;
            outline: none;}

/* Added from happy-hour.html */
/* SCROLL ANIMATION CLASS */
        .fade-in-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;}

/* Added from happy-hour.html */
/* RESPONSIVE LAYOUTS */
                                                                                                                                                                                                                                                                                                                                                                

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            

                                                                                                                                                                                                                                                                                                                                              
    
        /* HAMBURGER BUTTON */
        .hamburger-btn {
            display: none;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
            width: 42px;
            height: 42px;
            cursor: pointer;
            background: none;
            border: 1px solid rgba(197,168,128,0.35);
            border-radius: 6px;
            padding: 9px;
            flex-shrink: 0;
            transition: var(--transition-smooth);}

/* Added from happy-hour.html */
/* Responsive stacked cards for comparative table */
            .seo-table-wrapper {
                border: none !important;
                box-shadow: none !important;
                margin: 1.5rem 0 !important;}

/* Added from happy-hour.html */
.seo-table, 
            .seo-table tbody, 
            .seo-table tr, 
            .seo-table td {
                display: block !important;
                width: 100% !important;}

/* Added from hours.html */
/* LIVE STATUS WIDGET PANEL */
        .live-status-container {
            max-width: 750px;
            margin: 0 auto;
            background-color: var(--bg-mahogany);
            border: 2px solid var(--gold-primary);
            border-radius: 8px;
            padding: 2rem;
            text-align: center;
            box-shadow: 0 15px 40px rgba(0,0,0,0.7);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 12px;}

/* Added from hours.html */
.live-status-badge {
            font-size: 1.1rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            padding: 8px 24px;
            border-radius: 30px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.5);
            transition: var(--transition-smooth);}

/* Added from hours.html */
.status-open {
            background-color: #1a2d1f;
            border: 2px solid #4ade80;
            color: #4ade80;
            box-shadow: 0 0 15px rgba(74, 222, 128, 0.25);}

/* Added from hours.html */
.status-closed {
            background-color: #2d1a1a;
            border: 2px solid #f87171;
            color: #f87171;
            box-shadow: 0 0 15px rgba(248, 113, 113, 0.25);}

/* Added from hours.html */
.status-closing-soon {
            background-color: #2d261a;
            border: 2px solid #fbbf24;
            color: #fbbf24;
            box-shadow: 0 0 15px rgba(251, 191, 36, 0.25);}

/* Added from hours.html */
.live-status-details {
            font-size: 1rem;
            color: var(--text-muted);
            max-width: 500px;
            line-height: 1.5;}

/* Added from hours.html */
/* SCHEDULES PANEL */
        .weekly-hours-table-wrapper {
            border-radius: 8px;
            border: 1px solid rgba(197, 168, 128, 0.2);
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.5);
            background-color: var(--bg-mahogany);}

/* Added from hours.html */
.weekly-hours-table th {
            background-color: var(--bg-bronze);
            color: var(--gold-light);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 1.2rem;
            border-bottom: 2px solid var(--gold-dark);}

/* Added from hours.html */
.weekly-hours-table td {
            padding: 1.1rem 1.2rem;
            border-bottom: 1px solid rgba(197, 168, 128, 0.1);}

/* Added from hours.html */
.weekly-hours-table tr:last-child td {
            border-bottom: none;}

/* Added from hours.html */
.weekly-hours-table tr:nth-child(even) {
            background-color: rgba(22, 16, 12, 0.2);}

/* Added from hours.html */
.weekly-hours-table tr.highlight-day {
            background-color: rgba(197, 168, 128, 0.12) !important;
            border-left: 4px solid var(--gold-primary);}

/* Added from hours.html */
.weekly-hours-table tr.highlight-day td {
            color: var(--gold-light);
            font-weight: 700;}

/* Added from hours.html */
.day-badge {
            font-size: 0.72rem;
            font-weight: 700;
            text-transform: uppercase;
            padding: 3px 10px;
            border-radius: 4px;
            border: 1px solid transparent;}

/* Added from hours.html */
.badge-standard {
            background-color: rgba(197, 168, 128, 0.15);
            color: var(--gold-primary);
            border-color: rgba(197, 168, 128, 0.25);}

/* Added from hours.html */
.badge-special {
            background-color: rgba(143, 45, 24, 0.15);
            color: #f7a08d;
            border-color: var(--crimson);}

/* Added from hours.html */
/* LUNCH VS HAPPY HOUR CARDS */
        .promotion-timing-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;}

/* Added from hours.html */
.promo-timing-card {
            background-color: var(--bg-mahogany);
            border: 1px solid rgba(197, 168, 128, 0.15);
            border-radius: 8px;
            padding: 2rem;
            box-shadow: 0 10px 25px rgba(0,0,0,0.5);
            transition: var(--transition-smooth);}

/* Added from hours.html */
.promo-timing-card:hover {
            border-color: var(--gold-primary);
            transform: translateY(-2px);}

/* Added from hours.html */
.promo-timing-title {
            font-family: var(--font-serif);
            font-size: 1.3rem;
            color: var(--gold-light);
            border-bottom: 1px solid var(--bg-bronze);
            padding-bottom: 0.5rem;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 10px;}

/* Added from hours.html */
.promo-timing-time {
            font-family: var(--font-sans);
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--gold-primary);
            margin-bottom: 0.8rem;}

/* Added from hours.html */
.promo-timing-list {
            list-style: none;
            font-size: 0.9rem;
            color: var(--text-muted);
            display: flex;
            flex-direction: column;
            gap: 0.6rem;}

/* Added from hours.html */
.promo-timing-list li {
            display: flex;
            align-items: flex-start;
            gap: 8px;}

/* Added from hours.html */
.promo-timing-list li i {
            color: var(--gold-primary);
            margin-top: 3px;}

/* Added from hours.html */
.exclusion-badge {
            font-size: 0.72rem;
            font-weight: 700;
            background-color: rgba(143, 45, 24, 0.15);
            color: #f7a08d;
            border: 1px solid var(--crimson);
            padding: 2px 8px;
            border-radius: 4px;
            text-transform: uppercase;}

/* Added from hours.html */
/* HOLIDAY GRID */
        .holiday-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.5rem;}

/* Added from hours.html */
.holiday-card {
            background-color: var(--bg-mahogany);
            border: 1px solid rgba(197, 168, 128, 0.15);
            border-radius: 6px;
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            transition: var(--transition-smooth);
            box-shadow: 0 5px 15px rgba(0,0,0,0.4);}

/* Added from hours.html */
.holiday-card:hover {
            border-color: var(--gold-primary);
            transform: translateY(-2px);}

/* Added from hours.html */
.holiday-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid rgba(197, 168, 128, 0.1);
            padding-bottom: 0.5rem;}

/* Added from hours.html */
.holiday-name {
            font-family: var(--font-sans);
            font-weight: 700;
            font-size: 1rem;
            color: var(--gold-light);}

/* Added from hours.html */
.holiday-status-badge {
            font-size: 0.72rem;
            font-weight: 700;
            text-transform: uppercase;
            padding: 2px 8px;
            border-radius: 4px;}

/* Added from hours.html */
.holiday-open {
            background-color: #1a2d1f;
            border: 1px solid #4ade80;
            color: #4ade80;}

/* Added from hours.html */
.holiday-closed {
            background-color: #2d1a1a;
            border: 1px solid #f87171;
            color: #f87171;}

/* Added from hours.html */
.holiday-modified {
            background-color: #2d261a;
            border: 1px solid #fbbf24;
            color: #fbbf24;}

/* Added from hours.html */
.holiday-desc {
            font-size: 0.85rem;
            color: var(--text-muted);
            line-height: 1.5;}

/* Added from hours.html */
/* SEO GUIDE BLOCK */
        .guide-block {
            background-color: var(--bg-mahogany);
            border: 1px solid rgba(197, 168, 128, 0.15);
            border-radius: 8px;
            padding: 2.5rem;
            box-shadow: 0 12px 35px rgba(0,0,0,0.5);
            transition: var(--transition-smooth);
            scroll-margin-top: 120px;}

/* Added from hours.html */
/* FLAGSHIP BRANCH INFO CARD */
        .branch-info-card {
            background-color: var(--bg-mahogany);
            border: 2px solid var(--gold-primary);
            border-radius: 8px;
            padding: 2rem;
            box-shadow: 0 15px 40px rgba(0,0,0,0.6);
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 2rem;
            align-items: center;}

/* Added from hours.html */
.branch-title {
            font-family: var(--font-serif);
            font-size: 1.6rem;
            color: var(--gold-light);
            margin-bottom: 1rem;
            border-bottom: 1px solid var(--gold-dark);
            padding-bottom: 0.5rem;}

/* Added from hours.html */
.branch-detail-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            font-size: 0.95rem;
            color: var(--text-muted);}

/* Added from hours.html */
.branch-detail-list i {
            color: var(--gold-primary);
            margin-right: 6px;}

/* Added from hours.html */
.branch-cta-btn {
            background-color: var(--bg-bronze);
            border: 1px solid var(--gold-primary);
            color: var(--gold-light);
            padding: 0.8rem 1.8rem;
            font-family: var(--font-sans);
            font-weight: 700;
            font-size: 0.85rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            border-radius: 4px;
            cursor: pointer;
            transition: var(--transition-smooth);
            text-decoration: none;
            display: inline-block;
            margin-top: 15px;}

/* Added from hours.html */
.branch-cta-btn:hover {
            background-color: var(--gold-primary);
            color: var(--bg-dark);
            border-color: var(--gold-primary);
            box-shadow: 0 5px 15px var(--gold-glow-bright);}

/* Added from hours.html */
.branch-map-mock {
            background-color: var(--bg-dark);
            border: 1px solid rgba(197, 168, 128, 0.2);
            border-radius: 8px;
            height: 250px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 2rem;
            position: relative;
            overflow: hidden;}

/* Added from hours.html */
/* BACK TO TOP */
        .floating-btn {
            position: fixed;
            bottom: 25px;
            right: 25px;
            width: 48px;
            height: 48px;
            background-color: var(--bg-mahogany);
            border: 2px solid var(--gold-dark);
            color: var(--gold-primary);
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            box-shadow: 0 4px 15px rgba(0,0,0,0.6);
            z-index: 1000;
            transition: var(--transition-smooth);
            opacity: 0;
            visibility: hidden;
            outline: none;}

/* Added from hours.html */
/* RESPONSIVE LAYOUTS */
                                                                                                                                                                                                                                                                                                    

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      

                                                                                                                                                                                                                                
    
        /* HAMBURGER BUTTON */
        .hamburger-btn {
            display: none;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
            width: 42px;
            height: 42px;
            cursor: pointer;
            background: none;
            border: 1px solid rgba(197,168,128,0.35);
            border-radius: 6px;
            padding: 9px;
            flex-shrink: 0;
            transition: var(--transition-smooth);}

/* Added from locations.html */
/* BANNER & SEARCH */
        .directory-banner {
            background: linear-gradient(180deg, var(--bg-mahogany) 0%, var(--bg-dark) 100%);
            padding: 2.2rem 2rem 1.8rem 2rem;
            text-align: center;
            border-bottom: 1px solid rgba(197, 168, 128, 0.1);}

/* Added from locations.html */
/* INTERACTIVE FINDER UI */
        .search-container {
            max-width: 650px;
            margin: 0 auto;
            position: relative;}

/* Added from locations.html */
#locations-search-input {
            background: none;
            border: none;
            color: var(--text-light);
            font-family: var(--font-sans);
            font-size: 1.05rem;
            width: 100%;
            outline: none;}

/* Added from locations.html */
#locations-search-input::placeholder {
            color: var(--text-dark);}

/* Added from locations.html */
.locate-me-btn {
            background-color: var(--bg-bronze);
            border: 1px solid var(--gold-dark);
            color: var(--gold-primary);
            border-radius: 20px;
            padding: 6px 14px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            cursor: pointer;
            transition: var(--transition-smooth);
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 6px;}

/* Added from locations.html */
.locate-me-btn:hover {
            background-color: var(--gold-primary);
            color: var(--bg-dark);
            border-color: var(--gold-primary);
            box-shadow: 0 0 10px var(--gold-glow-bright);}

/* Added from locations.html */
/* LIVE STORE RESULT PANEL */
        .live-store-panel {
            max-width: 750px;
            margin: 2rem auto 0 auto;
            background-color: var(--bg-mahogany);
            border: 2px solid var(--gold-primary);
            border-radius: 8px;
            padding: 2rem;
            box-shadow: 0 15px 40px rgba(0,0,0,0.7);
            display: none;
            text-align: left;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.5s ease, transform 0.5s ease;}

/* Added from locations.html */
.live-store-panel.visible {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 2rem;
            opacity: 1;
            transform: translateY(0);}

/* Added from locations.html */
.live-store-info {
            display: flex;
            flex-direction: column;
            gap: 1rem;}

/* Added from locations.html */
.store-status-badge {
            background-color: #1a2d1f;
            border: 1px solid #4ade80;
            color: #4ade80;
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            padding: 3px 10px;
            border-radius: 20px;
            display: inline-block;
            align-self: flex-start;
            letter-spacing: 0.8px;}

/* Added from locations.html */
.live-store-title {
            font-family: var(--font-serif);
            font-size: 1.5rem;
            color: var(--gold-light);
            border-bottom: 1px solid var(--gold-dark);
            padding-bottom: 0.5rem;}

/* Added from locations.html */
.live-store-details {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            font-size: 0.9rem;
            color: var(--text-muted);}

/* Added from locations.html */
.live-store-details i {
            color: var(--gold-primary);
            width: 20px;}

/* Added from locations.html */
.live-store-actions {
            display: flex;
            gap: 10px;
            margin-top: 1rem;}

/* Added from locations.html */
.action-btn {
            background-color: var(--bg-bronze);
            border: 1px solid var(--gold-primary);
            color: var(--gold-light);
            padding: 0.6rem 1.2rem;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            text-decoration: none;
            border-radius: 4px;
            transition: var(--transition-smooth);
            display: inline-flex;
            align-items: center;
            gap: 6px;}

/* Added from locations.html */
.action-btn:hover {
            background-color: var(--gold-primary);
            color: var(--bg-dark);
            border-color: var(--gold-primary);}

/* Added from locations.html */
.live-store-map-mock {
            background-color: var(--bg-dark);
            border: 1px solid rgba(197, 168, 128, 0.2);
            border-radius: 6px;
            position: relative;
            min-height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;}

/* Added from locations.html */
/* OPERATING HOURS GRID & HOLIDAYS */
        .hours-schedule-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;}

/* Added from locations.html */
.schedule-card {
            background-color: var(--bg-mahogany);
            border: 1px solid rgba(197, 168, 128, 0.15);
            border-radius: 8px;
            padding: 2rem;
            box-shadow: 0 10px 25px rgba(0,0,0,0.5);}

/* Added from locations.html */
.schedule-title {
            font-family: var(--font-serif);
            font-size: 1.3rem;
            color: var(--gold-light);
            margin-bottom: 1.2rem;
            border-bottom: 1px solid var(--bg-bronze);
            padding-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 8px;}

/* Added from locations.html */
.schedule-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.6rem;
            font-size: 0.9rem;
            color: var(--text-muted);}

/* Added from locations.html */
.schedule-list li {
            display: flex;
            justify-content: space-between;
            padding: 4px 0;
            border-bottom: 1px dashed rgba(197, 168, 128, 0.1);}

/* Added from locations.html */
.schedule-list li:last-child {
            border-bottom: none;}

/* Added from locations.html */
/* STATE COUNT DIRECTORY GRID */
        .state-count-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 1.2rem;
            margin-top: 1.5rem;}

/* Added from locations.html */
.state-count-card {
            background-color: var(--bg-mahogany);
            border: 1px solid rgba(197, 168, 128, 0.15);
            border-radius: 6px;
            padding: 1rem 1.2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            text-decoration: none;
            color: var(--text-muted);
            font-weight: 600;
            font-size: 0.9rem;
            transition: var(--transition-smooth);
            cursor: pointer;}

/* Added from locations.html */
.state-count-card:hover {
            border-color: var(--gold-primary);
            background-color: var(--bg-bronze);
            color: var(--gold-light);
            transform: translateY(-2px);}

/* Added from locations.html */
.state-tag-badge {
            background-color: var(--bg-dark);
            color: var(--gold-primary);
            font-size: 0.75rem;
            font-weight: 700;
            padding: 2px 8px;
            border-radius: 20px;
            border: 1px solid rgba(197, 168, 128, 0.25);}

/* Added from locations.html */
.state-count-card:hover .state-tag-badge {
            background-color: var(--gold-primary);
            color: var(--bg-dark);
            border-color: var(--gold-primary);}

/* Added from locations.html */
/* STATE EXPANDABLE ACCORDION LIST */
        .state-branches-container {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 3rem;}

/* Added from locations.html */
.state-branch-item {
            background-color: var(--bg-mahogany);
            border: 1px solid rgba(197, 168, 128, 0.15);
            border-radius: 6px;
            overflow: hidden;
            transition: var(--transition-smooth);}

/* Added from locations.html */
.state-branch-btn {
            width: 100%;
            background: none;
            border: none;
            color: var(--text-light);
            font-family: var(--font-serif);
            font-size: 1.15rem;
            font-weight: 700;
            text-align: left;
            padding: 1.2rem 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            transition: var(--transition-smooth);}

/* Added from locations.html */
.state-branch-btn:hover {
            background-color: var(--bg-bronze);
            color: var(--gold-light);}

/* Added from locations.html */
.state-branch-icon {
            color: var(--gold-primary);
            transition: transform 0.3s ease;}

/* Added from locations.html */
.state-branch-item.active {
            border-color: var(--gold-primary);}

/* Added from locations.html */
.state-branch-item.active .state-branch-icon {
            transform: rotate(180deg);}

/* Added from locations.html */
.state-branch-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            background-color: var(--bg-dark);}

/* Added from locations.html */
.state-branch-inner {
            padding: 1.5rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 1.5rem;}

/* Added from locations.html */
.branch-card {
            background-color: var(--bg-mahogany);
            border: 1px solid rgba(197, 168, 128, 0.1);
            border-radius: 6px;
            padding: 1.2rem;
            display: flex;
            flex-direction: column;
            gap: 0.8rem;}

/* Added from locations.html */
.branch-card-title {
            font-family: var(--font-sans);
            font-weight: 700;
            font-size: 1rem;
            color: var(--gold-light);
            border-bottom: 1px solid rgba(197, 168, 128, 0.1);
            padding-bottom: 4px;}

/* Added from locations.html */
.branch-card-details {
            list-style: none;
            font-size: 0.82rem;
            color: var(--text-muted);
            display: flex;
            flex-direction: column;
            gap: 0.4rem;}

/* Added from locations.html */
.branch-card-details i {
            color: var(--gold-primary);
            margin-right: 6px;}

/* Added from locations.html */
/* RESPONSIVE LAYOUTS */
                                                                                                                                                                                                                                                   

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            

                                                                                                                                                                                                                                    
    
        /* HAMBURGER BUTTON */
        .hamburger-btn {
            display: none;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
            width: 42px;
            height: 42px;
            cursor: pointer;
            background: none;
            border: 1px solid rgba(197,168,128,0.35);
            border-radius: 6px;
            padding: 9px;
            flex-shrink: 0;
            transition: var(--transition-smooth);}

/* Added from longhorn-coupon-codes.html */
/* FLOATING BTN */
        .floating-btn {
            position: fixed;
            bottom: 25px;
            right: 25px;
            width: 48px;
            height: 48px;
            background-color: var(--bg-mahogany);
            border: 2px solid var(--gold-dark);
            color: var(--gold-primary);
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            box-shadow: 0 4px 15px rgba(0,0,0,0.6);
            z-index: 1000;
            transition: var(--transition-smooth);
            opacity: 0;
            visibility: hidden;
            outline: none;}

/* Added from longhorn-date-night-guide.html */
.header-links a:hover,
        .header-links a.active {
            color: var(--gold-light);}

/* Added from longhorn-date-night-guide.html */
/* MAIN CONTENT DIRECTORY BANNER */
        main {
            margin-top: 75px;
            padding-bottom: 5rem;}

/* Added from longhorn-date-night-guide.html */
/* DATE NIGHT SHARABLE TABLE STYLING */
        .dn-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            font-size: 0.95rem;
            text-align: left;
            background-color: var(--bg-dark);
            border: 1px solid rgba(197, 168, 128, 0.25);
            border-radius: 6px;
            overflow: hidden;}

/* Added from longhorn-date-night-guide.html */
.dn-table th {
            background-color: var(--bg-bronze);
            color: var(--gold-light);
            font-family: var(--font-serif);
            font-weight: 700;
            padding: 12px 15px;
            border-bottom: 2px solid var(--gold-primary);}

/* Added from longhorn-date-night-guide.html */
.dn-table td {
            padding: 12px 15px;
            border-bottom: 1px solid rgba(197, 168, 128, 0.15);
            color: var(--text-light);}

/* Added from longhorn-date-night-guide.html */
.dn-table tr:nth-of-type(even) {
            background-color: rgba(22, 16, 12, 0.6);}

/* Added from longhorn-date-night-guide.html */
.dn-table tr:hover {
            background-color: rgba(197, 168, 128, 0.05);}

/* Added from longhorn-date-night-guide.html */
/* RESPONSIVE LAYOUTS */
                                                                                                                                                          

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

                                                                                                                                                                      
    
        /* HAMBURGER BUTTON */
        .hamburger-btn {
            display: none;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
            width: 42px;
            height: 42px;
            cursor: pointer;
            background: none;
            border: 1px solid rgba(197,168,128,0.35);
            border-radius: 6px;
            padding: 9px;
            flex-shrink: 0;
            transition: var(--transition-smooth);}

/* Added from longhorn-gluten-free-guide.html */
/* GLUTEN FREE MENU TABLE STYLING */
        .gf-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            font-size: 0.95rem;
            text-align: left;
            background-color: var(--bg-dark);
            border: 1px solid rgba(197, 168, 128, 0.25);
            border-radius: 6px;
            overflow: hidden;}

/* Added from longhorn-gluten-free-guide.html */
.gf-table th {
            background-color: var(--bg-bronze);
            color: var(--gold-light);
            font-family: var(--font-serif);
            font-weight: 700;
            padding: 12px 15px;
            border-bottom: 2px solid var(--gold-primary);}

/* Added from longhorn-gluten-free-guide.html */
.gf-table td {
            padding: 12px 15px;
            border-bottom: 1px solid rgba(197, 168, 128, 0.15);
            color: var(--text-light);}

/* Added from longhorn-gluten-free-guide.html */
.gf-table tr:nth-of-type(even) {
            background-color: rgba(22, 16, 12, 0.6);}

/* Added from longhorn-gluten-free-guide.html */
.gf-table tr:hover {
            background-color: rgba(197, 168, 128, 0.05);}

/* Added from longhorn-keto-guide.html */
/* KETO MACRO TABLE STYLING */
        .keto-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            font-size: 0.95rem;
            text-align: left;
            background-color: var(--bg-dark);
            border: 1px solid rgba(197, 168, 128, 0.25);
            border-radius: 6px;
            overflow: hidden;}

/* Added from longhorn-keto-guide.html */
.keto-table th {
            background-color: var(--bg-bronze);
            color: var(--gold-light);
            font-family: var(--font-serif);
            font-weight: 700;
            padding: 12px 15px;
            border-bottom: 2px solid var(--gold-primary);}

/* Added from longhorn-keto-guide.html */
.keto-table td {
            padding: 12px 15px;
            border-bottom: 1px solid rgba(197, 168, 128, 0.15);
            color: var(--text-light);}

/* Added from longhorn-keto-guide.html */
.keto-table tr:nth-of-type(even) {
            background-color: rgba(22, 16, 12, 0.6);}

/* Added from longhorn-keto-guide.html */
.keto-table tr:hover {
            background-color: rgba(197, 168, 128, 0.05);}

/* Added from lunch-menu.html */
/* LIVE STATUS PANEL */
        .live-status-container {
            max-width: 750px;
            margin: 0 auto;
            background-color: var(--bg-mahogany);
            border: 2px solid var(--gold-primary);
            border-radius: 8px;
            padding: 2rem;
            text-align: center;
            box-shadow: 0 15px 40px rgba(0,0,0,0.7);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 12px;}

/* Added from lunch-menu.html */
.badge-lunch-special {
            background-color: #1a2d1f;
            border: 1px solid #c5a880;
            color: var(--gold-light);}

/* Added from lunch-menu.html */
/* EXCLUSIONS CARD */
        .timing-info-card {
            background-color: var(--bg-mahogany);
            border: 1px solid rgba(197, 168, 128, 0.15);
            border-radius: 8px;
            padding: 2rem;
            box-shadow: 0 10px 25px rgba(0,0,0,0.5);
            margin-bottom: 2rem;}

/* Added from lunch-menu.html */
.timing-info-title {
            font-family: var(--font-serif);
            font-size: 1.3rem;
            color: var(--gold-light);
            margin-bottom: 1rem;
            border-bottom: 1px solid var(--bg-bronze);
            padding-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 8px;}

/* Added from lunch-menu.html */
.timing-info-text {
            font-size: 0.95rem;
            color: var(--text-muted);
            line-height: 1.7;}

/* Added from lunch-menu.html */
.timing-info-text strong {
            color: var(--gold-light);}

/* Added from nutrition.html */
/* DIETARY FILTER COMPONENT */
        .dietary-tabs {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 2.5rem;}

/* Added from nutrition.html */
/* RECOMMENDATIONS GRID */
        .rec-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.8rem;
            transition: var(--transition-smooth);}

/* Added from nutrition.html */
.rec-card {
            background-color: var(--bg-mahogany);
            border: 1px solid rgba(197, 168, 128, 0.15);
            border-radius: 8px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), 
                        opacity 0.4s ease, 
                        border-color 0.3s ease;
            opacity: 1;
            transform: scale(1);
            box-shadow: 0 10px 25px rgba(0,0,0,0.4);
            position: relative;}

/* Added from nutrition.html */
.rec-card.hidden {
            display: none;
            opacity: 0;
            transform: scale(0.9);}

/* Added from nutrition.html */
.rec-card:hover {
            border-color: var(--gold-primary);
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(197, 168, 128, 0.15);}

/* Added from nutrition.html */
.card-labels {
            display: flex;
            flex-wrap: wrap;
            gap: 5px;
            margin-top: auto;
            border-top: 1px solid rgba(197, 168, 128, 0.1);
            padding-top: 0.8rem;}

/* Added from nutrition.html */
.diet-badge {
            font-size: 0.65rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            padding: 3px 8px;
            border-radius: 4px;
            line-height: 1.2;
            background-color: var(--bg-dark);
            color: var(--gold-primary);
            border: 1px solid var(--gold-dark);}

/* Added from nutrition.html */
.diet-badge.active-label {
            background-color: var(--crimson);
            color: var(--text-light);
            border-color: var(--crimson);}

/* Added from nutrition.html */
/* E-E-A-T DISCLAIMER BLOCK */
        .disclaimer-block {
            background-color: rgba(143, 45, 24, 0.08);
            border: 2px solid var(--crimson);
            border-radius: 8px;
            padding: 2rem;
            box-shadow: 0 10px 25px rgba(0,0,0,0.5);
            margin-bottom: 3rem;
            position: relative;}

/* Added from nutrition.html */
.disclaimer-title {
            font-family: var(--font-serif);
            font-size: 1.3rem;
            color: #f7a08d;
            margin-bottom: 0.8rem;
            display: flex;
            align-items: center;
            gap: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;}

/* Added from nutrition.html */
.disclaimer-text {
            font-size: 0.95rem;
            color: var(--text-muted);
            line-height: 1.7;
            margin-bottom: 1rem;}

/* Added from nutrition.html */
.disclaimer-tips {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 1rem;
            margin-top: 1.2rem;
            padding-top: 1.2rem;
            border-top: 1px solid rgba(143, 45, 24, 0.2);}

/* Added from nutrition.html */
.disclaimer-tips li {
            font-size: 0.85rem;
            color: var(--text-light);
            display: flex;
            gap: 10px;}

/* Added from nutrition.html */
.disclaimer-tips li i {
            color: var(--gold-primary);
            font-size: 1rem;
            margin-top: 2px;}

/* Added from nutrition.html */
/* NUTRITION TABLE FACT GRID */
        .nutrition-table-wrapper {
            width: 100%;
            overflow-x: auto;
            background-color: var(--bg-mahogany);
            border: 1px solid rgba(197, 168, 128, 0.15);
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);}

/* Added from nutrition.html */
.nutrition-table th, .nutrition-table td {
            padding: 1.2rem;
            border-bottom: 1px solid var(--bg-bronze);}

/* Added from nutrition.html */
.nutrition-table tbody tr:hover {
            background-color: var(--bg-bronze);}

/* Added from nutrition.html */
.nutrition-table td strong {
            color: var(--text-light);}

/* Added from secret-menu.html */
/* HACKS FILTER COMPONENT */
        .dietary-tabs {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 2.5rem;}

/* Added from secret-menu.html */
/* HACKS GRID */
        .hacks-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
            gap: 1.8rem;
            transition: var(--transition-smooth);}

/* Added from secret-menu.html */
.hack-card {
            background-color: var(--bg-mahogany);
            border: 1px solid rgba(197, 168, 128, 0.15);
            border-radius: 8px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), 
                        opacity 0.4s ease, 
                        border-color 0.3s ease;
            opacity: 1;
            transform: scale(1);
            box-shadow: 0 10px 25px rgba(0,0,0,0.4);
            position: relative;}

/* Added from secret-menu.html */
.hack-card.hidden {
            display: none;
            opacity: 0;
            transform: scale(0.9);}

/* Added from secret-menu.html */
.hack-card:hover {
            border-color: var(--gold-primary);
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(197, 168, 128, 0.15);}

/* Added from secret-menu.html */
.hack-icon-header {
            height: 90px;
            background: linear-gradient(135deg, var(--bg-mahogany) 0%, var(--bg-bronze) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            color: var(--gold-primary);
            border-bottom: 1px solid rgba(197, 168, 128, 0.1);}

/* Added from secret-menu.html */
.hack-content {
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
            gap: 0.8rem;}

/* Added from secret-menu.html */
.hack-title {
            font-family: var(--font-serif);
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--gold-light);
            line-height: 1.25;
            text-align: center;}

/* Added from secret-menu.html */
.hack-label-badge {
            align-self: center;
            background-color: var(--crimson);
            color: var(--text-light);
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 4px 12px;
            border-radius: 20px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.3);}

/* Added from secret-menu.html */
.hack-desc {
            font-size: 0.85rem;
            color: var(--text-muted);
            line-height: 1.6;
            text-align: center;
            flex-grow: 1;}

/* Added from secret-menu.html */
.hack-footer {
            border-top: 1px solid rgba(197, 168, 128, 0.1);
            padding-top: 1rem;
            display: flex;
            flex-direction: column;
            gap: 10px;}

/* Added from secret-menu.html */
.hack-method {
            font-size: 0.72rem;
            color: var(--text-dark);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-weight: 700;
            text-align: center;}

/* Added from secret-menu.html */
.hack-cost-badge {
            background-color: var(--bg-dark);
            color: var(--gold-primary);
            font-size: 0.75rem;
            padding: 2px 8px;
            border-radius: 4px;
            border: 1px solid rgba(140, 110, 67, 0.25);
            font-weight: 700;
            align-self: center;}

/* Added from secret-menu.html */
/* COURTESY ADVISORY BLOCK */
        .advisory-block {
            background-color: rgba(197, 168, 128, 0.04);
            border: 2px solid var(--gold-primary);
            border-radius: 8px;
            padding: 2rem;
            box-shadow: 0 10px 25px rgba(0,0,0,0.5);
            margin-bottom: 3rem;
            position: relative;}

/* Added from secret-menu.html */
.advisory-rule-list {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 1.2rem;
            margin-top: 1rem;
            padding-top: 1.2rem;
            border-top: 1px solid rgba(197, 168, 128, 0.15);}

/* Added from secret-menu.html */
.advisory-rule-list li {
            font-size: 0.85rem;
            color: var(--text-light);
            display: flex;
            gap: 10px;}

/* Added from secret-menu.html */
.advisory-rule-list li i {
            color: var(--gold-primary);
            font-size: 1.1rem;
            margin-top: 2px;}