:root {
    --primary: #ffe000; /* baNANA Yellow */
    --primary-light: #fff066;
    --primary-dark: #ccb300;
    --secondary: #000000;
    --navy: #1a1a1a;
    --silver: #e2e8f0;
    --bg-body: #f8f8f8;
    --bg-card: #ffffff;
    --bg-glass: rgba(255, 255, 255, 0.9);
    --text-main: #1a1a1a;
    --text-muted: #666666;
    --border: rgba(0, 0, 0, 0.1);
    --shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    --shadow-accent: 0 10px 30px rgba(255, 224, 0, 0.3);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Prompt', sans-serif;
    -webkit-tap-highlight-color: transparent; /* Remove blue frame on mobile */
    outline: none !important;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background FX */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: -1;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255, 224, 0, 0.1) 0%, transparent 25%),
        radial-gradient(circle at 90% 80%, rgba(0, 0, 0, 0.03) 0%, transparent 20%);
    filter: blur(30px);
    animation: bgFloat 15s infinite alternate ease-in-out;
}

@keyframes bgFloat {
    from { transform: scale(1); }
    to { transform: scale(1.1) translate(-2%, -2%); }
}

.global-bg-icon {
    position: fixed;
    font-size: 8rem;
    color: rgba(255, 224, 0, 0.05);
    z-index: -1;
    pointer-events: none;
    animation: rotateIcon 40s infinite linear;
}

@keyframes rotateIcon {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.float-1 { top: 15%; left: 5%; }
.float-2 { bottom: 20%; right: 5%; }
.float-3 { top: 60%; left: 10%; }
.float-4 { top: 30%; right: 10%; }

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

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 25px;
}

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #000000; /* Solid at top */
    padding: 20px 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(0, 0, 0, 0.6); /* Transparent Glass on scroll */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

/* Partner Services */
.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.partner-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 25px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: inherit;
    border: 1px solid rgba(0,0,0,0.05);
}

.partner-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: var(--primary);
}

.partner-icon {
    width: 70px;
    height: 70px;
    background: #fff6e0;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
    overflow: hidden;
    flex-shrink: 0;
}

.partner-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    width: auto;
    height: auto;
}

.partner-card h3 {
    font-size: 1.3rem;
    color: var(--text-main);
    margin: 0;
}

.partner-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

@media (max-width: 768px) {
    .partner-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }
    .partner-card {
        padding: 25px 20px;
        border-radius: 20px;
    }
    .partner-icon {
        width: 60px;
        height: 60px;
    }
}

.logo { display: flex; align-items: center; gap: 10px; }
.logo-img { height: 35px; width: 35px; border-radius: 50%; border: 1px solid var(--primary); }
.logo-text { font-size: 1.1rem; font-weight: 800; color: #ffffff; line-height: 1; }
.logo-text span { display: block; font-size: 0.65rem; color: var(--primary); font-weight: 400; }

.nav-links { display: flex; gap: 30px; }
.nav-links a { font-weight: 500; color: #ffffff; font-size: 0.95rem; }
.nav-links a:hover { color: var(--primary); }

.menu-toggle { 
    display: none; 
    color: var(--primary); 
    font-size: 1.3rem; 
    cursor: pointer;
    background: rgba(255, 255, 255, 0.1);
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: none; /* Controlled by media query */
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 224, 0, 0.2);
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    background: rgba(255, 224, 0, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 224, 0, 0.1);
}

/* Compact Top-Right Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 70px; /* Below Navbar */
    right: 15px;
    width: 220px; /* Small and compact */
    height: auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1100;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    
    /* Animation Style */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px) scale(0.9);
    transform-origin: top right;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.mobile-menu ul { list-style: none; padding: 0; margin: 0; }
.mobile-menu ul li { margin-bottom: 12px; border-bottom: 1px solid rgba(0,0,0,0.03); padding-bottom: 8px; }
.mobile-menu ul li:last-child { border: none; margin-bottom: 0; padding-bottom: 0; }

.mobile-menu a { 
    font-size: 1rem; 
    font-weight: 600; 
    color: #333; 
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-menu a i { color: var(--primary-dark); font-size: 0.9rem; }
.mobile-menu-header, .mobile-menu-footer { display: none; }

.banner-section.top-banner {
    padding-top: 100px; /* Increased to ensure zero overlap */
    background: transparent;
    padding-bottom: 20px;
}

.banner-wrapper {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    background: transparent;
    box-shadow: none;
    width: 100%; /* Ensure full width */
}

.main-banner { width: 100%; display: block; transition: transform 0.6s ease; }
.banner-wrapper:hover .main-banner { transform: scale(1.02); }

/* Hero */
.hero { padding: 80px 0; position: relative; }
.hero-container { display: flex; align-items: center; gap: 60px; justify-content: space-between; }
.hero-content { flex: 1; }
.hero-title { 
    font-size: clamp(2rem, 8vw, 3.5rem); /* Responsive fluid font size */
    line-height: 1.5;
    margin-bottom: 25px; 
    word-wrap: break-word;
}
.text-accent { 
    background: linear-gradient(
        90deg, 
        #d4af37 0%, 
        #f9d423 25%, 
        #aa771c 50%, 
        #f9d423 75%, 
        #d4af37 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #e6c200; /* Fallback */
    font-weight: 800;
    animation: shine 6s linear infinite;
    display: inline-block;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.hero-desc { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 40px; }

.hero-image { flex: 1; text-align: center; }
.hero-image img { width: 100%; max-width: 500px; animation: floatImg 6s infinite ease-in-out; }

@keyframes floatImg {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 700;
    transition: var(--transition);
    gap: 10px;
}

.btn-accent {
    background: var(--primary);
    color: var(--secondary) !important; /* Ensure visibility */
    box-shadow: var(--shadow-accent);
}

.nav-container .btn-primary {
    background: var(--primary);
    color: var(--secondary);
    padding: 6px 12px; /* Much more compact */
    font-size: 0.75rem;
    border-radius: 8px;
    white-space: nowrap;
}

.btn-accent:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 224, 0, 0.5);
}

/* Catalog */
.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 { font-size: 2.5rem; margin-bottom: 15px; }

.price-tabs { 
    display: flex; 
    justify-content: center; 
    gap: 15px; 
    margin-bottom: 50px; 
    flex-wrap: wrap; 
}

@media (max-width: 768px) {
    .price-tabs {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        padding: 10px 0;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .price-tabs::-webkit-scrollbar { display: none; }
    .price-tab { white-space: nowrap; }
}
.price-tab { padding: 12px 25px; border-radius: 30px; background: #eee; font-weight: 700; cursor: pointer; border: none; }
.price-tab.active { background: var(--primary); color: var(--secondary); }

.price-tab-content { display: none; }
.price-tab-content.active { display: block; }

.brand-group { margin-bottom: 60px; background: #fff; padding: 40px; border-radius: 30px; box-shadow: var(--shadow); }
.brand-header { font-size: 1.6rem; margin-bottom: 30px; border-bottom: 2px solid var(--primary); padding-bottom: 10px; display: flex; align-items: center; gap: 12px; }
.brand-header i { background: #000; color: #ffe000; padding: 10px; border-radius: 10px; font-size: 1.2rem; }

.price-scroll-wrapper { position: relative; padding: 0 10px; }
.price-cards-grid { 
    display: flex; 
    gap: 20px; 
    overflow-x: auto; 
    padding: 20px 0; 
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    scroll-padding: 0 50%; /* Snap to view center */
    -webkit-overflow-scrolling: touch;
}

.price-cat-card {
    min-width: 260px;
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    border: none; /* Removed Inner Border as requested */
    transition: var(--transition);
    scroll-snap-align: center;
}

.price-cat-card:hover { transform: translateY(-12px); box-shadow: 0 20px 45px rgba(0,0,0,0.1); border-color: var(--primary); }
.price-cat-icon img { width: 100%; height: 180px; object-fit: contain; margin-bottom: 20px; }

.scroll-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    font-size: 1.2rem;
}

.scroll-arrow:hover {
    background: var(--primary);
    color: #000;
    transform: translateY(-50%) scale(1.15);
    border-color: var(--primary);
    box-shadow: 0 10px 25px rgba(255, 224, 0, 0.4);
}

.scroll-arrow-left { left: -25px; }
.scroll-arrow-right { right: -25px; }

.scroll-arrow.hidden { opacity: 0; pointer-events: none; }

/* Responsive adjustments for arrows */
@media (max-width: 1350px) {
    .scroll-arrow-left { left: 5px; }
    .scroll-arrow-right { right: 5px; }
}

@media (max-width: 768px) {
    .scroll-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}



/* Reveal Animations */
.reveal { opacity: 0; transform: translateY(30px); transition: 0.8s cubic-bezier(0.165, 0.84, 0.44, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }

.reveal-right { opacity: 0; transform: translateX(50px); transition: 0.8s cubic-bezier(0.165, 0.84, 0.44, 1); }
.reveal-right.active { opacity: 1; transform: translateX(0); }

/* Services Section */
.bg-dark { background: #111111; }
.text-white { color: #ffffff !important; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: #1a1a1a;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 224, 0, 0.1);
    transition: var(--transition);
}

.service-card:hover {
    background: #222;
    border-color: var(--primary);
    transform: translateY(-10px);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #fff;
}

.service-card p {
    color: #999;
    font-size: 0.95rem;
}

/* Location & Map */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.store-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 100%;
}

.store-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: var(--transition);
}

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

.store-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--primary);
    color: var(--secondary);
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

@media (max-width: 992px) {
    .location-grid {
        grid-template-columns: 1fr;
    }
    .store-image img {
        height: 300px;
    }
}
.footer { background: #000; color: #fff; padding: 80px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1.5fr; gap: 100px; margin-bottom: 50px; }
.footer h4 { color: var(--primary); margin-bottom: 25px; }

/* Floating FB Button */
.fb-float {
    position: fixed;
    bottom: 100px; /* Default higher for visibility */
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1877f2 0%, #0d47a1 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    z-index: 2000;
    box-shadow: 
        inset 0 4px 8px rgba(255, 255, 255, 0.3),
        0 10px 25px rgba(24, 119, 242, 0.4);
    touch-action: none;
    animation: floatingFB 3s infinite ease-in-out;
    user-select: none;
    -webkit-user-drag: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}



.fb-float::before,
.fb-float::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(24, 119, 242, 0.5);
    z-index: -1;
    pointer-events: none;
    animation: waterPulse 2s infinite;
}

.fb-float::after {
    animation-delay: 1s;
}

.fb-float.is-dragging {
    transform: scale(1.1);
    opacity: 0.95;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    cursor: grabbing;
}

@keyframes waterPulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.8); opacity: 0; }
}


.fb-float.is-dragging,
.fb-float.has-moved {
    animation: none !important;
}

@keyframes floatingFB {

    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}









@media (max-width: 768px) {
    .fb-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 80px;
        right: 15px;
    }
}

@keyframes pulseFB {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(24, 119, 242, 0.7); }
    70% { transform: scale(1.1); box-shadow: 0 0 0 15px rgba(24, 119, 242, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(24, 119, 242, 0); }
}

.fb-float:hover {
    transform: scale(1.2);
    background: #166fe5;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .nav-links { display: none; }
    .menu-toggle { display: flex; } /* Show custom toggle */
    .hero-container { flex-direction: column; text-align: center; gap: 30px; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
}

@media (max-width: 768px) {
    .section-padding { padding: 40px 0; }
    .hero { padding: 40px 0; }
    .hero-title { font-size: clamp(1.8rem, 6vw, 2.2rem); margin-bottom: 12px; line-height: 1.5; }
    .hero-desc { font-size: 0.9rem; margin-bottom: 20px; line-height: 1.5; }
    
    .section-title h2 { font-size: 1.8rem; }
    .brand-header { font-size: 1.1rem; gap: 8px; }
    
    .price-cat-card h3 { font-size: 0.9rem; height: 2.6em; }
    
    .logo-text { font-size: 0.95rem; }
    .logo-img { height: 30px; width: 30px; }
    
    .nav-container { gap: 5px; justify-content: space-between; }
    .nav-container .btn-primary { padding: 4px 8px; font-size: 0.65rem; border-radius: 6px; }
    
    .menu-toggle { padding: 5px 8px; font-size: 0.9rem; }
    
    .banner-section.top-banner { padding-top: 110px; padding-bottom: 20px; }

    .banner-section.top-banner .container { padding: 0 10px; }
    .banner-wrapper { border-radius: 12px; }

    .price-cat-btn { font-size: 0.8rem; padding: 8px 15px; }
    
    .service-card { padding: 25px; }
    .service-icon { font-size: 2rem; margin-bottom: 15px; }
    
    .location-grid { gap: 20px; }
    .store-image img { height: 250px; }
    
    .price-tabs { margin-bottom: 25px; gap: 10px; }
    .price-tab { padding: 8px 15px; font-size: 0.85rem; }
    
    .price-cards-grid {
        gap: 15px;
        padding-left: calc(50% - 110px); /* (50% screen - half card width) */
        padding-right: calc(50% - 110px);
        scroll-padding: 0;
    }
    
    .price-cat-card { 
        min-width: 220px; 
        padding: 15px; 
        border-radius: 12px;
        border: none !important; 
        box-shadow: none !important; 
        scroll-snap-align: center;
    }
}

/* Reels Highlights Styling */
.reels-scroll-wrapper {
    overflow-x: auto;
    padding: 20px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
    scroll-padding: 0 50%;
}

.reels-scroll-wrapper::-webkit-scrollbar {
    display: none;
}

.reels-grid {
    display: flex;
    gap: 20px;
    padding: 0 15px;
}

.reel-item {
    min-width: 270px;
    height: 480px; /* Compact 9:16 ratio */
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    scroll-snap-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: grab;
}

.reel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    background: transparent;
}

.reel-overlay.hidden {
    pointer-events: none;
}

.reel-item iframe {
    width: 100% !important;
    height: 100% !important;
}

.reel-fallback {
    position: absolute;
    bottom: 20px;
    background: var(--primary);
    color: var(--secondary);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 10;
}

@media (max-width: 768px) {
    .reel-item {
        min-width: 240px;
        height: 426px;
    }
    .reels-scroll-wrapper {
        padding-left: calc(50% - 120px);
        padding-right: calc(50% - 120px);
        scroll-padding: 0;
    }
    .reels-grid { gap: 15px; padding: 0; }
}
