/* NAMKEENBYTS SNACKS - Main Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Cinzel:wght@600;700;800&display=swap');

:root {
    --navy-primary: #0B1C3D;
    --navy-dark: #061126;
    --navy-light: #162B54;
    --gold-primary: #D4AF37;
    --gold-light: #F3C042;
    --gold-dark: #B59124;
    --cream-bg: #FFFDF7;
    --cream-header: #FFFBF2;
    --light-gray: #F4F6F9;
    --text-dark: #1E293B;
    --text-muted: #64748B;
    --border-color: #E2E8F0;
    --radius-card: 16px;
    --radius-btn: 50px;
    --shadow-sm: 0 4px 12px rgba(11, 28, 61, 0.05);
    --shadow-md: 0 8px 24px rgba(11, 28, 61, 0.1);
    --shadow-hover: 0 14px 32px rgba(11, 28, 61, 0.16);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-dark);
    background-color: #FFFFFF;
    overflow-x: hidden;
}

h1, h2, h3, .brand-font {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Colors Utilities */
.bg-navy { background-color: var(--navy-primary) !important; }
.bg-navy-dark { background-color: var(--navy-dark) !important; }
.bg-gold { background-color: var(--gold-primary) !important; }
.bg-cream { background-color: var(--cream-bg) !important; }
.text-navy { color: var(--navy-primary) !important; }
.text-gold { color: var(--gold-primary) !important; }
.border-gold { border-color: var(--gold-primary) !important; }
.border-gold-light { border-color: rgba(212, 175, 55, 0.4) !important; }
.hover-gold:hover { color: var(--gold-light) !important; }
.fs-8 { font-size: 0.72rem; }

/* Top Announcement Bar */
.top-announcement-bar {
    background: linear-gradient(90deg, #050d1f 0%, #0B1C3D 50%, #050d1f 100%);
    color: #FFFFFF;
    font-size: 0.84rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(212, 175, 55, 0.25);
}

/* Festive Garland Header Strip */
.festive-garland-header {
    height: 8px;
    background: linear-gradient(90deg, #D4AF37 0%, #E11D48 33%, #10B981 66%, #D4AF37 100%);
    border-bottom: 1px solid #F0E6D2;
}

/* Festive Cream Navbar */
.navbar-festive-cream {
    background-color: var(--cream-header);
    border-bottom: 2px solid #F3E5C8;
    box-shadow: 0 4px 20px rgba(11, 28, 61, 0.08);
    transition: var(--transition);
}

.sticky-top {
    z-index: 1030;
}

/* Logo Image Styling */
.header-logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(11, 28, 61, 0.15);
    background: #FFFFFF;
    padding: 2px;
    border: 2px solid var(--gold-primary);
    transition: var(--transition);
}

.header-logo-img:hover {
    transform: scale(1.06);
    box-shadow: 0 6px 18px rgba(212, 175, 55, 0.4);
}

/* Festive Nav Links */
.nav-link-festive-cream {
    color: #0B1C3D !important;
    font-weight: 700;
    font-size: 0.78rem;
    padding: 0.4rem 0.4rem !important;
    text-transform: uppercase;
    letter-spacing: 0.1px;
    transition: var(--transition);
    position: relative;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

@media (min-width: 1400px) {
    .nav-link-festive-cream {
        font-size: 0.85rem;
        padding: 0.5rem 0.65rem !important;
    }
}

.nav-link-festive-cream:hover, .nav-link-festive-cream.active {
    color: #D4AF37 !important;
}

.nav-link-festive-cream::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 3px;
    background-color: var(--gold-primary);
    transition: var(--transition);
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-link-festive-cream:hover::after, .nav-link-festive-cream.active::after {
    width: 70%;
}

/* Badges on Nav Pills */
.badge-pill-nav {
    font-size: 0.58rem;
    font-weight: 800;
    padding: 2px 5px;
    border-radius: 10px;
    line-height: 1;
    display: inline-block;
    vertical-align: middle;
    margin-left: 3px;
    text-transform: uppercase;
}

.bg-pink {
    background-color: #E11D48 !important;
    color: #FFFFFF !important;
}

.bg-teal {
    background-color: #004D40 !important;
    color: #80CBC4 !important;
}

.bg-dark-pill {
    background-color: #0B1C3D !important;
    color: #FFFFFF !important;
}

/* Header Icon Actions */
.header-action-icon-cream {
    color: var(--navy-primary);
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.header-action-icon-cream:hover {
    color: var(--gold-dark);
    background: #FFFBF2;
    border-color: var(--gold-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.25);
}

.badge-count-red {
    position: absolute;
    top: -3px;
    right: -3px;
    background-color: #E11D48;
    color: #FFFFFF;
    font-weight: 800;
    font-size: 0.68rem;
    border-radius: 50%;
    width: 19px;
    height: 19px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #FFFFFF;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.header-search-box {
    width: 165px;
    max-width: 175px;
    flex-shrink: 1;
}

@media (min-width: 1400px) {
    .header-search-box {
        width: 195px;
        max-width: 210px;
    }
}

/* Buttons */
.btn-navy-gold {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-light) 100%);
    color: var(--navy-dark);
    border: none;
    font-weight: 700;
    transition: var(--transition);
    box-shadow: 0 4px 14px rgba(212, 175, 55, 0.35);
}

.btn-navy-gold:hover {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-primary) 100%);
    color: var(--navy-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.btn-navy-solid {
    background-color: var(--navy-primary);
    color: #FFFFFF;
    border: none;
    font-weight: 700;
    transition: var(--transition);
}

.btn-navy-solid:hover {
    background-color: var(--navy-dark);
    color: var(--gold-light);
}

.btn-gold-outline {
    border: 2px solid var(--gold-primary);
    color: var(--gold-light);
    font-weight: 700;
    background: transparent;
    transition: var(--transition);
}

.btn-gold-outline:hover {
    background-color: var(--gold-primary);
    color: var(--navy-primary);
}

/* Hero Section */
.hero-slider-section {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-primary) 100%);
    min-height: 520px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-slider-section::before {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: #FFFFFF;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--gold-light);
    font-style: italic;
}

.hero-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 550px;
}

.hero-img-box img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    max-height: 440px;
    object-fit: cover;
    border: 4px solid rgba(212, 175, 55, 0.3);
    animation: floatSnack 4s ease-in-out infinite alternate;
}

@keyframes floatSnack {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-12px); }
}

/* USP Strip */
.usp-section {
    background-color: var(--navy-dark);
    border-top: 2px solid var(--gold-primary);
    border-bottom: 2px solid var(--gold-primary);
    padding: 1.75rem 0;
}

.usp-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #FFFFFF;
}

.usp-icon-box {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: rgba(212, 175, 55, 0.15);
    border: 1px solid var(--gold-primary);
    color: var(--gold-light);
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.usp-title {
    font-weight: 700;
    font-size: 1rem;
    margin: 0;
    color: #FFFFFF;
}

.usp-subtitle {
    font-size: 0.82rem;
    color: var(--gold-light);
    margin: 0;
}

/* Section Title */
.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--navy-primary);
    position: relative;
    display: inline-block;
}

.title-flourish {
    color: var(--gold-primary);
    font-size: 1.2rem;
    margin: 0 10px;
}

/* Category Circular Cards */
.category-circle-card {
    text-align: center;
    text-decoration: none;
    display: block;
    transition: var(--transition);
}

.category-circle-img-wrap {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    margin: 0 auto 12px auto;
    padding: 6px;
    background: #FFFFFF;
    border: 2px dashed var(--gold-primary);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    overflow: hidden;
}

.category-circle-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: var(--transition);
}

.category-circle-card:hover .category-circle-img-wrap {
    border-style: solid;
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.category-circle-card:hover img {
    transform: scale(1.1);
}

.category-title {
    font-weight: 700;
    color: var(--navy-primary);
    font-size: 1rem;
    margin-bottom: 2px;
}

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

/* Product Card */
.product-card {
    background: #FFFFFF;
    border-radius: var(--radius-card);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    overflow: hidden;
    position: relative;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(212, 175, 55, 0.4);
}

.product-card-img-wrapper {
    background-color: #FAFAFA;
    height: 230px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-main-img {
    max-height: 190px;
    object-fit: contain;
    transition: var(--transition);
}

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

.btn-wishlist {
    width: 36px;
    height: 36px;
    background: #FFFFFF;
    border: none;
    color: var(--text-muted);
    transition: var(--transition);
}

.btn-wishlist:hover {
    background: var(--gold-light);
    color: var(--navy-primary);
}

.btn-quickview {
    background: var(--navy-primary);
    color: #FFFFFF;
    border: none;
    font-size: 0.8rem;
    padding: 6px 16px;
    transition: var(--transition);
    opacity: 0;
}

.product-card:hover .btn-quickview {
    opacity: 1;
}

.btn-quickview:hover {
    background: var(--gold-primary);
    color: var(--navy-primary);
}

/* Badges */
.badge-discount {
    background: #E11D48;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 0.75rem;
    padding: 5px 10px;
    border-radius: 4px;
}

.badge-bestseller {
    background: var(--gold-primary);
    color: var(--navy-primary);
    font-weight: 800;
    font-size: 0.72rem;
    padding: 5px 10px;
    border-radius: 4px;
}

.badge-new {
    background: #0284C7;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 0.72rem;
    padding: 5px 10px;
    border-radius: 4px;
}

.badge-farali {
    background: #16A34A;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 0.72rem;
    padding: 5px 10px;
    border-radius: 4px;
}

/* Banner Strip */
.banner-strip-section {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-primary) 100%);
    color: #FFFFFF;
    padding: 3.5rem 0;
    border-radius: var(--radius-card);
    position: relative;
    overflow: hidden;
}

.banner-strip-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--gold-light);
}

/* Sidebar Filters */
.filter-card {
    background: #FFFFFF;
    border-radius: var(--radius-card);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    padding: 1.5rem;
}

.filter-header {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--navy-primary);
    border-bottom: 2px solid var(--gold-primary);
    padding-bottom: 0.5rem;
    margin-bottom: 1.25rem;
}

.filter-category-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-dark);
    text-decoration: none;
    padding: 0.4rem 0;
    font-size: 0.92rem;
    transition: var(--transition);
}

.filter-category-link:hover, .filter-category-link.active {
    color: var(--gold-dark);
    font-weight: 700;
    padding-left: 5px;
}

/* Product Detail Page */
.product-detail-img-box {
    background: #FAFAFA;
    border-radius: var(--radius-card);
    border: 1px solid var(--border-color);
    padding: 2rem;
    text-align: center;
}

.product-detail-main-img {
    max-height: 400px;
    object-fit: contain;
}

.variant-btn {
    border: 2px solid var(--border-color);
    background: #FFFFFF;
    color: var(--text-dark);
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 8px;
    transition: var(--transition);
}

.variant-btn.active, .variant-btn:hover {
    border-color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.1);
    color: var(--navy-primary);
}

.qty-input-group {
    max-width: 130px;
}

.qty-btn {
    border: 1px solid var(--border-color);
    background: var(--light-gray);
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.qty-input {
    text-align: center;
    border-left: 0;
    border-right: 0;
    font-weight: 700;
}

/* Product Tabs */
.nav-tabs-custom .nav-link {
    border: none;
    color: var(--text-muted);
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border-bottom: 3px solid transparent;
}

.nav-tabs-custom .nav-link.active {
    color: var(--navy-primary);
    border-bottom-color: var(--gold-primary);
    background: transparent;
}

/* Cart Table */
.cart-table th {
    background-color: var(--navy-primary);
    color: #FFFFFF;
    font-weight: 700;
    padding: 1rem;
}

.cart-table td {
    padding: 1rem;
    vertical-align: middle;
}

.cart-totals-card {
    background: #FFFFFF;
    border-radius: var(--radius-card);
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
}

/* Footer */
.footer-namkeen {
    background-color: var(--navy-dark);
    color: rgba(255,255,255,0.8);
    padding-top: 4rem;
    padding-bottom: 1.5rem;
    border-top: 4px solid var(--gold-primary);
}

.footer-title {
    color: #FFFFFF;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    position: relative;
}

.footer-links a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    display: block;
    margin-bottom: 0.6rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold-light);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 3rem;
    padding-top: 1.5rem;
    font-size: 0.85rem;
}

/* Toast Container */
.toast-container-custom {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.toast-namkeen {
    background: var(--navy-primary);
    color: #FFFFFF;
    border-left: 5px solid var(--gold-primary);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* ==================================================
   HOMEPAGE FLOATING / FALLING SNACK ANIMATION LAYER
================================================== */
.hero-floating-snack-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
}

.floating-snack-item {
    position: absolute;
    top: -90px;
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    object-fit: cover;
    will-change: transform;
    border: 2px solid rgba(212, 175, 55, 0.5);
    background: #FFFFFF;
    padding: 3px;
}

/* Keyframes for natural gentle downward fall with rotational drift */
@keyframes foodFallSlow {
    0% {
        transform: translateY(-90px) rotate(0deg) scale(0.9);
        opacity: 0;
    }
    15% {
        opacity: 0.9;
    }
    85% {
        opacity: 0.9;
    }
    100% {
        transform: translateY(580px) rotate(140deg) scale(1);
        opacity: 0;
    }
}

@keyframes foodFallMedium {
    0% {
        transform: translateY(-90px) translateX(0px) rotate(0deg);
        opacity: 0;
    }
    20% {
        opacity: 0.85;
    }
    80% {
        opacity: 0.85;
    }
    100% {
        transform: translateY(600px) translateX(40px) rotate(220deg);
        opacity: 0;
    }
}

@keyframes foodFallFast {
    0% {
        transform: translateY(-90px) translateX(0px) rotate(0deg);
        opacity: 0;
    }
    20% {
        opacity: 0.8;
    }
    80% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(620px) translateX(-35px) rotate(-180deg);
        opacity: 0;
    }
}

@keyframes foodFloatGentle {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(10deg);
    }
}

.food-fall-slow {
    animation: foodFallSlow var(--anim-speed, 10s) linear infinite;
    animation-delay: var(--anim-delay, 0s);
}

.food-fall-medium {
    animation: foodFallMedium var(--anim-speed, 7s) linear infinite;
    animation-delay: var(--anim-delay, 0s);
}

.food-fall-fast {
    animation: foodFallFast var(--anim-speed, 5s) linear infinite;
    animation-delay: var(--anim-delay, 0s);
}

.food-float {
    animation: foodFloatGentle var(--anim-speed, 4s) ease-in-out infinite;
    animation-delay: var(--anim-delay, 0s);
}

@media (prefers-reduced-motion: reduce) {
    .floating-snack-item {
        animation: none !important;
    }
}

/* ==================================================
   FULL PAGE FALLING SNACK ANIMATION OVERLAY (30px * 30px)
   Falls continuously from top to footer across 2 rounds then stops.
================================================== */
.fullpage-snack-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.snack-particle-30 {
    position: absolute;
    top: -45px;
    width: 30px !important;
    height: 30px !important;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid #D4AF37;
    background: #FFFFFF;
    padding: 1.5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    opacity: 0;
    will-change: transform, opacity;
}

@keyframes snackFallFullPage {
    0% {
        transform: translateY(-45px) rotate(0deg) scale(0.85);
        opacity: 0;
    }
    10% {
        opacity: 0.95;
    }
    85% {
        opacity: 0.95;
    }
    100% {
        transform: translateY(105vh) rotate(360deg) scale(1);
        opacity: 0;
    }
}

.hero-banner-full-img {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    border-radius: 16px;
    display: block;
}

/* ==================================================
   BRAND COLORED SOCIAL MEDIA ICON BUTTONS
================================================== */
.social-icon-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF !important;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.facebook-btn {
    background-color: #1877F2 !important;
}

.facebook-btn:hover {
    background-color: #0d65d9 !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(24, 119, 242, 0.4);
}

.instagram-btn {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%) !important;
}

.instagram-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(214, 36, 159, 0.4);
}

.youtube-btn {
    background-color: #FF0000 !important;
}

.youtube-btn:hover {
    background-color: #cc0000 !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(255, 0, 0, 0.4);
}

.whatsapp-btn {
    background-color: #25D366 !important;
}

.whatsapp-btn:hover {
    background-color: #1da851 !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

/* ==================================================
   ACCOUNT SIDEBAR NAV PILLS - BRAND NAVY & GOLD
================================================== */
.nav-pills .nav-link {
    color: var(--navy-primary) !important;
    background-color: transparent;
    border-radius: 12px;
    transition: var(--transition);
}

.nav-pills .nav-link:hover {
    background-color: #FFFBF2 !important;
    color: var(--gold-dark) !important;
}

.nav-pills .nav-link.active {
    background-color: var(--navy-primary) !important;
    color: #FFFFFF !important;
    box-shadow: 0 4px 14px rgba(11, 28, 61, 0.3);
}

.nav-pills .nav-link.active .text-gold {
    color: var(--gold-light) !important;
}

.top-announcement-bar .social-icon-btn {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

/* ==================================================
   RIGHT-SIDE VERTICAL CENTER FLOATING ACTION BUTTONS
================================================== */
.floating-quick-actions {
    position: fixed;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.floating-action-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF !important;
    font-size: 1.6rem;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    animation: floatingUpDown 3s ease-in-out infinite;
}

.wa-floating-btn {
    background-color: #25D366;
    border: 3px solid #1B9E4B;
    box-shadow: 0 0 22px rgba(37, 211, 102, 0.75), 0 6px 16px rgba(0, 0, 0, 0.3);
}

.wa-floating-btn:hover {
    background-color: #1EBE5D;
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.9), 0 8px 20px rgba(0, 0, 0, 0.4);
}

.call-floating-btn {
    background-color: #2563EB;
    border: 3px solid #1D4ED8;
    box-shadow: 0 0 22px rgba(37, 99, 235, 0.75), 0 6px 16px rgba(0, 0, 0, 0.3);
    animation-delay: 1.5s;
}

.call-floating-btn:hover {
    background-color: #1D4ED8;
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(37, 99, 235, 0.9), 0 8px 20px rgba(0, 0, 0, 0.4);
}

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

/* Newsletter Input Text & Placeholder Contrast Fix */
#newsletterEmail {
    color: #FFFFFF !important;
    background-color: rgba(11, 28, 61, 0.85) !important;
    border: 1px solid var(--gold-primary) !important;
}

#newsletterEmail::placeholder {
    color: #CBD5E1 !important;
    opacity: 0.9 !important;
}



