/* -------------------------------------------------------------
 * STYLE SYSTEM - THE TURKISH HOUSE ABU DHABI
 * ------------------------------------------------------------- */

/* Google Fonts Import done in HTML, but declared here for reference */
:root {
    --font-heading: 'Cinzel', serif;
    --font-body: 'Outfit', sans-serif;
    
    /* Animation Speeds */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Global Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-round: 50%;
}

/* -------------------------------------------------------------
 * THEME SPECIFICATIONS (HSL-BASED DESIGN SYSTEM)
 * ------------------------------------------------------------- */

/* DARK THEME (Softer, Lighter Dark Theme) */
.dark-theme {
    --primary-gold: hsl(38, 75%, 55%);
    --primary-light-gold: hsl(38, 85%, 68%);
    --primary-deep-gold: hsl(38, 70%, 42%);
    --accent-red: hsl(12, 75%, 55%);
    --accent-red-hover: hsl(12, 75%, 48%);
    
    --bg-main: hsl(215, 16%, 13%);
    --bg-surface: hsl(215, 14%, 18%);
    --bg-accent: hsl(215, 12%, 22%);
    --bg-glass: rgba(23, 31, 48, 0.88);
    --border-glass: rgba(255, 255, 255, 0.14);
    --shadow-glass: rgba(0, 0, 0, 0.3);
    
    --text-base: hsl(210, 15%, 95%);
    --text-muted: hsl(210, 10%, 78%);
    --text-inverse: hsl(215, 16%, 13%);
    
    --input-bg: hsl(215, 12%, 20%);
    --input-border: hsl(215, 8%, 30%);
    --input-focus: hsl(38, 75%, 55%);
    
    --glow-color-1: rgba(212, 160, 23, 0.12);
    --glow-color-2: rgba(197, 57, 41, 0.08);
}

/* LIGHT THEME (Airy, High-Contrast & Warm Vanilla) */
.light-theme {
    --primary-gold: hsl(38, 80%, 40%);
    --primary-light-gold: hsl(38, 85%, 52%);
    --primary-deep-gold: hsl(38, 75%, 30%);
    --accent-red: hsl(12, 75%, 45%);
    --accent-red-hover: hsl(12, 75%, 40%);
    
    --bg-main: hsl(38, 25%, 98%);
    --bg-surface: hsl(0, 0%, 100%);
    --bg-accent: hsl(38, 20%, 93%);
    --bg-glass: rgba(255, 255, 255, 0.92);
    --border-glass: rgba(0, 0, 0, 0.12);
    --shadow-glass: rgba(38, 25, 10, 0.08);
    
    --text-base: hsl(215, 30%, 12%);
    --text-muted: hsl(215, 20%, 32%);
    --text-inverse: hsl(0, 0%, 100%);
    
    --input-bg: hsl(0, 0%, 100%);
    --input-border: hsl(215, 12%, 80%);
    --input-focus: hsl(38, 80%, 40%);
    
    --glow-color-1: rgba(212, 160, 23, 0.04);
    --glow-color-2: rgba(197, 57, 41, 0.03);
}

/* -------------------------------------------------------------
 * GENERAL RESET & BASE STYLES
 * ------------------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-main);
    color: var(--text-base);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color var(--transition-normal), color var(--transition-normal);
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

button {
    font-family: inherit;
    cursor: pointer;
    background: none;
    border: none;
    outline: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Glow Background Effects */
.glow-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.glow-orb {
    position: absolute;
    border-radius: var(--radius-round);
    filter: blur(120px);
    transition: background-color var(--transition-slow);
}

.orb-1 {
    top: -10%;
    right: -10%;
    width: 50vw;
    height: 50vw;
    background-color: var(--glow-color-1);
}

.orb-2 {
    bottom: -10%;
    left: -10%;
    width: 45vw;
    height: 45vw;
    background-color: var(--glow-color-2);
}

/* -------------------------------------------------------------
 * PREMIUM STRUCTURAL LAYOUT SHAPES & ANIMATIONS
 * ------------------------------------------------------------- */
.glow-card {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    box-shadow: 0 8px 32px var(--shadow-glass);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.glow-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
    box-shadow: 0 12px 40px var(--shadow-glass), 0 0 15px rgba(212, 160, 23, 0.15);
}

/* Custom Text Accents */
.logo-accent {
    font-family: var(--font-heading);
    color: var(--primary-gold);
    font-style: italic;
    font-weight: 400;
}

.section-subtitle {
    display: block;
    font-family: var(--font-heading);
    color: var(--primary-gold);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 8px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

.section-desc {
    max-width: 600px;
    margin: 0 auto 40px auto;
    color: var(--text-muted);
}

.text-center {
    text-align: center;
}

/* Button UI Components */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--primary-gold);
    color: var(--text-inverse);
}

.btn-primary:hover {
    background-color: var(--primary-light-gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 160, 23, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-base);
    border: 1px solid var(--border-glass);
}

.btn-secondary:hover {
    background-color: var(--bg-accent);
    border-color: var(--primary-gold);
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}

/* Keyframe animations */
@keyframes pulsePin {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.15); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

/* -------------------------------------------------------------
 * NAVIGATION STYLES
 * ------------------------------------------------------------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: var(--bg-glass);
    border-bottom: 1px solid var(--border-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 4px 20px var(--shadow-glass);
    transition: all var(--transition-normal);
    padding: 10px 0;
    overflow: visible;
}

.navbar.scrolled {
    padding: 8px 0;
    box-shadow: 0 8px 30px var(--shadow-glass);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    position: relative;
    z-index: 110;
}

.nav-logo-img {
    height: 125px;
    width: auto;
    max-width: 264px;
    object-fit: contain;
    vertical-align: middle;
    mix-blend-mode: multiply;
    border-radius: 25px;
    margin-top: 2px;
    margin-bottom: -42px;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
    transition: transform var(--transition-fast);
}

.dark-theme .nav-logo-img {
    mix-blend-mode: normal;
    filter: brightness(1.15) drop-shadow(0 4px 14px rgba(0, 0, 0, 0.6));
}

.nav-logo-img:hover {
    transform: scale(1.05);
}

.footer-logo-img {
    height: 100px;
    width: auto;
    max-width: 280px;
    object-fit: contain;
    border-radius: 25px;
    margin-bottom: 16px;
    mix-blend-mode: multiply;
}

.dark-theme .footer-logo-img {
    mix-blend-mode: normal;
    filter: brightness(1.15) drop-shadow(0 4px 14px rgba(0, 0, 0, 0.6));
}

.nav-menu {
    display: flex;
    gap: 22px;
    margin-left: 48px;
    margin-right: 48px;
}

.nav-link {
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    position: relative;
    padding: 8px 0;
    transition: all var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-gold);
    transition: width var(--transition-normal);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.theme-toggle-btn, .feast-planner-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-round);
    border: 1px solid var(--border-glass);
    background-color: var(--bg-surface);
    color: var(--text-base);
    transition: all var(--transition-fast);
    position: relative;
}

.theme-toggle-btn:hover, .feast-planner-btn:hover {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
    transform: scale(1.05);
}

.theme-toggle-btn .icon-sun, .dark-theme .theme-toggle-btn .icon-moon {
    display: none;
}

.theme-toggle-btn .icon-moon, .dark-theme .theme-toggle-btn .icon-sun {
    display: block;
}

.feast-planner-btn .badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--accent-red);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-round);
    border: 2px solid var(--bg-surface);
}

.cta-nav {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--primary-gold);
    color: var(--text-inverse);
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-nav:hover {
    background-color: var(--primary-light-gold);
    transform: translateY(-1px);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    width: 30px;
    height: 24px;
    justify-content: center;
    z-index: 101;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-base);
    transition: all var(--transition-normal);
}

/* -------------------------------------------------------------
 * HERO SECTION
 * ------------------------------------------------------------- */
.hero {
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 130px;
    padding-bottom: 50px;
    position: relative;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.hero-content {
    max-width: 750px;
    margin-top: auto;
    margin-bottom: auto;
}

.hero-tagline {
    font-family: var(--font-heading);
    color: var(--primary-gold);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    display: inline-block;
    margin-bottom: 16px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 30%, #e2e8f0 70%, var(--primary-light-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.light-theme .hero-title {
    background: linear-gradient(135deg, #ffffff 60%, var(--primary-light-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 1.15rem;
    color: hsl(210, 10%, 90%);
    margin-bottom: 40px;
    font-weight: 400;
}

.hero-btns {
    display: flex;
    gap: 16px;
}

.hero-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: auto;
    padding: 24px 28px;
    background-color: var(--bg-surface);
    border: 1px solid var(--input-border);
    border-radius: var(--radius-md);
    box-shadow: 0 12px 36px var(--shadow-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.info-card {
    display: flex;
    align-items: center;
    gap: 16px;
}

.info-card i {
    font-size: 2rem;
    color: var(--primary-gold);
    flex-shrink: 0;
}

.info-card h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-base);
    margin-bottom: 4px;
}

.info-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.light-theme .hero-desc {
    color: #f1f5f9; /* keep description light on the dark overlay for contrast */
}

/* -------------------------------------------------------------
 * ABOUT SECTION
 * ------------------------------------------------------------- */
.about {
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.about-text-content p {
    margin-bottom: 20px;
    color: var(--text-muted);
}

.about-lead {
    font-size: 1.2rem;
    color: var(--text-base) !important;
    font-weight: 400;
}

.about-counters {
    display: flex;
    gap: 32px;
    margin-top: 35px;
}

.counter-box {
    display: flex;
    flex-direction: column;
}

.counter-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 4px;
}

.counter-txt {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-img-container {
    position: relative;
    padding: 20px;
}

.about-img-box {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.about-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.about-img-box:hover .about-img {
    transform: scale(1.05);
}

.floating-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background-color: var(--bg-surface);
    border: 1px solid var(--border-glass);
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.floating-badge i {
    color: var(--primary-gold);
}

.floating-badge span {
    font-size: 0.9rem;
    font-weight: 600;
}

/* -------------------------------------------------------------
 * FEATURES SECTION
 * ------------------------------------------------------------- */
.features {
    padding: 100px 0;
    background-color: var(--bg-accent);
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    padding: 40px 30px;
    text-align: center;
    border-radius: var(--radius-md);
}

.feature-icon-wrapper {
    width: 70px;
    height: 70px;
    background-color: var(--bg-accent);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
    transition: all var(--transition-normal);
}

.feature-card:hover .feature-icon-wrapper {
    background-color: var(--primary-gold);
    color: var(--text-inverse);
    border-color: var(--primary-gold);
    transform: rotateY(180deg);
}

.feature-icon-wrapper i {
    font-size: 1.8rem;
    color: var(--primary-gold);
    transition: color var(--transition-normal);
}

.feature-card:hover .feature-icon-wrapper i {
    color: var(--text-inverse);
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* -------------------------------------------------------------
 * INTERACTIVE MENU SECTION
 * ------------------------------------------------------------- */
.menu-section {
    padding: 100px 0;
}

.menu-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-bottom: 48px;
}

.search-box {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.search-box i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.search-box input {
    width: 100%;
    padding: 16px 50px 16px 50px;
    background-color: var(--input-bg);
    border: 1px solid var(--input-border);
    border-radius: 30px;
    color: var(--text-base);
    font-size: 0.95rem;
    transition: all var(--transition-normal);
}

.search-box input:focus {
    border-color: var(--input-focus);
    box-shadow: 0 0 10px rgba(212, 160, 23, 0.2);
    outline: none;
}

.clear-btn {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1.1rem;
    transition: color var(--transition-fast);
}

.clear-btn:hover {
    color: var(--accent-red);
}

.menu-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.tab-btn {
    padding: 12px 24px;
    border: 1px solid var(--input-border);
    border-radius: 30px;
    background-color: var(--bg-surface);
    color: var(--text-base);
    font-size: 0.92rem;
    font-weight: 600;
    box-shadow: 0 2px 8px var(--shadow-glass);
    transition: all var(--transition-fast);
}

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

.tab-btn.active {
    background-color: var(--primary-gold);
    color: #ffffff;
    border-color: var(--primary-gold);
    box-shadow: 0 4px 15px rgba(212, 160, 23, 0.35);
}

/* Menu Grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.menu-item-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: var(--radius-md);
    position: relative;
}

.menu-item-img-box {
    position: relative;
    height: 230px;
    overflow: hidden;
}

.menu-item-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.menu-item-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--accent-red);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.menu-item-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.menu-item-header h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.3;
}

.menu-item-price {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-gold);
    white-space: nowrap;
}

.menu-item-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-grow: 1;
}

.menu-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-glass);
    padding-top: 16px;
    margin-top: auto;
}

.calories-badge {
    font-size: 0.78rem;
    color: var(--text-muted);
    background-color: var(--bg-accent);
    padding: 4px 8px;
    border-radius: 4px;
}

.add-to-feast-btn {
    background-color: var(--bg-accent);
    border: 1px solid var(--border-glass);
    color: var(--text-base);
    width: 36px;
    height: 36px;
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.add-to-feast-btn:hover {
    background-color: var(--primary-gold);
    color: var(--text-inverse);
    border-color: var(--primary-gold);
    transform: scale(1.08);
}

.add-to-feast-btn i {
    font-size: 0.9rem;
}

.no-results-msg {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 0;
    color: var(--text-muted);
}

.no-results-msg i {
    font-size: 3rem;
    margin-bottom: 16px;
    color: var(--primary-gold);
}

/* -------------------------------------------------------------
 * GALLERY SHOWCASE
 * ------------------------------------------------------------- */
.gallery-section {
    padding: 100px 0;
    background-color: var(--bg-accent);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 240px;
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 10%, rgba(0, 0, 0, 0.2) 60%);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 24px;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

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

.gallery-overlay span {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
}

.gallery-overlay i {
    color: white;
    font-size: 1.1rem;
}

/* -------------------------------------------------------------
 * REVIEWS CAROUSEL
 * ------------------------------------------------------------- */
.reviews-section {
    padding: 100px 0;
}

.carousel-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonials-slider {
    position: relative;
    height: 300px; /* fixed height to avoid page jumping */
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    transform: translateX(100px);
    transition: all var(--transition-slow);
    pointer-events: none;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.testimonial-card.prev {
    transform: translateX(-100px);
}

.review-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.review-stars i {
    color: var(--primary-gold);
    font-size: 1.1rem;
}

.review-text {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-base);
    margin-bottom: 24px;
    line-height: 1.6;
}

.review-user {
    display: flex;
    flex-direction: column;
}

.user-name {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 2px;
}

.user-role {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: var(--radius-round);
    background-color: var(--border-glass);
    cursor: pointer;
    transition: background-color var(--transition-fast), transform var(--transition-fast);
}

.dot.active {
    background-color: var(--primary-gold);
    transform: scale(1.2);
}

/* -------------------------------------------------------------
 * RESERVATION SECTION
 * ------------------------------------------------------------- */
.reservation-section {
    padding: 100px 0;
}

.reservation-box {
    padding: 0;
    overflow: hidden;
}

.reservation-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
}

.reservation-info-col {
    padding: 60px;
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url('assets/interior.png');
    background-size: cover;
    background-position: center;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.booking-benefits {
    list-style: none;
    margin: 30px 0;
}

.booking-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.booking-benefits li i {
    color: var(--primary-gold);
    font-size: 1.1rem;
}

.booking-phone-highlight {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
}

.booking-phone-highlight span {
    display: block;
    font-size: 0.85rem;
    color: #cbd5e1;
    margin-bottom: 8px;
}

.booking-phone-highlight a {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-gold);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.booking-phone-highlight a:hover {
    color: var(--primary-light-gold);
}

.reservation-form-col {
    padding: 60px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-base);
}

.form-group input, .form-group select, .form-group textarea {
    padding: 12px 16px;
    background-color: var(--input-bg);
    border: 1px solid var(--input-border);
    border-radius: var(--radius-sm);
    color: var(--text-base);
    font-size: 0.95rem;
    transition: all var(--transition-fast);
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='hsl(210, 10%, 65%)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: 40px;
}

.light-theme .form-group select {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='hsl(215, 25%, 15%)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--input-focus);
    outline: none;
    box-shadow: 0 0 8px rgba(212, 160, 23, 0.15);
}

.form-group textarea {
    height: 100px;
    resize: none;
}

.preorder-badge-success {
    background-color: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #4ade80;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.light-theme .preorder-badge-success {
    background-color: rgba(21, 128, 61, 0.1);
    border: 1px solid rgba(21, 128, 61, 0.2);
    color: #15803d;
}

/* -------------------------------------------------------------
 * CONTACT & MAP SECTION
 * ------------------------------------------------------------- */
.contact-section {
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.contact-detail-item {
    display: flex;
    gap: 20px;
}

.contact-detail-item i {
    font-size: 1.8rem;
    color: var(--primary-gold);
    margin-top: 4px;
}

.contact-detail-item h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.contact-detail-item p {
    font-size: 0.92rem;
    color: var(--text-muted);
}

.contact-map-col {
    height: 450px;
}

.map-placeholder {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
}

.map-overlay {
    position: absolute;
    z-index: 2;
    background-color: var(--bg-surface);
    border: 1px solid var(--border-glass);
    padding: 24px;
    border-radius: var(--radius-md);
    text-align: center;
    max-width: 320px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.map-overlay h4 {
    font-family: var(--font-heading);
    margin-bottom: 8px;
    font-size: 1.15rem;
}

.map-overlay p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.pin-animation {
    font-size: 2.2rem;
    color: var(--accent-red);
    margin-bottom: 12px;
    display: inline-block;
    animation: pulsePin 2s infinite ease-in-out;
}

.vector-map-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: hsl(215, 15%, 15%);
    background-image: radial-gradient(var(--border-glass) 1px, transparent 1px);
    background-size: 20px 20px;
    z-index: 1;
}

.light-theme .vector-map-bg {
    background-color: hsl(38, 15%, 88%);
}

/* -------------------------------------------------------------
 * FOOTER
 * ------------------------------------------------------------- */
.main-footer {
    background-color: var(--bg-surface);
    border-top: 1px solid var(--border-glass);
    padding: 80px 0 30px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.brand-col .logo {
    display: inline-block;
    margin-bottom: 20px;
}

.brand-pitch {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-round);
    background-color: var(--bg-accent);
    border: 1px solid var(--border-glass);
    transition: all var(--transition-fast);
}

.social-links a:hover {
    background-color: var(--primary-gold);
    color: var(--text-inverse);
    border-color: var(--primary-gold);
    transform: translateY(-2px);
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 8px;
}

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

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul a {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-col ul a:hover {
    color: var(--primary-gold);
    padding-left: 5px;
}

.newsletter-col p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--input-border);
}

.newsletter-form input {
    flex-grow: 1;
    padding: 12px 16px;
    background-color: var(--input-bg);
    border: none;
    color: var(--text-base);
    font-size: 0.9rem;
}

.newsletter-form input:focus {
    outline: none;
}

.newsletter-form button {
    background-color: var(--primary-gold);
    color: var(--text-inverse);
    padding: 0 20px;
    transition: background-color var(--transition-fast);
}

.newsletter-form button:hover {
    background-color: var(--primary-light-gold);
}

.newsletter-success-msg {
    font-size: 0.85rem;
    color: #4ade80;
    margin-top: 8px;
}

.footer-bottom {
    border-top: 1px solid var(--border-glass);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

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

/* -------------------------------------------------------------
 * BACK TO TOP BUTTON
 * ------------------------------------------------------------- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    background-color: var(--primary-gold);
    color: var(--text-inverse);
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-normal);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--primary-light-gold);
    transform: translateY(-3px);
}

/* -------------------------------------------------------------
 * VIRTUAL FEAST PLANNER SIDE DRAWER
 * ------------------------------------------------------------- */
.planner-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 199;
    opacity: 0;
    visibility: hidden;
    backdrop-filter: blur(4px);
    transition: all var(--transition-normal);
}

.planner-drawer-overlay.open {
    opacity: 1;
    visibility: visible;
}

.planner-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 420px;
    height: 100vh;
    background-color: var(--bg-surface);
    border-left: 1px solid var(--border-glass);
    z-index: 200;
    transform: translateX(100%);
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    transition: transform var(--transition-normal);
}

.planner-drawer.open {
    transform: translateX(0);
}

.drawer-header {
    padding: 24px;
    border-bottom: 1px solid var(--border-glass);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.drawer-header h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.drawer-header h3 i {
    color: var(--primary-gold);
}

.close-drawer-btn {
    font-size: 1.4rem;
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

.close-drawer-btn:hover {
    color: var(--text-base);
}

.drawer-body {
    padding: 24px;
    overflow-y: auto;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.drawer-intro {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.planner-items {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.empty-planner-msg {
    text-align: center;
    margin: auto 0;
    color: var(--text-muted);
}

.empty-planner-msg i {
    font-size: 3.5rem;
    color: var(--border-glass);
    margin-bottom: 16px;
}

.empty-planner-msg p {
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.planner-item-row {
    display: flex;
    gap: 16px;
    align-items: center;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-glass);
}

.planner-item-img {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    object-fit: cover;
}

.planner-item-details {
    flex-grow: 1;
}

.planner-item-details h5 {
    font-family: var(--font-heading);
    font-size: 0.92rem;
    margin-bottom: 4px;
}

.planner-item-price-line {
    display: flex;
    justify-content: space-between;
    font-size: 0.82rem;
}

.planner-item-cost {
    color: var(--primary-gold);
    font-weight: 600;
}

.planner-item-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.qty-control {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    overflow: hidden;
    background-color: var(--bg-accent);
}

.qty-btn {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    transition: background-color var(--transition-fast);
}

.qty-btn:hover {
    background-color: var(--border-glass);
}

.qty-val {
    width: 20px;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
}

.delete-item-btn {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.delete-item-btn:hover {
    color: var(--accent-red);
}

.planner-summary {
    border-top: 1px solid var(--border-glass);
    padding-top: 20px;
    margin-top: auto;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.summary-line strong {
    color: var(--text-base);
}

.total-line {
    font-size: 1.15rem;
    margin-bottom: 20px;
    border-top: 1px dotted var(--border-glass);
    padding-top: 12px;
}

.total-line strong {
    color: var(--primary-gold);
    font-size: 1.3rem;
}

.btn-clear-feast {
    display: block;
    margin: 16px auto 0 auto;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-decoration: underline;
    transition: color var(--transition-fast);
}

.btn-clear-feast:hover {
    color: var(--accent-red);
}

/* -------------------------------------------------------------
 * MODAL DIALOGS OVERLAYS
 * ------------------------------------------------------------- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 299;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    backdrop-filter: blur(8px);
    transition: all var(--transition-normal);
}

.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.modal-card {
    position: relative;
    background-color: var(--bg-surface);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 750px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
}

.modal-close-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-round);
    background-color: var(--bg-accent);
    color: var(--text-muted);
    font-size: 1.1rem;
    transition: all var(--transition-fast);
    z-index: 10;
}

.modal-close-btn:hover {
    background-color: var(--accent-red);
    color: white;
}

/* Dish details grid */
.modal-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 40px;
    align-items: start;
}

.modal-img-wrapper {
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 320px;
}

.modal-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-info-col h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.modal-price-line {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.modal-item-desc {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.modal-meta-box {
    background-color: var(--bg-accent);
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.meta-item {
    font-size: 0.85rem;
}

.meta-item strong {
    display: block;
    font-size: 0.9rem;
    color: var(--primary-gold);
    margin-top: 2px;
}

/* Lightbox styles */
.lightbox-content {
    position: relative;
    max-width: 900px;
    max-height: 80vh;
}

.lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
}

.lightbox-caption {
    color: white;
    text-align: center;
    margin-top: 16px;
    font-family: var(--font-heading);
    font-size: 1.15rem;
}

/* Booking Success Modal style */
.success-modal-card {
    max-width: 500px;
}

.success-icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    font-size: 3.5rem;
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
}

.light-theme .success-icon-wrapper {
    color: #15803d;
    background-color: rgba(21, 128, 61, 0.1);
}

.success-modal-card h2 {
    font-family: var(--font-heading);
    margin-bottom: 12px;
}

.success-modal-card p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.success-details-box {
    background-color: var(--bg-accent);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    padding: 20px;
    margin-bottom: 24px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.success-detail-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

.success-detail-row span {
    color: var(--text-muted);
}

.success-detail-row strong {
    color: var(--text-base);
}

.success-notes {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

/* -------------------------------------------------------------
 * RESPONSIVENESS - MEDIA QUERIES
 * ------------------------------------------------------------- */

/* TABLETS (Max-width: 1024px) */
@media screen and (max-width: 1024px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .about-grid, .reservation-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-img {
        height: 380px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* LARGE PHONES (Max-width: 768px) */
@media screen and (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: var(--bg-surface);
        flex-direction: column;
        padding: 100px 40px 40px 40px;
        margin: 0;
        transition: right var(--transition-normal);
        box-shadow: -5px 0 20px rgba(0,0,0,0.2);
    }
    
    .nav-menu.open {
        right: 0;
    }
    
    .mobile-menu-btn.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    
    .mobile-menu-btn.open span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -7px);
    }
    
    .cta-nav {
        display: none; /* Hide nav CTA in mobile, use menu active CTA */
    }
    
    .hero {
        padding-top: 100px;
    }
    
    .hero-info {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }
    
    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 2;
    }
    
    .modal-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .modal-img-wrapper {
        height: 200px;
    }
    
    .modal-card {
        padding: 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* EXTRA SMALL PHONES (Max-width: 480px) { */
@media screen and (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-btns {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-btns .btn {
        width: 100%;
    }
    
    .features-grid, .menu-grid, .gallery-grid, .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .about-counters {
        flex-direction: column;
        gap: 20px;
    }
    
    .reservation-info-col, .reservation-form-col {
        padding: 30px 20px;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* -------------------------------------------------------------
 * FLOATING QR CODE WIDGET (FIXED BOTTOM-LEFT CORNER)
 * ------------------------------------------------------------- */
.qr-widget {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 99;
    font-family: var(--font-body);
}

.qr-widget-trigger {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px 8px 8px;
    background-color: var(--bg-surface);
    border: 1px solid var(--input-border);
    border-radius: 30px;
    box-shadow: 0 8px 24px var(--shadow-glass);
    color: var(--text-base);
    transition: all var(--transition-normal);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.qr-widget-trigger:hover {
    border-color: var(--primary-gold);
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 30px var(--shadow-glass), 0 0 15px rgba(212, 160, 23, 0.2);
}

.qr-thumb {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background-color: white;
    padding: 2px;
    object-fit: contain;
}

.qr-trigger-text {
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 1.2;
}

.qr-trigger-text span {
    font-size: 0.85rem;
    font-weight: 700;
}

.qr-trigger-text small {
    font-size: 0.72rem;
    color: var(--primary-gold);
    font-weight: 600;
}

.qr-icon {
    font-size: 1.2rem;
    color: var(--primary-gold);
    margin-left: 2px;
}

.qr-card {
    position: absolute;
    bottom: 60px;
    left: 0;
    width: 260px;
    padding: 20px;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px) scale(0.95);
    transition: all var(--transition-normal);
    pointer-events: none;
}

.qr-widget.open .qr-card,
.qr-widget:hover .qr-card {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.qr-close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 26px;
    height: 26px;
    border-radius: var(--radius-round);
    background-color: var(--bg-accent);
    color: var(--text-muted);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.qr-close-btn:hover {
    background-color: var(--accent-red);
    color: white;
}

.qr-card-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
}

.qr-card-header i {
    color: var(--primary-gold);
    font-size: 1.1rem;
}

.qr-card-header h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
}

.qr-img-wrapper {
    background-color: white;
    padding: 10px;
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin: 0 auto 12px auto;
    width: 160px;
    height: 160px;
}

.qr-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.qr-card-desc {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    line-height: 1.4;
}

.qr-url-badge {
    display: inline-block;
    background-color: var(--bg-accent);
    color: var(--primary-gold);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 12px;
    border: 1px solid var(--input-border);
}

/* ─────────────────────────────────────────────
   FLOATING SOCIAL BUTTONS
───────────────────────────────────────────── */
.floating-socials {
    position: fixed;
    bottom: 90px;
    right: 24px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.whatsapp-fab, .instagram-fab, .talabat-fab {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    animation: wa-bounce-in 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    position: relative;
}

.whatsapp-fab {
    background: #25D366;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
}

.instagram-fab {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 4px 20px rgba(220, 39, 67, 0.45);
    color: white;
    font-size: 32px;
}

.talabat-fab {
    background: #FF5A00;
    box-shadow: 0 4px 20px rgba(255, 90, 0, 0.45);
    color: white;
}

.whatsapp-fab::before, .instagram-fab::before, .talabat-fab::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    animation: wa-pulse 2.2s ease-out infinite;
    pointer-events: none;
}

.whatsapp-fab::before {
    background: rgba(37, 211, 102, 0.4);
}

.instagram-fab::before {
    background: rgba(220, 39, 67, 0.4);
}

.talabat-fab::before {
    background: rgba(255, 90, 0, 0.4);
}

.whatsapp-fab:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
}

.instagram-fab:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 28px rgba(220, 39, 67, 0.6);
}

.talabat-fab:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 28px rgba(255, 90, 0, 0.6);
}

.whatsapp-fab:hover .social-tooltip, .instagram-fab:hover .social-tooltip, .talabat-fab:hover .social-tooltip {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.whatsapp-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.social-tooltip {
    position: absolute;
    right: 68px;
    background: #1a1a1a;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    padding: 7px 14px;
    border-radius: 8px;
    opacity: 0;
    transform: translateX(8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    pointer-events: none;
    font-family: var(--font-body);
}

.social-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -6px;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: #1a1a1a;
    border-right: 0;
}

@keyframes wa-pulse {
    0%   { transform: scale(1);   opacity: 0.7; }
    70%  { transform: scale(1.55); opacity: 0; }
    100% { transform: scale(1.55); opacity: 0; }
}

@keyframes wa-bounce-in {
    from { opacity: 0; transform: scale(0.4); }
    to   { opacity: 1; transform: scale(1); }
}
