/* 
   ChaiTapri Premium Cafe & Restaurant Style
   Theme: Warm, Elegant, Modern
   Colors: Dark Brown (#4E342E), Coffee Brown (#6D4C41), Cream (#FFF8E7), White (#FFFFFF), Accent Orange (#FF9800)
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* Theme CSS Variables */
:root {
    --primary-color: #4E342E; /* Dark Brown */
    --primary-light: #6D4C41; /* Coffee Brown */
    --accent-color: #FF9800; /* Accent Orange */
    --bg-cream: #FFF8E7; /* Soft Cream */
    --text-dark: #2A1E1C;
    --text-muted: #5D5451;
    --border-color: rgba(78, 52, 46, 0.15);
    --border-hover: rgba(255, 152, 0, 0.4);
    
    --shadow-sm: 0 4px 10px rgba(78, 52, 46, 0.05);
    --shadow-md: 0 8px 24px rgba(78, 52, 46, 0.1);
    --shadow-lg: 0 16px 40px rgba(78, 52, 46, 0.15);
    
    --font-heading: 'Outfit', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-cream);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

@media (max-width: 768px) {
    body {
        padding-bottom: 60px; /* Space for mobile floating bottom bar */
    }
}

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

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

a:hover {
    color: var(--accent-color);
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-cream);
}
::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

/* Typography elements */
.text-gold {
    color: var(--accent-color) !important;
}
.text-cream {
    color: var(--bg-cream) !important;
}
.bg-dark-brown {
    background-color: var(--primary-color) !important;
}
.bg-coffee {
    background-color: var(--primary-light) !important;
}

.section-padding {
    padding: 90px 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 50px 0;
    }
}

.section-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

.section-subtitle {
    font-family: var(--font-heading);
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

/* Premium Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.animate-fade-in {
    animation: fadeIn var(--transition-normal) forwards;
    opacity: 0;
}

/* Buttons overriding */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 26px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    border: 1px solid var(--primary-color);
}
.btn-primary:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-accent {
    background: var(--accent-color);
    color: white;
    border: 1px solid var(--accent-color);
}
.btn-accent:hover {
    background: #e68a00;
    border-color: #e68a00;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}
.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
}
.btn-whatsapp:hover {
    background-color: #20ba5a;
    color: white;
    transform: translateY(-2px);
}

/* Business Status Badges */
.business-status-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 8px;
    border-radius: 4px;
}
.badge-open {
    background: rgba(37, 211, 102, 0.12);
    color: #25D366;
    border: 1px solid rgba(37, 211, 102, 0.3);
}
.badge-closed {
    background: rgba(220, 53, 69, 0.12);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.3);
}

.hero-status-card {
    display: inline-flex;
    align-items: center;
    background: rgba(78, 52, 46, 0.55);
    border: 1px solid rgba(255, 248, 231, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 8px 18px;
    border-radius: 50px;
    margin-top: 15px;
    margin-bottom: 20px;
    color: white;
    font-size: 0.95rem;
}

/* Header Navbar */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 248, 231, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    transition: all var(--transition-normal);
}

header.header-scrolled {
    padding: 5px 0;
    background: rgba(255, 248, 231, 0.98);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

.logo-img {
    height: 48px;
    width: 48px;
    object-fit: contain;
    border-radius: 50%;
    border: 2px solid var(--accent-color);
    background: white;
}

.brand-name {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 25px;
    list-style: none;
    margin-bottom: 0;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--primary-color);
    padding: 5px 0;
    position: relative;
}

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

.nav-link:hover {
    color: var(--accent-color);
}

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

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

.header-social-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

.header-social-icon:hover {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--bg-cream);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-logo {
    height: 80px;
    width: 80px;
    border-radius: 50%;
    border: 3px solid var(--accent-color);
    background: white;
    margin-bottom: 20px;
    animation: pulse 1.8s infinite;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(78, 52, 46, 0.1);
    border-radius: 50%;
    border-top-color: var(--accent-color);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Hero Slideshow Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    overflow: hidden;
}

.hero-slides-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
}

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

.hero .container {
    position: relative;
    z-index: 10;
}

.hero-content {
    max-width: 650px;
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 152, 0, 0.1);
    border: 1px solid var(--accent-color);
    border-radius: 50px;
    color: var(--accent-color);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: white;
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.9);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

.hero-description {
    font-size: 1.15rem;
    color: #f7eded;
    margin-bottom: 35px;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.9);
}

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

/* Chef Specials Highlights */
.popular-section {
    background-color: white;
}

.popular-card {
    background: var(--bg-cream);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.popular-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.popular-img-container {
    position: relative;
    height: 180px;
    overflow: hidden;
    cursor: pointer;
}

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

.popular-card:hover .popular-img-container img {
    transform: scale(1.1);
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 4px 10px;
    background: var(--accent-color);
    border-radius: 4px;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.popular-content {
    padding: 20px;
}

.popular-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.popular-header h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
}

.popular-header h4:hover {
    color: var(--accent-color);
}

.popular-header .price {
    font-family: var(--font-heading);
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.15rem;
}

.popular-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.popular-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 10px;
    border-radius: var(--border-radius-sm);
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--border-color);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
}

.popular-card:hover .popular-btn {
    background: #25D366;
    color: white;
    border-color: #25D366;
}

/* Menu Filter Tabs & Cards */
.menu-section {
    background-color: var(--bg-cream);
}

.category-tabs {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 10px 5px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
}

.category-tabs::-webkit-scrollbar {
    height: 4px;
}
.category-tabs::-webkit-scrollbar-thumb {
    background: rgba(78, 52, 46, 0.2);
}

.category-tab {
    flex: 0 0 auto;
    scroll-snap-align: start;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.category-tab i {
    font-size: 1rem;
    color: var(--accent-color);
}

.category-tab.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-sm);
}

.category-tab.active i {
    color: var(--accent-color);
}

.category-tab:hover:not(.active) {
    border-color: var(--accent-color);
    background: #fffdf9;
}

/* Menu Search */
.search-container {
    max-width: 500px;
    margin: 0 auto 40px auto;
    position: relative;
}

.search-box {
    width: 100%;
    padding: 16px 24px 16px 50px;
    border-radius: 50px;
    background: white;
    border: 1.5px solid var(--border-color);
    color: var(--text-dark);
    font-size: 1rem;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.search-box:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 15px rgba(255, 152, 0, 0.1);
}

.search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Food Cards */
.food-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.food-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.card-img-container {
    position: relative;
    height: 200px;
    width: 100%;
    overflow: hidden;
    cursor: pointer;
}

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

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

.card-overlay {
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    pointer-events: none;
}

.diet-badge {
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
    gap: 5px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.diet-badge.veg {
    background: rgba(37, 211, 102, 0.85);
    color: white;
}
.diet-badge.non-veg {
    background: rgba(255, 51, 51, 0.85);
    color: white;
}

.tag-badge {
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    font-family: var(--font-heading);
}

.tag-badge.best-seller {
    background: var(--accent-color);
}
.tag-badge.chef-special {
    background: var(--primary-light);
}
.tag-badge.popular {
    background: #00bcd4;
}

.card-body {
    padding: 24px;
}

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

.card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    cursor: pointer;
}

.card-title:hover {
    color: var(--accent-color);
}

.card-price {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--accent-color);
    flex-shrink: 0;
}

.card-description {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.5;
}

.btn-order {
    background-color: transparent;
    border: 1.5px solid var(--border-color);
    color: var(--primary-color);
    padding: 12px;
    border-radius: var(--border-radius-sm);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all var(--transition-normal);
}

.food-card:hover .btn-order {
    background-color: #25D366;
    border-color: #25D366;
    color: white;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* About Us Section styling */
.about-section {
    background-color: white;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

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

.about-feature-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
    background: var(--bg-cream);
    padding: 12px;
    border-radius: 50%;
}

.about-feature-item h5 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 4px;
}

/* Instagram Feed Gallery */
.gallery-section {
    background-color: var(--bg-cream);
}

.gallery-item {
    position: relative;
    height: 180px;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    border: 1px solid var(--border-color);
    cursor: pointer;
}

.gallery-item img {
    transition: transform var(--transition-slow);
}

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

.gallery-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(78, 52, 46, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

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

.gallery-hover .metric {
    color: white;
    font-size: 0.95rem;
    font-family: var(--font-heading);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.gallery-hover i {
    color: var(--accent-color);
}

/* Follow CTA section */
.follow-cta-section {
    background: linear-gradient(rgba(78, 52, 46, 0.9), rgba(78, 52, 46, 0.95)),
                url('images/hero_banner.png') no-repeat center center;
    background-size: cover;
    padding: 80px 0;
    text-align: center;
}

.follow-cta-container {
    max-width: 700px;
    margin: 0 auto;
}

.follow-cta-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.follow-card {
    background: rgba(255, 248, 231, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 24px 35px;
    border-radius: var(--border-radius-md);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    min-width: 180px;
    transition: all var(--transition-normal);
}

.follow-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    background: rgba(255, 248, 231, 0.1);
}

.follow-card i {
    font-size: 2.2rem;
    color: var(--accent-color);
}

.follow-card span {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
}

/* FAQ Accordions overriding Bootstrap */
.faq-section {
    background-color: white;
}

.accordion-item {
    border-radius: var(--border-radius-sm) !important;
    border: 1.5px solid var(--border-color) !important;
    margin-bottom: 12px;
    overflow: hidden;
}

.accordion-button {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary-color) !important;
    background-color: white !important;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background-color: var(--bg-cream) !important;
    border-bottom: 1.5px solid var(--border-color);
}

.accordion-button::after {
    filter: sepia(1) saturate(5) hue-rotate(340deg); /* Style accordion icon in primary brown colors */
}

/* Reviews Styling */
.reviews-section {
    background-color: var(--bg-cream);
}

.review-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 30px;
    transition: all var(--transition-normal);
}

.review-card:hover {
    border-color: var(--accent-color);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.review-name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-color);
}

.review-location {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.review-text {
    font-style: italic;
    color: var(--text-dark);
}

/* Contact Form styles */
.contact-card-container {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 40px;
}

.form-control {
    border-radius: var(--border-radius-sm);
    border: 1.5px solid var(--border-color);
    padding: 12px 16px;
    font-size: 0.95rem;
}
.form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 10px rgba(255, 152, 0, 0.15);
}

/* Triple Floating action shortcut dashboard */
.floating-dashboard {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.floating-dashboard.visible {
    opacity: 1;
    transform: translateY(0);
}

.floating-action-btn {
    pointer-events: auto;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
}

.floating-action-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.floating-action-btn .tooltip {
    position: absolute;
    right: 70px;
    background: var(--primary-color);
    border: 1px solid var(--accent-color);
    padding: 6px 12px;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: all var(--transition-normal);
    pointer-events: none;
}

.floating-action-btn:hover .tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* Floating icons colors overrides */
.float-whatsapp {
    background-color: #25D366;
    animation: pulse 2.5s infinite;
}
.float-call {
    background-color: var(--primary-color);
    border: 1px solid var(--accent-color);
}
.float-directions {
    background-color: #4285F4;
}

/* Footer Section Grid layout */
footer {
    background-color: #1A0F0D;
    color: #D7CCC8;
    border-top: 2px solid var(--accent-color);
    padding: 80px 0 30px 0;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--accent-color);
    margin-bottom: 24px;
    font-weight: 600;
    position: relative;
}

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

.footer-about p {
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #D7CCC8;
    font-size: 0.9rem;
}
.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 4px;
}

.contact-info {
    list-style: none;
    padding-left: 0;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.contact-info i {
    color: var(--accent-color);
    margin-top: 4px;
}

.social-footer-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-footer-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.social-footer-icon:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-3px);
}

.footer .association-text {
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    margin-top: 10px;
    opacity: 1;
}

.map-container {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    height: 180px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.85rem;
}

/* Mobile Sticky Bottom Action Bar details */
@media (max-width: 768px) {
    .floating-dashboard {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: 60px;
        background: rgba(26, 15, 13, 0.98);
        border-top: 1px solid var(--accent-color);
        display: flex;
        flex-direction: row;
        gap: 0;
        padding: 0;
        margin: 0;
        z-index: 2000;
        box-shadow: 0 -4px 20px rgba(0,0,0,0.6);
        pointer-events: auto;
        opacity: 1;
        transform: none;
    }
    
    .floating-dashboard.visible {
        transform: none;
    }

    .floating-action-btn {
        flex: 1;
        width: 100%;
        height: 100%;
        border-radius: 0;
        box-shadow: none;
        display: flex;
        flex-direction: column;
        gap: 4px;
        font-size: 1.15rem;
        background: transparent !important;
        border: none;
    }

    .floating-action-btn i {
        font-size: 1.2rem;
    }
    
    .floating-action-btn::after {
        content: attr(data-label);
        font-size: 0.7rem;
        font-family: var(--font-heading);
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .floating-action-btn .tooltip {
        display: none !important;
    }

    .floating-action-btn.float-whatsapp {
        color: #25D366;
        border-left: 1px solid rgba(255, 255, 255, 0.05);
        border-right: 1px solid rgba(255, 255, 255, 0.05);
        animation: none;
    }

    .floating-action-btn.float-call {
        color: var(--accent-color);
    }

    .floating-action-btn.float-directions {
        color: #4285F4;
    }
    
    .floating-action-btn:active {
        background: rgba(255,255,255,0.05) !important;
    }
}

/* Sister Brand Association Cards */
.sister-brand-assoc-card {
    transition: all var(--transition-normal);
}
.sister-brand-assoc-card:hover {
    border-color: var(--accent-color) !important;
    background: rgba(78, 52, 46, 0.06) !important;
    transform: translateY(-2px);
}

.sister-brand-homepage-section {
    transition: all var(--transition-normal);
}
.sister-brand-homepage-section img {
    transition: transform var(--transition-normal);
}
.sister-brand-homepage-section:hover img {
    transform: scale(1.05);
}

/* Admin Edit Mode Overlay Styling */
.card-img-container {
    position: relative;
    overflow: hidden;
}
.admin-edit-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(78, 52, 46, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 5;
}
.food-card:hover .admin-edit-overlay,
.popular-card:hover .admin-edit-overlay {
    opacity: 1;
}
.admin-edit-overlay label {
    cursor: pointer;
    background-color: var(--accent-orange, #FF9800);
    border: none;
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
    box-shadow: 0 4px 6px rgba(0,0,0,0.15);
    transition: transform 0.2s ease;
}
.admin-edit-overlay label:hover {
    transform: scale(1.05);
}
.admin-reset-btn {
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: none;
}

