@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

/* --- PREMIUM LIGHT GLASSMORPHISM DESIGN SYSTEM --- */
:root {
    /* Colors - Softer, Premium Light Aqua/Sea Breeze Theme */
    --bg-dark: hsl(195, 35%, 96%);          /* Soft icy blue/white background */
    --bg-gradient: linear-gradient(135deg, hsl(195, 40%, 97%) 0%, hsl(210, 30%, 94%) 100%);
    
    /* White glassmorphism base with high transparency and soft reflections */
    --bg-card: rgba(255, 255, 255, 0.72);
    --bg-card-hover: rgba(255, 255, 255, 0.88);
    --border-glass: rgba(0, 180, 216, 0.18);
    --border-glass-hover: rgba(0, 180, 216, 0.35);
    
    /* Color Palette */
    --primary: hsl(188, 90%, 38%);         /* Elegant Teal / Ocean Blue */
    --primary-glow: rgba(0, 150, 180, 0.25);
    --secondary: hsl(205, 85%, 35%);       /* Royal Deep Sea Blue */
    --accent: hsl(165, 80%, 38%);          /* Soft Seafoam Green */
    
    /* Typography & Contrast */
    --text-main: hsl(215, 60%, 15%);       /* High contrast dark blue-grey for readability */
    --text-muted: hsl(215, 25%, 38%);      /* Soft grey-blue for secondary text */
    --text-light: hsl(0, 0%, 100%);
    
    /* Fonts */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
    
    /* Spacings & Layout - Increased for elegance and proportion */
    --max-width: 1400px;
    --border-radius: 20px;
    --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Soft, premium pastel shadows with blue tint */
    --shadow: 0 10px 40px -10px rgba(12, 45, 75, 0.08), 
              0 1px 3px rgba(12, 45, 75, 0.03);
    --shadow-hover: 0 20px 50px -10px rgba(0, 180, 216, 0.15), 
                    0 4px 20px -2px rgba(12, 45, 75, 0.05);
}

/* --- BASE STYLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background: var(--bg-gradient);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 1.05rem; /* Larger body font */
    overflow-x: hidden;
    line-height: 1.7; /* Balanced line spacing */
}

/* Decorative Ambient Glow Bubbles */
body::before, body::after {
    content: '';
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(140px);
    z-index: -2;
    opacity: 0.35; /* Brighter glows for light theme */
    pointer-events: none;
}
body::before {
    background: radial-gradient(circle, rgba(0, 180, 216, 0.25) 0%, transparent 70%);
    top: -15%;
    left: -15%;
    animation: floatGlow 20s infinite alternate;
}
body::after {
    background: radial-gradient(circle, rgba(165, 243, 252, 0.4) 0%, transparent 70%);
    bottom: -15%;
    right: -15%;
    animation: floatGlow 25s infinite alternate-reverse;
}

@keyframes floatGlow {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(80px, 80px) scale(1.15); }
}

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

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

button, input, select, textarea {
    font-family: inherit;
    color: inherit;
    background: none;
    border: none;
    outline: none;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--primary);
    border: 3px solid var(--bg-dark);
    border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--secondary);
}

/* --- REUSABLE GLASS COMPONENTS --- */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.glass-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-glass-hover);
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

/* Neon/Teal Primary Button */
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--text-light);
    font-weight: 700;
    font-size: 1.05rem;
    padding: 16px 36px; /* Larger paddings */
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 6px 20px var(--primary-glow);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0, 150, 180, 0.4);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-secondary {
    background: rgba(0, 180, 216, 0.06);
    border: 1px solid var(--border-glass);
    color: var(--secondary);
    font-weight: 700;
    font-size: 1.05rem;
    padding: 15px 34px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--text-light);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 6px 18px var(--primary-glow);
}

/* Titles & Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
    font-weight: 700;
    line-height: 1.3;
}

.section-title {
    text-align: center;
    font-size: 3.4rem; /* Larger titles */
    margin-bottom: 60px;
    position: relative;
}

.section-title span {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary);
    margin: 18px auto 0;
    border-radius: 4px;
    box-shadow: 0 2px 8px var(--primary-glow);
}

/* Animations Trigger */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- HEADER / NAVIGATION --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 26px 0;
}

/* On hero (not scrolled), nav should be white for dark background readability */
header:not(.scrolled) .logo {
    background: linear-gradient(135deg, #fff, rgba(165,243,252,0.9));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

header:not(.scrolled) .logo i {
    color: rgba(165,243,252,0.9);
    -webkit-text-fill-color: initial;
}

header:not(.scrolled) .nav-links a {
    color: rgba(255,255,255,0.85);
    text-shadow: 0 1px 4px rgba(0,0,0,0.35);
}

header:not(.scrolled) .nav-links a:hover,
header:not(.scrolled) .nav-links a.active {
    color: #fff;
}

header:not(.scrolled) .nav-toggle i {
    color: white;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 16px 0;
    border-bottom: 1px solid rgba(0, 180, 216, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 2.1rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo i {
    color: var(--primary);
    -webkit-text-fill-color: initial;
    filter: drop-shadow(0 2px 4px var(--primary-glow));
}

.site-logo-img {
    width: 96px;
    height: 64px;
    object-fit: contain;
    border-radius: 0;
    -webkit-text-fill-color: initial;
    filter: drop-shadow(0 4px 10px rgba(0, 180, 216, 0.2));
}

.logo .site-logo-img--dark {
    display: none;
}

header.scrolled .logo .site-logo-img--light {
    display: none;
}

header.scrolled .logo .site-logo-img--dark {
    display: block;
}

header.scrolled .logo .site-logo-img {
    width: 82px;
    height: 54px;
}

.logo .site-logo-img + span {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 40px; /* Wider spacing */
    list-style: none;
}

.nav-links a {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-muted);
    position: relative;
    padding: 5px 0;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary);
    transition: var(--transition);
}

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

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

.nav-toggle {
    display: none;
    font-size: 1.7rem;
    cursor: pointer;
    color: var(--text-main);
}

/* ============================================================
   HERO — FULL SCREEN BACKGROUND SLIDER
   ============================================================ */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 0; /* Let slides fill fully */
}

/* Slide Layer */
.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    filter: saturate(1.12) brightness(1.06) contrast(1.03);
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    /* Ken-Burns subtle zoom */
    animation: kenBurns 12s ease-in-out infinite alternate;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

@keyframes kenBurns {
    0%   { transform: scale(1)    translate(0%, 0%); }
    100% { transform: scale(1.08) translate(-1%, -1%); }
}

/* Gradient Overlay — dark bottom fade + subtle teal vignette */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
        linear-gradient(
            to bottom,
            rgba(5, 15, 30, 0.28)  0%,
            rgba(5, 15, 30, 0.12)  40%,
            rgba(5, 15, 30, 0.45)  100%
        ),
        radial-gradient(
            ellipse at center,
            transparent 55%,
            rgba(0, 20, 40, 0.22) 100%
        );
}

/* Content Container */
.hero-container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 140px 30px 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Glass Content Card */
.hero-content {
    text-align: center;
    max-width: 820px;
    background: rgba(5, 20, 45, 0.32);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 28px;
    padding: 70px 80px;
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255,255,255,0.18);
    animation: heroCardIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes heroCardIn {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-content h1 {
    font-size: 4.8rem;
    line-height: 1.12;
    margin-bottom: 24px;
    color: #ffffff;
    text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.hero-content h1 span {
    background: linear-gradient(135deg, hsl(182,100%,70%), hsl(205,100%,75%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: none;
    white-space: nowrap;
}

.hero-content p {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.82);
    margin-bottom: 50px;
    line-height: 1.75;
    text-shadow: 0 1px 6px rgba(0,0,0,0.3);
}

.hero-btns {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Override btn-secondary for dark hero background */
#hero .btn-secondary {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.45);
    color: #fff;
}

#hero .btn-secondary:hover {
    background: rgba(255,255,255,0.25);
    border-color: #fff;
    color: #fff;
    transform: translateY(-3px);
}

/* Dot Navigation */
.hero-dots {
    position: absolute;
    bottom: 38px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    gap: 12px;
    align-items: center;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: 2px solid rgba(255,255,255,0.6);
    cursor: pointer;
    transition: var(--transition);
    display: block;
}

.hero-dot.active {
    background: #fff;
    border-color: #fff;
    width: 32px;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(255,255,255,0.5);
}

.hero-dot:hover {
    background: rgba(255,255,255,0.75);
}

/* --- ABOUT (HAKKIMIZDA) SECTION --- */
#about {
    padding: 140px 0; /* Increased spacing */
}

.about-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 80px; /* Balanced spacing */
    align-items: center;
}

.about-img-box {
    position: relative;
}

.about-img-box img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-hover);
    border: 6px solid white;
    width: 100%;
    height: 560px;
    object-fit: cover;
}

.about-experience {
    position: absolute;
    bottom: -30px;
    right: -20px;
    padding: 30px;
    text-align: center;
    background: var(--bg-card);
    border: 1.5px solid var(--border-glass-hover);
    box-shadow: var(--shadow-hover);
    min-width: 160px;
}

.about-experience h3 {
    font-size: 3.5rem;
    color: var(--primary);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}

.about-experience p {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content h2 {
    font-size: 3.2rem; /* Larger */
    margin-bottom: 30px;
}

.about-content h2 span {
    color: var(--primary);
}

.about-content p {
    color: var(--text-muted);
    font-size: 1.15rem;
    margin-bottom: 35px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(0, 180, 216, 0.08);
    border: 1px solid var(--border-glass-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0,180,216,0.05);
}

.feature-text h4 {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.feature-text p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

/* --- MENU SECTION --- */
#menu {
    padding: 110px 0;
    position: relative;
}

.menu-tabs {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    margin-bottom: 42px;
    flex-wrap: wrap;
    max-width: var(--max-width);
    margin-left: auto;
    margin-right: auto;
    padding: 0 30px;
}

.menu-tabs-scroll {
    display: flex;
    flex: 1 1 620px;
    gap: 12px;
    overflow-x: auto;
    padding: 4px 2px 10px;
    scrollbar-width: none;
}

.menu-tabs-scroll::-webkit-scrollbar {
    display: none;
}

.menu-tab {
    flex: 0 0 auto;
    padding: 11px 20px;
    border-radius: 30px;
    border: 1px solid var(--border-glass);
    background: rgba(255, 255, 255, 0.5);
    font-weight: 700;
    font-size: 0.92rem;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-muted);
}

.menu-tab:hover, .menu-tab.active {
    background: var(--primary);
    color: var(--text-light);
    border-color: var(--primary);
    box-shadow: 0 6px 18px var(--primary-glow);
    transform: translateY(-2px);
}

.menu-category-select {
    flex: 0 0 260px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px 8px 16px;
    border: 1px solid rgba(0, 180, 216, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 12px 30px rgba(8, 15, 30, 0.06);
}

.menu-category-select span {
    color: var(--text-muted);
    font-size: 0.82rem;
    font-weight: 800;
    white-space: nowrap;
}

.menu-category-select select {
    width: 100%;
    min-width: 0;
    border: none;
    background: transparent;
    color: var(--secondary);
    font: inherit;
    font-size: 0.9rem;
    font-weight: 800;
    outline: none;
    cursor: pointer;
}

.menu-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 24px;
}

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

.menu-img-container {
    width: 100%;
    height: 170px;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid var(--border-glass);
}

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

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

.menu-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: var(--text-light);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 800;
    max-width: calc(100% - 30px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

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

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

.menu-title {
    font-size: 1.15rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--text-main);
}

.menu-price {
    font-size: 1rem;
    font-weight: 800;
    color: var(--primary);
    white-space: nowrap;
}

.menu-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    flex-grow: 1;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.menu-more-card {
    min-height: 100%;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 22px;
    border: 1px dashed rgba(0, 180, 216, 0.35);
}

.menu-more-card span {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 12px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(0, 180, 216, 0.1);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 800;
}

.menu-more-card h4 {
    margin-bottom: 10px;
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--secondary);
}

.menu-more-card p {
    color: var(--text-muted);
    line-height: 1.5;
}

.home-menu-showcase {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 30px;
}

.home-menu-search {
    max-width: 720px;
    margin: 0 auto 34px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    border-radius: 999px;
}

.home-menu-search i {
    color: var(--primary);
}

.home-menu-search input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--text-main);
    font: inherit;
}

.home-menu-block {
    margin-top: 34px;
}

.home-menu-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.home-menu-heading h3 {
    margin: 0;
    font-family: var(--font-heading);
    color: var(--secondary);
    font-size: 1.55rem;
}

.home-menu-heading a,
.home-menu-heading button,
.home-menu-heading span {
    border: 0;
    background: transparent;
    color: var(--primary);
    font-weight: 900;
    white-space: nowrap;
    cursor: pointer;
}

.home-menu-strip {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(220px, 1fr);
    gap: 22px;
    overflow-x: auto;
    padding: 2px 2px 16px;
    scrollbar-width: none;
}

.home-menu-strip::-webkit-scrollbar {
    display: none;
}

.home-mini-card {
    border: 0;
    background: transparent;
    text-align: left;
    cursor: pointer;
}

.home-mini-card img {
    width: 100%;
    height: 190px;
    display: block;
    object-fit: cover;
    border-radius: 22px;
    box-shadow: 0 16px 34px rgba(8, 15, 30, 0.14);
    transition: var(--transition);
}

.home-mini-card:hover img {
    transform: translateY(-4px);
    box-shadow: 0 22px 44px rgba(8, 15, 30, 0.2);
}

.home-mini-card span {
    display: -webkit-box;
    margin-top: 12px;
    color: var(--secondary);
    font-weight: 900;
    font-size: 1.05rem;
    line-height: 1.25;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home-menu-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.home-category-card {
    min-height: 180px;
    position: relative;
    overflow: hidden;
    padding: 22px;
    border: 0;
    border-radius: 24px;
    text-align: left;
    background: #fff;
    box-shadow: 0 16px 36px rgba(8, 15, 30, 0.1);
    cursor: pointer;
}

.home-category-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(8, 15, 30, 0.76), rgba(8, 15, 30, 0.22), rgba(8, 15, 30, 0));
    z-index: 1;
}

.home-category-card span,
.home-category-card small {
    position: relative;
    z-index: 2;
    display: block;
    max-width: 70%;
    color: #fff;
}

.home-category-card span {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 900;
    line-height: 1.15;
}

.home-category-card img {
    transition: var(--transition);
}

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

.home-category-card small {
    margin-top: 8px;
    font-weight: 800;
    opacity: 0.86;
}

.home-category-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-products-block {
    scroll-margin-top: 120px;
}

.home-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}

.home-product-card {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 16px;
    align-items: center;
    padding: 14px;
    border-radius: 24px;
}

.home-product-card img {
    width: 92px;
    height: 92px;
    object-fit: cover;
    border-radius: 18px;
    background: #fff;
}

.home-product-card span {
    display: inline-flex;
    margin-bottom: 5px;
    color: var(--primary);
    font-size: 0.74rem;
    font-weight: 900;
}

.home-product-card h4 {
    margin: 0 0 6px;
    color: var(--secondary);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    line-height: 1.2;
}

.home-product-card p {
    display: -webkit-box;
    margin: 0 0 8px;
    color: var(--text-muted);
    font-size: 0.84rem;
    line-height: 1.4;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home-product-card strong {
    color: var(--primary);
    font-size: 0.86rem;
}

.home-menu-empty {
    grid-column: 1 / -1;
    padding: 30px;
    text-align: center;
    color: var(--text-muted);
}

/* --- GALLERY SECTION --- */
#gallery {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

#gallery::before {
    content: '';
    position: absolute;
    top: 8%;
    right: -12%;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.16), transparent 68%);
    pointer-events: none;
}

.gallery-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 1;
}

.gallery-header {
    max-width: 720px;
    margin: 0 auto 44px;
    text-align: center;
}

.gallery-header > span {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 7px 16px;
    border-radius: 999px;
    background: rgba(0, 180, 216, 0.1);
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.gallery-header h2 {
    font-size: 3.2rem;
    margin-bottom: 16px;
}

.gallery-header h2 strong {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gallery-header p {
    color: var(--text-muted);
    font-size: 1.08rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 18px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border: 0;
    aspect-ratio: 1 / 1;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 18px 38px rgba(8, 15, 30, 0.12);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.gallery-item::after {
    content: '\f00e';
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(5, 20, 45, 0.35);
    color: #fff;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 1.7rem;
    opacity: 0;
    transition: var(--transition);
}

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

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

.gallery-lightbox-open {
    overflow: hidden;
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 70px 96px;
    background: rgba(3, 10, 24, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.gallery-lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.gallery-lightbox-image {
    max-width: min(100%, 1120px);
    max-height: calc(100vh - 150px);
    object-fit: contain;
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.gallery-lightbox-close,
.gallery-lightbox-nav {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-lightbox-close:hover,
.gallery-lightbox-nav:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.gallery-lightbox-close {
    top: 24px;
    right: 26px;
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
}

.gallery-lightbox-nav {
    top: 50%;
    width: 58px;
    height: 58px;
    font-size: 1.3rem;
    transform: translateY(-50%);
}

.gallery-lightbox-nav:hover {
    transform: translateY(-50%) scale(1.04);
}

.gallery-lightbox-nav.prev {
    left: 24px;
}

.gallery-lightbox-nav.next {
    right: 24px;
}

.gallery-lightbox-counter {
    position: absolute;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.88);
    font-weight: 800;
    font-size: 0.9rem;
}

/* --- ORGANIZATION SECTION --- */
#organization {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.04), rgba(144, 224, 239, 0.07));
}

.org-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 30px;
}

.org-header {
    max-width: 760px;
    margin: 0 auto 50px;
    text-align: center;
}

.org-header > span {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 7px 16px;
    border-radius: 999px;
    background: rgba(0, 180, 216, 0.1);
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.org-header h2 {
    font-size: 3.2rem;
    margin-bottom: 16px;
}

.org-header h2 strong {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.org-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.org-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.org-card {
    padding: 34px 30px;
    text-align: center;
}

.org-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    color: var(--primary);
    background: rgba(0, 180, 216, 0.1);
    border: 1px solid var(--border-glass-hover);
}

.org-card h4 {
    font-size: 1.3rem;
    color: var(--secondary);
    margin-bottom: 12px;
}

.org-card p {
    color: var(--text-muted);
    font-size: 0.98rem;
    margin: 0;
    line-height: 1.6;
}

.org-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 36px 44px;
    flex-wrap: wrap;
}

.org-cta h3 {
    font-size: 1.7rem;
    color: var(--secondary);
    margin-bottom: 8px;
}

.org-cta p {
    color: var(--text-muted);
    margin: 0;
    max-width: 620px;
}

.org-cta .btn-primary {
    flex-shrink: 0;
}

/* --- RESERVATIONS SECTION --- */
#reservations {
    padding: 140px 0;
    background: radial-gradient(circle at 10% 30%, rgba(0, 180, 216, 0.05), transparent 50%);
}

.res-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.res-content h2 {
    font-size: 3.2rem;
    margin-bottom: 25px;
}

.res-content p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 45px;
}

.res-info-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.res-info-item {
    display: flex;
    align-items: center;
    gap: 25px;
}

.res-info-icon {
    width: 65px;
    height: 65px;
    border-radius: 16px;
    background: rgba(0, 180, 216, 0.08);
    border: 1px solid var(--border-glass-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.6rem;
    box-shadow: 0 4px 15px rgba(0,180,216,0.05);
}

.res-info-text h4 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.res-info-text p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin: 0;
}

/* Booking Form Card */
.res-card {
    padding: 50px; /* Spacious form container */
}

.res-card h3 {
    font-size: 1.8rem;
    margin-bottom: 35px;
    text-align: center;
    color: var(--secondary);
}

.form-group {
    margin-bottom: 24px;
    position: relative;
}

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

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-control {
    width: 100%;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--border-glass-hover);
    border-radius: 10px;
    padding: 14px 18px;
    color: var(--text-main);
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 12px rgba(0, 180, 216, 0.15);
}

textarea.form-control {
    resize: none;
    height: 120px;
}

/* Popup Modal Success Alert */
.popup-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(12, 45, 75, 0.35); /* Dark blur mask */
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.popup-modal.active {
    opacity: 1;
    pointer-events: all;
}

.popup-content {
    max-width: 500px;
    width: 90%;
    padding: 50px;
    text-align: center;
    transform: scale(0.85);
    background: white;
    border: 1.5px solid var(--border-glass-hover);
    box-shadow: 0 30px 70px rgba(12, 45, 75, 0.15);
}

.popup-modal.active .popup-content {
    transform: scale(1);
}

.popup-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.1);
    border: 3px solid hsl(150, 84%, 43%);
    color: hsl(150, 84%, 43%);
    font-size: 2.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    animation: scaleUp 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.popup-content h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--secondary);
}

.popup-content p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

/* --- TESTIMONIALS (YORUMLAR) --- */
#testimonials {
    padding: 140px 0;
}

.test-slider-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
}

.test-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    align-items: stretch;
}

.test-slide {
    min-width: 0;
    display: flex;
}

.test-card {
    padding: 40px 38px;
    text-align: center;
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.test-card::before {
    content: '\201C';
    position: absolute;
    top: 8px;
    left: 28px;
    font-size: 7rem;
    font-family: Georgia, serif;
    color: rgba(0, 180, 216, 0.1);
    line-height: 1;
}

.test-quote {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 28px;
    line-height: 1.7;
    color: var(--text-main);
    position: relative;
    z-index: 2;
    flex-grow: 1;
}

.test-avatar {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    border: 3px solid var(--primary);
    margin: 0 auto 16px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.test-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.test-info h4 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.test-info p {
    font-size: 0.95rem;
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

.test-controls {
    display: none;
}

.test-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 1px solid var(--border-glass-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.05rem;
    color: var(--secondary);
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.test-btn:hover {
    background: var(--primary);
    color: var(--text-light);
    border-color: var(--primary);
    box-shadow: 0 6px 18px var(--primary-glow);
    transform: scale(1.05);
}

/* --- CONTACT & FOOTER --- */
#contact {
    padding: 140px 0 0;
    border-top: 1px solid rgba(0, 180, 216, 0.1);
}

.contact-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 30px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info h2 {
    font-size: 3.2rem;
    margin-bottom: 25px;
}

.contact-info p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 45px;
}

.contact-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 45px;
}

.contact-detail-item h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--secondary);
}

.contact-detail-item p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin: 0 0 6px;
}

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

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 1px solid var(--border-glass-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--secondary);
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.social-icon:hover {
    background: var(--primary);
    color: var(--text-light);
    border-color: var(--primary);
    box-shadow: 0 6px 18px var(--primary-glow);
    transform: translateY(-4px);
}

.contact-map-wrapper {
    width: 100%;
    height: 450px;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 4px solid white;
    box-shadow: var(--shadow);
}

.contact-map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    /* Soft light overlay look for maps */
    filter: saturate(90%) contrast(95%);
}

footer {
    padding: 40px 0;
    border-top: 1px solid rgba(0, 180, 216, 0.08);
    text-align: center;
    background: rgba(255, 255, 255, 0.4);
}

footer p {
    font-size: 1rem;
    color: var(--text-muted);
}

footer span {
    color: var(--primary);
    font-weight: 700;
}


/* ==========================================================================
   ADMIN PANEL: admin.html Specific Styles
   ========================================================================== */
.admin-body {
    display: flex;
    min-height: 100vh;
    background-color: hsl(200, 25%, 95%);
    color: var(--text-main);
}

.admin-sidebar {
    width: 280px;
    background: white;
    border-right: 1px solid rgba(0, 180, 216, 0.15);
    padding: 40px 25px;
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
    left: 0;
    top: 0;
    z-index: 100;
    box-shadow: 4px 0 30px rgba(0,0,0,0.02);
}

.admin-sidebar .logo {
    width: 100%;
    min-height: 58px;
    margin-bottom: 34px;
    padding: 10px 12px;
    justify-content: flex-start;
    gap: 10px;
    border-radius: 16px;
    background: rgba(0, 180, 216, 0.06);
    border: 1px solid rgba(0, 180, 216, 0.12);
    font-size: 1.15rem;
    line-height: 1.1;
    overflow: hidden;
}

.admin-sidebar .logo i {
    flex: 0 0 auto;
    font-size: 1.45rem;
}

.admin-sidebar .logo .site-logo-img {
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    border-radius: 10px;
}

.admin-sidebar .logo span {
    display: block;
    min-width: 0;
    max-width: 170px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.admin-menu-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1;
}

.admin-menu-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 22px;
    border-radius: 12px;
    font-weight: 700;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}

.admin-menu-link:hover, .admin-menu-link.active {
    color: var(--primary);
    background: rgba(0, 180, 216, 0.06);
}

.admin-menu-link.active {
    border-left: 4px solid var(--primary);
}

.admin-logout {
    margin-top: auto;
    border: 1px solid rgba(239, 68, 68, 0.15);
    color: hsl(0, 80%, 55%);
    background: rgba(239, 68, 68, 0.02);
}

.admin-logout:hover {
    background: hsl(0, 80%, 55%);
    color: white;
}

.admin-main {
    flex-grow: 1;
    margin-left: 280px;
    padding: 50px;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    border-bottom: 1px solid rgba(0, 180, 216, 0.08);
    padding-bottom: 25px;
}

.admin-title h2 {
    font-size: 2.4rem;
    font-family: var(--font-heading);
    color: var(--secondary);
}

.admin-title p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.admin-user {
    display: flex;
    align-items: center;
    gap: 14px;
}

.admin-user-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

/* Dashboard Statistics Cards */
.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.stat-card {
    padding: 35px;
    display: flex;
    align-items: center;
    gap: 25px;
}

.stat-icon {
    width: 65px;
    height: 65px;
    border-radius: 16px;
    background: rgba(0, 180, 216, 0.06);
    border: 1px solid var(--border-glass-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.8rem;
}

.stat-info h3 {
    font-size: 2.2rem;
    line-height: 1.2;
    font-family: var(--font-body);
    font-weight: 800;
    color: var(--secondary);
}

.stat-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Tab Panels */
.admin-tab-panel {
    display: none;
}

.admin-tab-panel.active {
    display: block;
    animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Table Design */
.table-responsive {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    text-align: left;
}

.admin-table th {
    background: rgba(0, 180, 216, 0.03);
    border-bottom: 2px solid rgba(0, 180, 216, 0.15);
    padding: 18px 24px;
    font-weight: 800;
    color: var(--secondary);
    font-size: 1rem;
}

.admin-table td {
    padding: 18px 24px;
    border-bottom: 1px solid rgba(0, 180, 216, 0.06);
    font-size: 1rem;
    vertical-align: middle;
}

.admin-table tr:hover {
    background: rgba(0, 180, 216, 0.02);
}

.admin-table img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    object-fit: cover;
    border: 1px solid rgba(0,0,0,0.05);
}

/* Badges for status */
.badge {
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 800;
    display: inline-block;
    text-transform: uppercase;
}

.badge-pending {
    background: rgba(245, 158, 11, 0.1);
    color: hsl(38, 90%, 45%);
    border: 1px solid rgba(245, 158, 11, 0.25);
}

.badge-confirmed {
    background: rgba(16, 185, 129, 0.1);
    color: hsl(150, 80%, 38%);
    border: 1px solid rgba(16, 185, 129, 0.25);
}

.badge-cancelled {
    background: rgba(239, 68, 68, 0.08);
    color: hsl(0, 80%, 55%);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* Action buttons */
.actions-cell {
    display: flex;
    gap: 10px;
}

/* Category drag & drop */
.cat-drag-handle {
    cursor: grab;
    color: var(--text-muted);
    text-align: center;
}

.cat-drag-handle:active {
    cursor: grabbing;
}

tr[data-cat-row][draggable="true"]:hover .cat-drag-handle {
    color: var(--primary);
}

tr.cat-dragging {
    opacity: 0.55;
    background: rgba(0, 180, 216, 0.08);
}

.action-btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition);
    border: 1px solid var(--border-glass-hover);
    background: white;
}

.action-btn.edit {
    color: var(--primary);
}
.action-btn.edit:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.action-btn.delete {
    color: hsl(0, 80%, 55%);
    border-color: rgba(239, 68, 68, 0.2);
}
.action-btn.delete:hover {
    background: hsl(0, 80%, 55%);
    color: white;
    border-color: hsl(0, 80%, 55%);
}

.action-btn.confirm {
    color: hsl(150, 80%, 38%);
    border-color: rgba(16, 185, 129, 0.2);
}
.action-btn.confirm:hover {
    background: hsl(150, 80%, 38%);
    color: white;
    border-color: hsl(150, 80%, 38%);
}

/* Product Modal / Form Styles inside Admin */
.admin-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.admin-card-header h3 {
    font-size: 1.65rem;
    color: var(--secondary);
}

.admin-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.admin-form-card {
    padding: 26px;
}

.admin-form-card h3 {
    margin-bottom: 20px;
    color: var(--secondary);
    font-size: 1.35rem;
}

.site-wide-card {
    grid-column: 1 / -1;
}

.admin-repeat-list {
    display: grid;
    gap: 18px;
}

.admin-repeat-item {
    padding: 18px;
    border: 1px solid rgba(0, 180, 216, 0.12);
    border-radius: var(--border-radius);
    background: rgba(0, 180, 216, 0.03);
}

.admin-repeat-item h4 {
    margin-bottom: 14px;
    color: var(--primary);
}

.admin-save-bar {
    position: sticky;
    bottom: 20px;
    z-index: 20;
    margin-top: 24px;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.admin-save-bar strong {
    display: block;
    color: var(--secondary);
    margin-bottom: 4px;
}

.admin-save-bar p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.admin-upload-btn {
    margin-top: 10px;
    padding: 9px 14px;
    font-size: 0.85rem;
}

.admin-image-preview {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    color: var(--text-muted);
    font-size: 0.78rem;
    word-break: break-all;
}

.admin-image-preview img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    border: 1px solid rgba(0, 180, 216, 0.2);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.75);
    padding: 6px;
}

.admin-favicon-preview img {
    width: 42px;
    height: 42px;
    border-radius: 10px;
}

.hero-slides-preview,
.gallery-images-preview {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
    margin-top: 14px;
}

.hero-slide-preview-item,
.image-list-preview-item {
    border: 1px solid rgba(0, 180, 216, 0.2);
    border-radius: var(--border-radius);
    overflow: hidden;
    background: rgba(0, 180, 216, 0.04);
}

.hero-slide-preview-item img,
.image-list-preview-item img {
    width: 100%;
    height: 90px;
    object-fit: cover;
    display: block;
}

.hero-slide-preview-item span,
.image-list-preview-item span {
    display: block;
    padding: 6px 8px;
    font-size: 0.7rem;
    color: var(--text-muted);
    word-break: break-all;
    line-height: 1.3;
}

/* Login Screen */
.admin-login-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    background: radial-gradient(circle at center, rgba(0, 180, 216, 0.1), var(--bg-dark) 80%);
}

.login-card {
    width: 100%;
    max-width: 440px;
    padding: 50px;
}

.login-card h2 {
    font-size: 2.2rem;
    margin-bottom: 12px;
    text-align: center;
    color: var(--secondary);
}

.login-card p {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 35px;
    font-size: 1rem;
}

/* QR Code Section style */
.qr-generator-card {
    text-align: center;
    padding: 60px;
}

.qr-box {
    background: white;
    padding: 25px;
    border-radius: var(--border-radius);
    display: inline-block;
    margin: 40px auto;
    box-shadow: 0 15px 40px rgba(12, 45, 75, 0.1);
    border: 5px solid var(--primary);
}

.qr-box canvas, .qr-box img {
    display: block;
    margin: 0 auto;
}

.qr-link-info {
    font-family: monospace;
    background: rgba(255, 255, 255, 0.8);
    padding: 14px 24px;
    border-radius: 10px;
    border: 1px solid var(--border-glass-hover);
    margin-bottom: 35px;
    color: var(--secondary);
    font-size: 1.05rem;
    font-weight: 700;
}


/* ==========================================================================
   QR MENU: qr-menu.html Specific Styles
   ========================================================================== */
.qr-menu-body {
    background: var(--bg-gradient);
    padding-bottom: 100px;
}

.qr-menu-header {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 180, 216, 0.15);
    padding: 24px;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

.qr-menu-header h1 {
    font-size: 2.1rem;
    margin-bottom: 6px;
    color: var(--secondary);
}

.qr-menu-header p {
    font-size: 0.9rem;
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 2px;
}

/* Mobile category selector sticky list */
.qr-categories-scroll {
    overflow-x: auto;
    display: flex;
    gap: 12px;
    padding: 18px 24px;
    scrollbar-width: none;
    position: sticky;
    top: 90px;
    background: var(--bg-dark);
    z-index: 99;
    border-bottom: 1px solid rgba(0, 180, 216, 0.08);
}

.qr-categories-scroll::-webkit-scrollbar {
    display: none;
}

.qr-category-btn {
    white-space: nowrap;
    padding: 12px 24px;
    border-radius: 25px;
    border: 1px solid var(--border-glass-hover);
    background: white;
    font-size: 0.95rem;
    font-weight: 700;
    transition: var(--transition);
    color: var(--text-muted);
}

.qr-category-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 4px 12px var(--primary-glow);
}

.qr-search-wrap {
    max-width: 650px;
    margin: 18px auto 0;
    padding: 0 24px;
    position: sticky;
    top: 151px;
    z-index: 98;
}

.qr-search-wrap i {
    position: absolute;
    left: 44px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
}

.qr-search-wrap input {
    width: 100%;
    padding: 15px 18px 15px 48px;
    border: 1px solid rgba(0, 180, 216, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 14px 35px rgba(8, 15, 30, 0.08);
    color: var(--text-main);
    font: inherit;
    outline: none;
}

.qr-search-wrap input:focus {
    border-color: var(--primary);
    box-shadow: 0 14px 35px rgba(0, 180, 216, 0.18);
}

/* Mobile QR Food List Layout */
.qr-menu-container {
    padding: 18px 24px 24px;
    max-width: 760px;
    margin: 0 auto;
}

.qr-section-title {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    margin: 26px 0 14px;
    color: var(--secondary);
    border-bottom: 2px solid rgba(0, 180, 216, 0.15);
    padding-bottom: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.qr-section-title span {
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(0, 180, 216, 0.1);
    color: var(--primary);
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 800;
}

.qr-menu-item {
    display: flex;
    gap: 14px;
    padding: 14px;
    margin-bottom: 12px;
    align-items: center;
    border-radius: var(--border-radius);
}

.qr-menu-item-img {
    width: 78px;
    height: 78px;
    border-radius: 16px;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid rgba(0,0,0,0.05);
}

.qr-menu-item-info {
    flex-grow: 1;
}

.qr-menu-item-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 6px;
    color: var(--text-main);
}

.qr-menu-item-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 6px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.qr-menu-item-price {
    font-weight: 800;
    color: var(--primary);
    font-size: 0.95rem;
}

.qr-empty-state {
    margin-top: 24px;
    padding: 34px 20px;
    text-align: center;
}

.qr-empty-state i {
    margin-bottom: 12px;
    color: var(--primary);
    font-size: 1.8rem;
}

.qr-empty-state h3 {
    margin-bottom: 8px;
    color: var(--secondary);
}

.qr-empty-state p {
    color: var(--text-muted);
}

/* QRMenu.Rest inspired app-style QR menu */
.qr-demo-layout {
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(0, 180, 216, 0.16), transparent 32%),
        linear-gradient(180deg, #eef9fc 0%, #f7fbff 42%, #eef5fb 100%);
    color: var(--text-main);
}

.qr-app-topbar {
    position: sticky;
    top: 0;
    z-index: 120;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    max-width: 820px;
    margin: 0 auto;
    padding: 12px 16px;
    background: linear-gradient(135deg, #08314c, #00a6c8);
    color: #fff;
    box-shadow: 0 14px 35px rgba(8, 49, 76, 0.2);
}

.qr-app-icon {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    cursor: pointer;
}

.qr-app-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.2;
}

.qr-app-title strong {
    font-family: var(--font-heading);
    font-size: 1.05rem;
}

.qr-app-title span {
    font-size: 0.75rem;
    opacity: 0.82;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.qr-app-shell {
    max-width: 820px;
    margin: 0 auto;
    padding: 18px 16px 70px;
}

.qr-business-card,
.qr-search-card,
.qr-feedback-card,
.qr-app-footer {
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 16px 42px rgba(8, 15, 30, 0.08);
    border: 1px solid rgba(0, 180, 216, 0.1);
}

.qr-business-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px;
}

.qr-business-logo {
    width: 66px;
    height: 66px;
    display: grid;
    place-items: center;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.qr-business-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 18px;
}

.qr-business-card span {
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.qr-business-card h1 {
    margin: 4px 0 5px;
    color: var(--secondary);
    font-size: 1.55rem;
}

.qr-business-card p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.qr-search-card {
    position: sticky;
    top: 72px;
    z-index: 110;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 16px 0 22px;
    padding: 13px 16px;
}

.qr-search-card i {
    color: var(--primary);
}

.qr-search-card input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--text-main);
    font: inherit;
}

.qr-home-section {
    margin: 24px 0;
}

.qr-section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.qr-section-heading h2 {
    margin: 0;
    color: var(--secondary);
    font-family: var(--font-heading);
    font-size: 1.28rem;
}

.qr-section-heading span,
.qr-link-btn {
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 800;
}

.qr-link-btn {
    border: 0;
    background: transparent;
    cursor: pointer;
    white-space: nowrap;
}

.qr-horizontal-list {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 122px;
    gap: 14px;
    overflow-x: auto;
    padding: 2px 2px 12px;
    scrollbar-width: none;
}

.qr-horizontal-list::-webkit-scrollbar {
    display: none;
}

.qr-mini-card {
    border: 0;
    padding: 0;
    background: transparent;
    text-align: left;
    cursor: pointer;
}

.qr-mini-card img {
    width: 122px;
    height: 92px;
    display: block;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 12px 28px rgba(8, 15, 30, 0.12);
}

.qr-mini-card span {
    display: -webkit-box;
    margin-top: 8px;
    color: var(--secondary);
    font-size: 0.86rem;
    font-weight: 800;
    line-height: 1.25;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.qr-category-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.qr-category-card {
    min-height: 102px;
    position: relative;
    overflow: hidden;
    padding: 16px;
    border: 0;
    border-radius: 22px;
    background: #fff;
    text-align: left;
    box-shadow: 0 14px 32px rgba(8, 15, 30, 0.08);
    cursor: pointer;
}

.qr-category-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(8, 15, 30, 0.72), rgba(8, 15, 30, 0.18), rgba(8, 15, 30, 0));
    z-index: 1;
}

.qr-category-card span,
.qr-category-card small {
    position: relative;
    z-index: 2;
    display: block;
    max-width: 68%;
    color: #fff;
}

.qr-category-card span {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 900;
    line-height: 1.2;
}

.qr-category-card small {
    margin-top: 6px;
    opacity: 0.86;
    font-weight: 700;
}

.qr-category-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.qr-products-section {
    scroll-margin-top: 132px;
}

.qr-products-list {
    display: grid;
    gap: 12px;
}

.qr-product-row {
    display: grid;
    grid-template-columns: 82px 1fr auto;
    align-items: center;
    gap: 13px;
    padding: 12px;
    border-radius: 22px;
}

.qr-product-row img {
    width: 82px;
    height: 82px;
    object-fit: cover;
    border-radius: 18px;
    background: #fff;
}

.qr-product-row span {
    display: inline-flex;
    margin-bottom: 4px;
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 900;
}

.qr-product-row h3 {
    margin: 0 0 5px;
    color: var(--secondary);
    font-size: 1rem;
    line-height: 1.2;
}

.qr-product-row p {
    display: -webkit-box;
    margin: 0;
    color: var(--text-muted);
    font-size: 0.8rem;
    line-height: 1.35;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.qr-product-row strong {
    align-self: start;
    color: var(--primary);
    font-size: 0.82rem;
    white-space: nowrap;
}

.qr-feedback-card {
    margin-top: 26px;
    padding: 22px;
    text-align: center;
    background:
        linear-gradient(135deg, rgba(0, 180, 216, 0.92), rgba(3, 37, 65, 0.92)),
        url("../assets/images/pdf-extracted/page-15-218-456x477.jpg") center/cover;
    color: #fff;
}

.qr-feedback-card p {
    margin: 0 0 14px;
    font-weight: 700;
}

.qr-feedback-card a {
    display: inline-flex;
    padding: 10px 18px;
    border-radius: 999px;
    background: #fff;
    color: var(--primary);
    font-weight: 900;
}

.qr-app-footer {
    margin-top: 18px;
    padding: 18px;
    text-align: center;
}

.qr-app-footer p {
    margin: 0 0 12px;
    color: var(--text-muted);
    font-size: 0.82rem;
    line-height: 1.5;
}

.qr-app-footer a {
    color: var(--primary);
    font-weight: 900;
}

/* ==========================================================================
   QR APP REDESIGN: topbar, hero, sticky filters, chips, bottom tab bar
   ========================================================================== */
.qr-app .qr-app-shell {
    padding-bottom: 96px;
}

.qr-topbar {
    position: sticky;
    top: 0;
    z-index: 130;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    max-width: 820px;
    margin: 0 auto;
    padding: 11px 14px;
    background: linear-gradient(135deg, #08314c, #00a6c8);
    color: #fff;
    box-shadow: 0 10px 28px rgba(8, 49, 76, 0.22);
}

.qr-topbar-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.qr-topbar-icon:hover {
    background: rgba(255, 255, 255, 0.28);
}

.qr-topbar-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.15;
}

.qr-topbar-title strong {
    font-family: var(--font-heading);
    font-size: 1.06rem;
}

.qr-topbar-title span {
    font-size: 0.72rem;
    opacity: 0.85;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* HERO */
.qr-hero {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    margin-bottom: 6px;
    box-shadow: 0 20px 48px rgba(8, 15, 30, 0.18);
    isolation: isolate;
}

.qr-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0a3a5c, #0c2d4b);
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    z-index: -2;
}

.qr-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 30, 50, 0.55) 0%, rgba(6, 26, 44, 0.72) 60%, rgba(5, 22, 38, 0.92) 100%);
    z-index: -1;
}

.qr-hero-content {
    padding: 24px 22px 22px;
    color: #fff;
    text-align: center;
}

.qr-hero-logo {
    width: 70px;
    height: 70px;
    margin: 0 auto 12px;
    display: grid;
    place-items: center;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    font-size: 1.9rem;
    box-shadow: 0 12px 30px rgba(0, 180, 216, 0.4);
    overflow: hidden;
}

.qr-hero-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 18px;
    background: #fff;
}

.qr-hero-content h1 {
    margin: 0 0 12px;
    font-size: 1.7rem;
    color: #fff;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}

.qr-hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 18px;
}

.qr-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 800;
}

.qr-badge-rating {
    background: rgba(255, 193, 7, 0.95);
    border-color: rgba(255, 193, 7, 0.95);
    color: #4a3500;
}

.qr-hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.qr-haction {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--secondary);
    font-weight: 800;
    font-size: 0.9rem;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
    transition: var(--transition);
}

.qr-haction:hover {
    transform: translateY(-2px);
}

.qr-haction-call {
    background: var(--primary);
    color: #fff;
}

.qr-haction-wa {
    background: #25d366;
    color: #fff;
}

/* STICKY FILTER BAR */
.qr-filterbar {
    position: sticky;
    top: 62px;
    z-index: 115;
    margin: 14px -16px 8px;
    padding: 12px 16px 6px;
    background: linear-gradient(180deg, #f3fafd 78%, rgba(243, 250, 253, 0));
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.qr-search-box {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 26px rgba(8, 15, 30, 0.1);
    border: 1px solid rgba(0, 180, 216, 0.14);
}

.qr-search-box i {
    color: var(--primary);
}

.qr-search-box input {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--text-main);
    font: inherit;
}

.qr-search-clear {
    border: 0;
    background: rgba(8, 15, 30, 0.08);
    color: var(--text-muted);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    cursor: pointer;
    flex-shrink: 0;
}

.qr-chipbar {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    padding-bottom: 4px;
    overflow-x: auto;
    scrollbar-width: none;
}

.qr-chipbar::-webkit-scrollbar {
    display: none;
}

.qr-chip {
    white-space: nowrap;
    flex-shrink: 0;
    padding: 9px 16px;
    border-radius: 999px;
    border: 1px solid rgba(0, 180, 216, 0.2);
    background: #fff;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition);
}

.qr-chip.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    box-shadow: 0 6px 16px var(--primary-glow);
}

.qr-product-info {
    min-width: 0;
}

/* BOTTOM TAB BAR */
.qr-tabbar {
    position: fixed;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 100%;
    max-width: 820px;
    z-index: 140;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.96);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border-top: 1px solid rgba(0, 180, 216, 0.14);
    box-shadow: 0 -10px 30px rgba(8, 15, 30, 0.1);
}

.qr-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 7px 4px;
    border: 0;
    background: transparent;
    color: var(--text-muted);
    font-size: 0.7rem;
    font-weight: 800;
    cursor: pointer;
    border-radius: 14px;
    transition: var(--transition);
}

.qr-tab i {
    font-size: 1.2rem;
}

.qr-tab:active {
    background: rgba(0, 180, 216, 0.08);
}

.qr-tab-call {
    color: var(--primary);
}

.qr-tab-wa {
    color: #25d366;
}

@media (min-width: 821px) {
    .qr-tabbar {
        border-radius: 22px 22px 0 0;
    }
}

@media (max-width: 520px) {
    .qr-app-shell {
        padding-left: 12px;
        padding-right: 12px;
    }

    .qr-filterbar {
        margin-left: -12px;
        margin-right: -12px;
        padding-left: 12px;
        padding-right: 12px;
    }

    .qr-hero-content {
        padding: 20px 16px 18px;
    }

    .qr-hero-content h1 {
        font-size: 1.45rem;
    }

    .qr-hero-logo {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }

    .qr-haction {
        padding: 10px 14px;
        font-size: 0.85rem;
    }

    .qr-category-grid {
        gap: 11px;
    }

    .qr-category-card {
        min-height: 92px;
        padding: 13px;
        border-radius: 18px;
    }

    .qr-category-card span {
        font-size: 0.88rem;
    }

    .qr-product-row {
        grid-template-columns: 74px 1fr;
        align-items: start;
    }

    .qr-product-row img {
        width: 74px;
        height: 74px;
    }

    .qr-product-row strong {
        grid-column: 2;
        margin-top: -2px;
    }
}


/* --- FLOATING CONTACT BUTTONS --- */
.floating-actions {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 900;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.floating-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 20px 13px 16px;
    border-radius: 999px;
    color: #fff;
    font-weight: 800;
    font-size: 0.95rem;
    box-shadow: 0 10px 26px rgba(8, 15, 30, 0.28);
    transition: var(--transition);
}

.floating-btn i {
    font-size: 1.35rem;
    line-height: 1;
}

.floating-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(8, 15, 30, 0.34);
}

.floating-whatsapp {
    background: linear-gradient(135deg, #25d366, #14a63f);
}

.floating-call {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.floating-call i {
    animation: floatCallRing 1.6s ease-in-out infinite;
}

@keyframes floatCallRing {
    0%, 60%, 100% { transform: rotate(0); }
    10%, 30% { transform: rotate(-12deg); }
    20%, 40% { transform: rotate(12deg); }
}

/* --- MOBILE APP-STYLE BOTTOM TAB BAR --- */
.mobile-tabbar {
    display: none;
}

/* ==========================================================================
   RESPONSIVE DESIGN (Media Queries)
   ========================================================================== */
@media (max-width: 992px) {
    .section-title { font-size: 2.8rem; }
    
    /* Navigation mobile overlay */
    .nav-links {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        padding: 60px 0;
        transition: var(--transition);
        z-index: 999;
        box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-toggle {
        display: block;
    }
    
    /* Hero mobile responsive */
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 60px;
        gap: 40px;
    }
    
    .hero-content h1 {
        font-size: 3.8rem;
    }
    
    .hero-btns {
        justify-content: center;
    }
    
    .hero-image-wrapper {
        margin-top: 20px;
    }
    
    .hero-image-frame {
        width: 380px;
        height: 380px;
    }
    
    /* About */
    .about-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-img-box {
        max-width: 550px;
        margin: 0 auto;
    }
    
    /* Reservations */
    .res-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    /* Contact */
    .contact-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    /* Admin mobile adjustment */
    .admin-sidebar {
        width: 80px;
        padding: 30px 15px;
    }
    .admin-sidebar .logo span, .admin-menu-link span {
        display: none;
    }
    .admin-sidebar .logo {
        margin-bottom: 40px;
        padding: 10px;
        justify-content: center;
    }

    .admin-sidebar .logo .site-logo-img {
        width: 34px;
        height: 34px;
    }
    .admin-main {
        margin-left: 80px;
        padding: 30px;
    }

    .admin-form-grid {
        grid-template-columns: 1fr;
    }

    .admin-save-bar {
        align-items: flex-start;
        flex-direction: column;
    }
    .admin-header {
        margin-bottom: 35px;
    }
    .admin-title h2 { font-size: 2rem; }
    
    /* Form structure */
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-details {
        grid-template-columns: 1fr;
    }
    
    .res-card {
        padding: 35px;
    }
    
    .test-card {
        padding: 40px 30px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-btns {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-btns button, .hero-btns a {
        width: 100%;
        justify-content: center;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .menu-tabs {
        gap: 10px;
        padding: 0 20px;
    }

    .menu-tabs-scroll {
        flex-basis: 100%;
        order: 2;
    }

    .menu-category-select {
        flex-basis: 100%;
        order: 1;
    }
    
    .menu-tab {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .home-menu-showcase {
        padding: 0 20px;
    }

    .home-menu-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }

    .home-menu-strip {
        grid-auto-columns: 135px;
    }

    .home-menu-category-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .home-category-card {
        min-height: 106px;
        padding: 14px;
        border-radius: 18px;
    }

    .home-category-card span {
        font-size: 0.9rem;
    }

    .home-products-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile polish pass */
@media (max-width: 992px) {
    html,
    body {
        overflow-x: hidden;
    }

    header {
        padding: 14px 0;
    }

    header.scrolled {
        padding: 10px 0;
    }

    .nav-container {
        padding: 0 18px;
    }

    .logo .site-logo-img {
        width: 82px;
        height: 52px;
    }

    header.scrolled .logo .site-logo-img {
        width: 72px;
        height: 46px;
    }

    .nav-links {
        top: 74px;
        height: calc(100dvh - 74px);
        gap: 0;
        padding: 26px 18px;
    }

    .nav-links li {
        width: min(340px, 100%);
    }

    .nav-links a {
        width: 100%;
        display: flex;
        justify-content: center;
        padding: 16px 18px;
        border-bottom: 1px solid rgba(0, 180, 216, 0.08);
        color: var(--secondary) !important;
        text-shadow: none !important;
    }

    .nav-actions {
        gap: 10px;
    }

    .nav-actions .btn-primary,
    .nav-actions .btn-secondary {
        padding: 9px 13px !important;
        font-size: 0.78rem !important;
    }

    #hero {
        min-height: 100svh;
    }

    .hero-container {
        padding: 112px 16px 78px;
    }

    .hero-content {
        width: 100%;
        max-width: 680px !important;
        padding: 42px 28px !important;
        border-radius: 24px;
    }

    .hero-content h1 {
        font-size: clamp(2.65rem, 8vw, 4rem);
    }

    .hero-content p {
        margin-bottom: 30px;
        font-size: 1rem;
        line-height: 1.65;
    }

    #about,
    #menu,
    #gallery,
    #organization,
    #reservations,
    #testimonials,
    #contact {
        padding-top: 90px;
        padding-bottom: 90px;
    }

    .org-header h2 {
        font-size: clamp(2rem, 9vw, 2.8rem);
    }

    .org-cta {
        flex-direction: column;
        align-items: flex-start;
        padding: 28px 22px;
    }

    .section-title {
        padding: 0 18px;
        font-size: clamp(2.2rem, 7vw, 3rem);
    }

    .about-img-box img {
        max-height: 460px;
        object-fit: cover;
    }

    .home-menu-strip {
        grid-auto-columns: 152px;
        margin-right: -18px;
        padding-right: 18px;
    }

    .home-products-grid {
        grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    }
}

@media (max-width: 640px) {
    .nav-actions .btn-primary,
    .nav-actions .btn-secondary {
        display: none;
    }

    .logo .site-logo-img {
        width: 74px;
        height: 48px;
    }

    header.scrolled .logo .site-logo-img {
        width: 66px;
        height: 42px;
    }

    .hero-container {
        align-items: center;
        padding: 92px 16px 66px;
    }

    .hero-content {
        width: min(100%, 350px);
        padding: 30px 18px !important;
        border-radius: 22px;
        background: rgba(8, 22, 42, 0.68);
    }

    .hero-content h1 {
        font-size: clamp(2rem, 10.5vw, 2.45rem);
        line-height: 1.08;
        margin-bottom: 14px;
        text-wrap: balance;
    }

    .hero-content p {
        margin-bottom: 24px;
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .hero-btns {
        gap: 10px;
    }

    .hero-btns a,
    .hero-btns button {
        width: 100%;
        justify-content: center;
        min-height: 50px;
        padding: 12px 16px;
        font-size: 0.95rem;
    }

    .hero-dots {
        bottom: 24px;
    }

    .about-container,
    .res-container,
    .contact-container,
    .home-menu-showcase,
    .gallery-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .gallery-header {
        margin-bottom: 28px;
    }

    .gallery-header h2 {
        font-size: clamp(2rem, 10vw, 2.8rem);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .gallery-item {
        border-radius: 16px;
    }

    .gallery-lightbox {
        padding: 72px 16px 76px;
    }

    .gallery-lightbox-image {
        max-height: calc(100dvh - 170px);
        border-radius: 18px;
    }

    .gallery-lightbox-close {
        top: 18px;
        right: 18px;
        width: 42px;
        height: 42px;
    }

    .gallery-lightbox-nav {
        top: auto;
        bottom: 18px;
        width: 46px;
        height: 46px;
        transform: none;
    }

    .gallery-lightbox-nav:hover {
        transform: scale(1.04);
    }

    .gallery-lightbox-nav.prev {
        left: 18px;
    }

    .gallery-lightbox-nav.next {
        right: 18px;
    }

    .gallery-lightbox-counter {
        bottom: 25px;
    }

    .about-container {
        gap: 44px;
    }

    .about-img-box img {
        max-height: 340px;
    }

    .about-experience {
        right: 10px;
        bottom: -22px;
        min-width: 122px;
        padding: 18px;
    }

    .about-experience h3 {
        font-size: 2.35rem;
    }

    .about-content h2 {
        font-size: clamp(2rem, 10vw, 2.8rem);
    }

    .home-menu-search {
        padding: 13px 16px;
        border-radius: 18px;
    }

    .home-menu-category-grid {
        grid-template-columns: 1fr;
    }

    .home-products-grid {
        grid-template-columns: 1fr;
    }

    .home-product-card {
        grid-template-columns: 78px 1fr;
        gap: 12px;
        border-radius: 20px;
    }

    .home-product-card img {
        width: 78px;
        height: 78px;
        border-radius: 16px;
    }

    .res-card,
    .contact-form,
    .test-card {
        padding: 24px 18px;
        border-radius: 22px;
    }

    .admin-body {
        display: block;
        padding-bottom: 82px;
    }

    .admin-sidebar {
        top: auto;
        bottom: 0;
        width: 100%;
        height: 72px;
        padding: 8px;
        border-top: 1px solid rgba(0, 180, 216, 0.15);
        border-right: 0;
        flex-direction: row;
        align-items: center;
        gap: 6px;
    }

    .admin-sidebar .logo,
    .admin-logout {
        display: none !important;
    }

    .admin-menu-list {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 6px;
    }

    .admin-menu-link {
        min-width: 0;
        justify-content: center;
        padding: 11px 6px;
        border-radius: 14px;
    }

    .admin-menu-link.active {
        border-left: 0;
        border-bottom: 3px solid var(--primary);
    }

    .admin-menu-link i {
        font-size: 1.05rem;
    }

    .admin-main {
        margin-left: 0;
        padding: 24px 14px 104px;
    }

    .admin-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
        margin-bottom: 24px;
    }

    .admin-title h2 {
        font-size: 1.7rem;
    }

    .admin-form-card,
    .glass-card {
        border-radius: 20px;
    }

    .qr-app-topbar {
        padding: 10px 12px;
    }

    .qr-business-card {
        align-items: flex-start;
        padding: 15px;
    }

    .qr-business-logo {
        width: 56px;
        height: 56px;
        border-radius: 18px;
    }

    .qr-business-card h1 {
        font-size: 1.28rem;
    }

    .qr-business-card p {
        font-size: 0.8rem;
        line-height: 1.35;
    }
}

@media (max-width: 390px) {
    .hero-content {
        width: min(100%, 336px);
        padding: 26px 16px !important;
    }

    .hero-content h1 {
        font-size: 1.95rem;
    }

    .home-product-card,
    .qr-product-row {
        grid-template-columns: 68px 1fr;
    }

    .home-product-card img,
    .qr-product-row img {
        width: 68px;
        height: 68px;
    }

    .qr-category-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   FINAL MOBILE POLISH & GO-LIVE PASS
   ========================================================================== */
@media (max-width: 992px) {
    .org-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    .test-wrapper {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }

    .contact-map-wrapper {
        height: 360px;
    }

    .home-mini-card img {
        height: 160px;
    }
}

@media (max-width: 640px) {
    .floating-actions {
        right: 14px;
        bottom: 14px;
        gap: 10px;
    }

    .floating-btn {
        width: 54px;
        height: 54px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }

    .floating-btn span {
        display: none;
    }

    .floating-btn i {
        font-size: 1.45rem;
    }

    .org-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .org-card {
        padding: 26px 20px;
    }

    .org-icon {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
        margin-bottom: 16px;
    }

    .org-header p {
        font-size: 0.98rem;
    }

    .test-wrapper {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .test-card {
        padding: 30px 22px;
    }

    .test-quote {
        font-size: 1.02rem;
    }

    .contact-map-wrapper {
        height: 300px;
    }

    .home-menu-category-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .home-category-card {
        min-height: 120px;
        padding: 14px;
        border-radius: 18px;
    }

    .home-category-card span {
        font-size: 0.95rem;
    }

    footer {
        padding: 32px 0;
    }
}

@media (max-width: 390px) {
    .home-menu-strip {
        grid-auto-columns: 150px;
    }

    .home-mini-card img {
        height: 140px;
    }
}

/* ==========================================================================
   MOBILE APP SHELL — TAB BAR + COMPACT SPACING
   ========================================================================== */
@media (max-width: 768px) {
    /* App-like compact rhythm: shorter sections so the page isn't endless */
    #about,
    #menu,
    #gallery,
    #organization,
    #reservations,
    #testimonials {
        padding-top: 58px !important;
        padding-bottom: 58px !important;
    }

    #contact {
        padding-top: 58px !important;
    }

    .section-title {
        margin-bottom: 26px !important;
    }

    .home-menu-block {
        margin-top: 24px;
    }

    .about-container,
    .res-container,
    .contact-container {
        gap: 34px !important;
    }

    .about-content h2,
    .res-content h2,
    .contact-info h2 {
        margin-bottom: 16px;
    }

    .about-content p,
    .res-content p,
    .contact-info p {
        margin-bottom: 20px;
    }

    .gallery-header,
    .org-header {
        margin-bottom: 26px;
    }

    .org-grid {
        margin-bottom: 26px;
    }

    .res-info-list {
        gap: 18px;
    }

    /* Keep hero slider dots above the tab bar */
    .hero-dots {
        bottom: 92px;
    }

    /* App-style bottom tab bar */
    .mobile-tabbar {
        display: flex;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 950;
        align-items: flex-end;
        justify-content: space-around;
        gap: 4px;
        padding: 8px 6px calc(8px + env(safe-area-inset-bottom, 0px));
        background: rgba(255, 255, 255, 0.94);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-top: 1px solid rgba(0, 180, 216, 0.16);
        box-shadow: 0 -8px 30px rgba(8, 15, 30, 0.12);
    }

    .tabbar-item {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 3px;
        padding: 4px 2px;
        color: var(--text-muted);
        font-size: 0.64rem;
        font-weight: 800;
        letter-spacing: 0.2px;
        text-align: center;
    }

    .tabbar-item i {
        font-size: 1.2rem;
    }

    .tabbar-item.active {
        color: var(--primary);
    }

    .tabbar-whatsapp {
        color: #14a63f;
    }

    /* Raised center call action */
    .tabbar-call {
        position: relative;
    }

    .tabbar-call i {
        width: 52px;
        height: 52px;
        margin-top: -28px;
        margin-bottom: 2px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        color: #fff;
        font-size: 1.3rem;
        background: linear-gradient(135deg, var(--primary), var(--secondary));
        box-shadow: 0 10px 24px var(--primary-glow);
        border: 4px solid #fff;
    }

    .tabbar-call {
        color: var(--secondary);
    }

    /* Hide desktop floating buttons; tab bar carries the actions */
    .floating-actions {
        display: none !important;
    }

    /* Reserve space so fixed bar never covers content/footer */
    body:not(.admin-body) {
        padding-bottom: 74px;
    }

    footer {
        padding-bottom: 26px;
    }
}
