/* Container Center Website - Main Styles */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Knewave&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200;300;400;500;600;700;800;900&display=swap');

/* CSS Variables for Colors */
:root {
    --navy-black: #0B0F19;
    --amber-gold: #F59E0B;
    --off-white: #E0E0E0;
    --light-gray: #9CA3AF;
    --dark-gray: #374151;
    --gradient-gold: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
}

.kiosk-partners {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    align-items: center;
    width: 100%;
}

.vendor-card .kiosk-partner-logo {
    width: 100% !important;
    height: auto !important;
    max-height: 34px;
    object-fit: contain;
    opacity: 0.9;
    display: block;
}

@media (max-width: 768px) {
    .vendor-card .kiosk-partner-logo {
        max-height: 28px;
    }
}

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

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--navy-black);
    color: var(--off-white);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Arabic text styling */
[data-lang="ar"] body,
.arabic-text {
    font-family: 'Cairo', sans-serif;
}

/* Ensure hero title uses Cairo for Arabic */
[data-lang="ar"] .hero-content h1[data-i18n="hero_title"],
.hero-content h1[data-i18n="hero_title"].arabic {
    font-family: 'Cairo', sans-serif;
    overflow: visible !important;
    padding-bottom: 0.2em;
    line-height: 1.2;
}

/* Prevent clipping of Arabic character descenders */
.hero-content h1[data-i18n="hero_title"].arabic {
    overflow: visible !important;
    padding-bottom: 0.3em;
    line-height: 1.1;
    display: inline-block;
    vertical-align: top;
    max-width: 100%;
}

/* Arabic/Hebrew Font Support */
body.rtl {
    font-family: 'Cairo', 'Poppins', sans-serif;
    direction: rtl;
}

/* Typography */
.font-display {
    font-family: 'Knewave', cursive;
}

/* Language Switcher */
.language-switcher {
    position: relative;
    z-index: 50;
    display: flex;
    align-items: center;
}

.lang-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(11, 15, 25, 0.9);
    border: 1px solid var(--amber-gold);
    border-radius: 8px;
    color: var(--amber-gold);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    min-width: 110px;
    justify-content: space-between;
    font-size: 0.95rem;
    height: 44px; /* Match height with navbar */
}

.lang-dropdown-toggle:hover {
    background: #D97706;
    transform: translateY(-1px);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 4px;
    background: rgba(11, 15, 25, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    border: 1px solid rgba(245, 158, 11, 0.3);
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.lang-dropdown:not(.hidden) {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.lang-option {
    display: block;
    width: 100%;
    padding: 10px 16px;
    border: none;
    background: transparent;
    color: var(--off-white);
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    text-align: left;
}

.lang-option:hover {
    background: rgba(245, 158, 11, 0.2);
    color: var(--amber-gold);
}

.lang-option.active {
    background: rgba(245, 158, 11, 0.1);
    color: var(--amber-gold);
}

/* Dropdown arrow rotation */
.language-switcher.open #dropdown-arrow {
    transform: rotate(180deg);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(11, 15, 25, 0.7), rgba(11, 15, 25, 0.7));
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out;
}

.hero p {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.3s both;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes kenBurns {
    0% {
        transform: scale(1) translate(0, 0);
    }
    25% {
        transform: scale(1.08) translate(-1%, -1%);
    }
    50% {
        transform: scale(1.12) translate(1%, 0.5%);
    }
    75% {
        transform: scale(1.06) translate(-0.5%, 1%);
    }
    100% {
        transform: scale(1) translate(0, 0);
    }
}

.ken-burns {
    animation: kenBurns 25s ease-in-out infinite;
    will-change: transform;
}

/* Navigation */
nav {
    position: fixed;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: bold;
}

.nav-link {
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--amber-gold) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

/* Sections */
section {
    padding: 5rem 0;
    position: relative;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 3rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Cards */
.card {
    background: rgba(55, 65, 81, 0.5);
    border-radius: 1rem;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(245, 158, 11, 0.2);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--amber-gold);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.2);
}

/* Vendor Cards */
.vendor-card {
    background: rgba(55, 65, 81, 0.6);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: center;
    text-align: center;
}

.vendor-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(245, 158, 11, 0.3);
    border-color: var(--amber-gold);
}

.vendor-card:hover > img {
    box-shadow: 0 0 30px rgba(245, 158, 11, 0.8);
}

.vendor-card > img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.5);
    transition: box-shadow 0.3s ease;
    display: block;
    margin: 0 auto;
}

.vendor-card h3 {
    font-family: 'Knewave', cursive;
    font-size: 1.5rem;
    color: var(--amber-gold);
    margin-bottom: 12px;
    min-height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vendor-card p {
    color: var(--off-white);
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
    display: flex;
    align-items: center;
    text-align: center;
    min-height: 3rem;
}

.vendor-card .flex {
    margin-top: auto;
}

/* Mobile-specific fixes for vendor logos */
@media (max-width: 768px) {
    .vendor-card > img {
        height: 150px !important;
        width: 150px !important;
        padding: 5px;
        object-fit: cover;
        border: none;
        box-shadow: none;
        aspect-ratio: 1/1;
        margin: 0 auto;
        display: block;
        border-radius: 8px;
    }
    
    /* Ensure vendor card content is centered */
    .vendor-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* Event Cards */
.event-card {
    background: rgba(55, 65, 81, 0.6);
    border: 1px solid rgba(245, 158, 11, 0.3);
    transition: all 0.3s ease;
}

.event-card:hover {
    background: rgba(55, 65, 81, 0.8);
    border-color: var(--amber-gold);
}

/* Action Buttons */
.action-button {
    background: var(--gradient-gold);
    color: var(--navy-black);
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.action-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(245, 158, 11, 0.4);
}

/* Gallery */
.masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
    max-width: none;
    width: 100%;
}

.masonry-item {
    break-inside: avoid;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: var(--navy-black);
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(245, 158, 11, 0.3);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* Responsive gallery adjustments */
@media (max-width: 768px) {
    .masonry-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
        padding: 15px;
    }
}

/* Restaurant Store Page Styles */
#restaurant-page {
    backdrop-filter: blur(10px);
}

.menu-category {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(245, 158, 11, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--amber-gold);
}

.menu-category h4 {
    border-bottom: 1px solid rgba(245, 158, 11, 0.3);
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

/* Social Media Links */
.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 14px;
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.social-link.facebook {
    background: #1877f2;
    color: white;
}

.social-link.whatsapp {
    background: #25d366;
    color: white;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Button Styles */
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid var(--amber-gold);
    color: var(--amber-gold);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
    min-width: 44px;
}

.btn-secondary:hover {
    background: var(--amber-gold);
    color: var(--navy-black);
    transform: translateY(-2px);
}

/* Enquiry Form WhatsApp Button */
.action-button.whatsapp {
    background: #25d366;
    border-color: #25d366;
    color: white;
}

.action-button.whatsapp:hover {
    background: #128c7e;
    border-color: #128c7e;
    color: white;
}

/* Creative Social Media Integration */
.social-media-floating {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    cursor: default;
}

.social-media-toggle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--amber-gold), #fbbf24);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-media-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(245, 158, 11, 0.6);
}

.social-media-toggle i {
    font-size: 24px;
    color: var(--navy-black);
    z-index: 2;
}

.social-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--amber-gold);
    animation: socialPulse 2s infinite;
    opacity: 0.7;
}

@keyframes socialPulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.3;
    }
    100% {
        transform: scale(1);
        opacity: 0.7;
    }
}

.social-media-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 1;
    transform: translateX(0);
    transition: all 0.4s ease;
    pointer-events: all;
}

.social-media-floating.hidden .social-media-links {
    opacity: 0;
    transform: translateX(100px);
    pointer-events: none;
}

/* Draggable state for social media bar when closed */
.social-media-floating:not(.hidden) {
    cursor: grab;
}

.social-media-floating:not(.hidden):active {
    cursor: grabbing;
}

.social-link-float {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.social-link-float:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.social-link-float.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link-float.facebook {
    background: #1877f2;
}

.social-link-float.tiktok {
    background: linear-gradient(45deg, #ff0050, #00f2ea);
}

.social-link-float.waze {
    background: #33ccff;
}

.social-link-float.waze {
    background: #33ccff;
}

.social-link-float i {
    color: white;
    font-size: 20px;
    z-index: 2;
}

.social-link-float .waze-icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    border-radius: 50%;
}

.social-label {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.social-link-float:hover .social-label {
    opacity: 1;
    transform: translateY(-50%) translateX(-10px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .social-media-floating {
        right: 15px;
        gap: 10px;
    }
    
    .social-media-toggle {
        width: 50px;
        height: 50px;
    }
    
    .social-media-toggle i {
        font-size: 20px;
    }
    
    .social-link-float {
        width: 45px;
        height: 45px;
    }
    
    .social-link-float i {
        font-size: 18px;
    }
    
    .social-label {
        display: none;
    }
}

/* Language Switcher Dropdown Styles */
.language-switcher {
    position: relative;
    z-index: 50;
    display: flex;
    align-items: center;
}

/* Mobile Language Switcher */
.lang-dropdown-toggle-mobile {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 10px;
    background: rgba(11, 15, 25, 0.9);
    border: 1px solid var(--amber-gold);
    border-radius: 6px;
    color: var(--amber-gold);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    min-width: 80px;
    justify-content: space-between;
    font-size: 0.875rem; /* text-sm */
    height: 40px; /* Match height with navbar */
}

.lang-dropdown-toggle-mobile:hover {
    background: rgba(245, 158, 11, 0.1);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

.language-switcher.open .lang-dropdown-toggle-mobile {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom-color: transparent;
}

.language-switcher.open #dropdown-arrow-mobile {
    transform: rotate(180deg);
}

.lang-dropdown-mobile {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(11, 15, 25, 0.95);
    border: 1px solid var(--amber-gold);
    border-top: none;
    border-radius: 0 0 6px 6px;
    backdrop-filter: blur(10px);
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 60;
}

.lang-dropdown-mobile.hidden {
    opacity: 0;
    transform: translateY(-5px);
    pointer-events: none;
}

.lang-option-mobile {
    display: block;
    width: 100%;
    padding: 8px 10px;
    background: transparent;
    border: none;
    color: var(--off-white);
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.875rem; /* text-sm */
}

.lang-option-mobile:hover {
    background: rgba(245, 158, 11, 0.1);
    color: var(--amber-gold);
}

.lang-option-mobile.active {
    background: rgba(245, 158, 11, 0.2);
    color: var(--amber-gold);
}

.lang-option-mobile:not(:last-child) {
    border-bottom: 1px solid rgba(245, 158, 11, 0.2);
}

.lang-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(11, 15, 25, 0.9);
    border: 1px solid var(--amber-gold);
    border-radius: 8px;
    color: var(--amber-gold);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    min-width: 110px;
    justify-content: space-between;
    font-size: 0.95rem;
    height: 44px; /* Match height with navbar */
}

.lang-dropdown-toggle:hover {
    background: rgba(245, 158, 11, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.language-switcher.open .lang-dropdown-toggle {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom-color: transparent;
}

.language-switcher.open #dropdown-arrow {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(11, 15, 25, 0.95);
    border: 1px solid var(--amber-gold);
    border-top: none;
    border-radius: 0 0 8px 8px;
    backdrop-filter: blur(10px);
    overflow: hidden;
    transition: all 0.3s ease;
}

.lang-dropdown.hidden {
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
}

.lang-option {
    display: block;
    width: 100%;
    padding: 10px 14px;
    background: transparent;
    border: none;
    color: var(--off-white);
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.95rem;
}

.lang-option:hover {
    background: rgba(245, 158, 11, 0.1);
    color: var(--amber-gold);
}

.lang-option.active {
    background: rgba(245, 158, 11, 0.2);
    color: var(--amber-gold);
}

.lang-option:not(:last-child) {
    border-bottom: 1px solid rgba(245, 158, 11, 0.2);
}

/* Professional Restaurant Store Pages */
#restaurant-hero-slider {
    background: linear-gradient(135deg, var(--navy-black), #1f2937);
}

.restaurant-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.restaurant-hero-image.active {
    opacity: 1;
}

/* Menu Slider Styles */
#menu-slider {
    min-height: 400px;
    background: rgba(245, 158, 11, 0.05);
}

#menu-slides {
    height: 400px;
}

.menu-slide {
    min-width: 100%;
    flex-shrink: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Slider Controls */
#menu-prev, #menu-next {
    opacity: 0.8;
    transition: all 0.3s ease;
}

#menu-prev:hover, #menu-next:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

/* Slider Indicators */
.menu-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.menu-indicator.active {
    background: var(--amber-gold);
    transform: scale(1.2);
}

/* Enhanced Social Media Links */
#restaurant-social .social-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-width: 140px;
    justify-content: center;
}

#restaurant-social .social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

#restaurant-social .social-link i {
    font-size: 20px;
}

/* Info Cards Enhancement */
.card {
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--amber-gold), #fbbf24);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card:hover::before {
    opacity: 1;
}

/* Haat Delivery Button Styling */
.social-link-float.haat {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
}

.social-link-float.haat:hover {
    background: linear-gradient(135deg, #e55a2b, #e8851a);
    transform: translateY(-3px);
}

.haat-icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    /* Remove filter to show original image colors */
}

.social-link-float.haat {
    width: 50px;
    height: 50px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.social-link-float.haat .social-label {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link-float.haat:hover .social-label {
    opacity: 1;
}

/* Instagram Stories Section */
.stories-container {
    position: relative;
    overflow: visible;
    border-radius: 20px;
    background: rgba(17, 24, 39, 0.8);
    backdrop-filter: blur(10px);
    padding: 20px;
    width: 100%;
}

.stories-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 0;
}

.story-item {
    width: 100%;
    aspect-ratio: 9/16; /* Phone aspect ratio */
    min-height: 400px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 4px solid transparent;
    background: linear-gradient(135deg, var(--amber-gold), #fbbf24);
    padding: 4px;
}

.story-item:hover {
    transform: translateY(-8px) scale(1.05);
    border-color: var(--amber-gold);
    box-shadow: 0 20px 40px rgba(245, 158, 11, 0.3);
}

.story-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    background: var(--navy-black);
    cursor: pointer;
    transition: all 0.3s ease;
}

.story-video:hover {
    transform: scale(1.02);
}

.story-video[controls] {
    cursor: default;
}

.story-video[controls]:hover {
    transform: none;
}

.story-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 16px 12px 12px;
    color: white;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    display: none;
}

.story-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: rgba(245, 158, 11, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.story-item:hover .story-play-icon {
    opacity: 1;
}

/* Story Navigation - Hidden for grid layout */
.story-nav {
    display: none;
}

/* Drop Point Modal */
.drop-point-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.drop-point-modal.active {
    opacity: 1;
    visibility: visible;
}

.drop-point-modal-content {
    background: linear-gradient(135deg, var(--navy-black), #1f2937);
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    border: 2px solid var(--amber-gold);
    box-shadow: 0 20px 60px rgba(245, 158, 11, 0.3);
}

.drop-point-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    border-bottom: 1px solid rgba(245, 158, 11, 0.3);
}

.drop-point-modal-title {
    font-family: 'Knewave', cursive;
    font-size: 1.8rem;
    color: var(--amber-gold);
    margin: 0;
}

.drop-point-modal-close {
    background: none;
    border: none;
    color: var(--amber-gold);
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.drop-point-modal-close:hover {
    background: rgba(245, 158, 11, 0.2);
    transform: scale(1.1);
}

.drop-point-modal-body {
    padding: 32px;
}

.drop-point-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 24px;
    padding: 20px;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 12px;
    border-left: 4px solid var(--amber-gold);
}

.drop-point-step:last-child {
    margin-bottom: 0;
}

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--amber-gold);
    color: var(--navy-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
}

.drop-point-step p {
    color: var(--off-white);
    line-height: 1.6;
    margin: 0;
    font-size: 16px;
}

/* Enhanced Vendor Cards for Drop Point */
.grab-go-section {
    background: rgba(245, 158, 11, 0.1);
    padding: 16px;
    border-radius: 12px;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

/* Menu Slider Styles */
#menu-slider {
    height: 70vh;
    min-height: 500px;
    max-height: 800px;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: var(--navy-black);
}

#menu-slides {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.menu-slide {
    min-width: 100%;
    flex-shrink: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.menu-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
}

/* Menu Navigation Buttons */
#menu-prev, #menu-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(245, 158, 11, 0.9);
    color: var(--navy-black);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

#menu-prev {
    left: 20px;
}

#menu-next {
    right: 20px;
}

#menu-prev:hover, #menu-next:hover {
    background: var(--amber-gold);
    transform: translateY(-50%) scale(1.1);
}

/* Menu Indicators */
#menu-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.menu-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.menu-indicator.active {
    background: var(--amber-gold);
    transform: scale(1.2);
}

.grab-go-section h4 {
    font-family: 'Knewave', cursive;
}

.grab-go-section ul li {
    position: relative;
    padding-left: 16px;
}

.grab-go-section ul li::before {
    content: '•';
    color: var(--amber-gold);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Story Modal */
.story-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.story-modal.active {
    opacity: 1;
    visibility: visible;
}

.story-modal-content {
    position: relative;
    max-width: 400px;
    max-height: 80vh;
    border-radius: 20px;
    overflow: hidden;
    background: var(--navy-black);
}

.story-modal-video {
    width: 100%;
    height: auto;
    display: block;
}

.story-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.story-modal-close:hover {
    background: rgba(245, 158, 11, 0.9);
    transform: scale(1.1);
}

/* Responsive Design for Store Pages */
@media (max-width: 768px) {
    #restaurant-hero-title {
        font-size: 2rem;
    }
    
    #restaurant-hero-subtitle {
        font-size: 1rem;
    }
    
    .grid.lg\\:grid-cols-3 {
        grid-template-columns: 1fr;
    }
    
    #menu-slides {
        height: 300px;
    }
    
    #menu-slider {
        min-height: 300px;
    }
    
    #restaurant-social .social-link {
        min-width: 120px;
        padding: 10px 16px;
        font-size: 14px;
    }
    
    /* Stories responsive */
    .stories-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .story-item {
        min-height: 300px;
    }
    
    .stories-container {
        padding: 15px;
    }
}

/* Form Styles */
.form-step {
    background: rgba(55, 65, 81, 0.8);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.form-input {
    width: 100%;
    padding: 1rem;
    background: rgba(55, 65, 81, 0.8);
    border: 1px solid rgba(156, 163, 175, 0.3);
    border-radius: 0.5rem;
    color: var(--off-white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--amber-gold);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.form-input::placeholder {
    color: var(--light-gray);
}

/* RTL Support */
.rtl .masonry-grid {
    direction: ltr; /* Keep grid LTR for proper layout */
}

.rtl .gallery-card,
.rtl .vendor-card,
.rtl .event-card {
    direction: rtl;
}

/* Responsive Design */
@media (max-width: 768px) {
    .language-switcher {
        top: 10px;
        left: 10px;
        padding: 6px;
    }
    
    .lang-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .masonry-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 480px) {
    .masonry-grid {
        grid-template-columns: 1fr;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(245, 158, 11, 0.3);
    border-radius: 50%;
    border-top-color: var(--amber-gold);
    animation: spin 1s ease-in-out infinite;
}

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

/* Fullscreen button for video players */
.fullscreen-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    opacity: 0;
}

.story-item:hover .fullscreen-btn {
    opacity: 1;
}

.fullscreen-btn:hover {
    background: rgba(245, 158, 11, 0.9);
    transform: scale(1.1);
}

/* Responsive adjustments for fullscreen button */
@media (max-width: 768px) {
    .fullscreen-btn {
        width: 32px;
        height: 32px;
        top: 8px;
        right: 8px;
    }
}

/* General utility classes */
.hidden {
    display: none !important;
}

/* Welcome Guide Modal Styles */
.welcome-guide-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.welcome-guide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 15, 25, 0.9);
    backdrop-filter: blur(5px);
}

.welcome-guide-content {
    position: relative;
    background: linear-gradient(135deg, #0B0F19 0%, #1a1f2e 100%);
    border: 2px solid #F59E0B;
    border-radius: 20px;
    padding: 40px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(245, 158, 11, 0.3);
}

.welcome-guide-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: #F59E0B;
    font-size: 30px;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10;
}

.welcome-guide-close:hover {
    color: #FBBF24;
}

.welcome-guide-title {
    font-family: 'Knewave', cursive;
    font-size: 2.5rem;
    color: #F59E0B;
    text-align: center;
    margin-bottom: 20px;
}

.welcome-guide-intro {
    color: #E0E0E0;
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.6;
}

.welcome-guide-steps {
    display: grid;
    gap: 25px;
    margin-bottom: 30px;
}

.welcome-guide-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: rgba(245, 158, 11, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(245, 158, 11, 0.2);
    transition: all 0.3s ease;
}

.welcome-guide-step:hover {
    background: rgba(245, 158, 11, 0.1);
    border-color: rgba(245, 158, 11, 0.4);
    transform: translateY(-2px);
}

.step-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #F59E0B, #FBBF24);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0B0F19;
    font-size: 24px;
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
}

.step-content h3 {
    color: #F59E0B;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.step-content p {
    color: #E0E0E0;
    line-height: 1.5;
    font-size: 1rem;
}

.welcome-guide-button {
    width: 100%;
    padding: 15px 30px;
    background: linear-gradient(135deg, #F59E0B, #FBBF24);
    color: #0B0F19;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
}

.welcome-guide-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(245, 158, 11, 0.4);
}

.how-it-works-btn {
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
}

/* RTL Support for Welcome Guide */
[dir="rtl"] .welcome-guide-step {
    flex-direction: row-reverse;
}

[dir="rtl"] .welcome-guide-close {
    right: auto;
    left: 20px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .welcome-guide-content {
        padding: 30px 20px;
        margin: 10px;
    }
    
    .welcome-guide-title {
        font-size: 2rem;
    }
    
    .welcome-guide-step {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .step-icon {
        align-self: center;
    }
    
    .how-it-works-btn {
        font-size: 0.8rem;
        padding: 8px 12px;
    }
    
    .how-it-works-btn span {
        display: none;
    }
    
    .how-it-works-btn::after {
        content: attr(data-mobile-text);
    }
}



/* Vendor Card Styles */
.vendor-card {
    background: rgba(17, 24, 39, 0.8);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(245, 158, 11, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.vendor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(245, 158, 11, 0.4);
    border-color: rgba(245, 158, 11, 0.3);
}

.vendor-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.vendor-card:hover img {
    transform: scale(1.03);
}

/* Menu Preview Styles */
.menu-preview {
    margin-top: 1rem;
}

.menu-image-preview {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    transition: all 0.3s ease;
    height: 128px; /* Match the image height */
}

.menu-image-preview:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.menu-image-preview img {
    width: 100%;
    height: 100%; /* Fill the container */
    object-fit: cover;
    transition: all 0.3s ease;
    display: block; /* Remove any extra spacing */
}

.menu-image-preview:hover img {
    transform: scale(1.05);
}

/* Menu Lightbox Styles */
#menu-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

#menu-lightbox:not(.hidden) {
    opacity: 1;
    visibility: visible;
}

#menu-lightbox .relative {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#menu-lightbox-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

#menu-lightbox-close,
#menu-lightbox-prev,
#menu-lightbox-next {
    position: absolute;
    background: rgba(245, 158, 11, 0.9);
    color: var(--navy-black);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

#menu-lightbox-close:hover,
#menu-lightbox-prev:hover,
#menu-lightbox-next:hover {
    background: var(--amber-gold);
    transform: scale(1.1);
}

#menu-lightbox-close {
    top: 20px;
    right: 20px;
}

#menu-lightbox-prev {
    left: 20px;
}

#menu-lightbox-next {
    right: 20px;
}

#menu-lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    z-index: 10;
}

/* Responsive adjustments for menu lightbox */
@media (max-width: 768px) {
    #menu-lightbox-close,
    #menu-lightbox-prev,
    #menu-lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    #menu-lightbox-close {
        top: 15px;
        right: 15px;
    }
    
    #menu-lightbox-prev {
        left: 15px;
    }
    
    #menu-lightbox-next {
        right: 15px;
    }
    
    #menu-lightbox-counter {
        bottom: 15px;
        font-size: 12px;
        padding: 6px 12px;
    }
}
