/* ============================================================
   FOOD BUZZ - Premium Restaurant Styles
   Colors: Black, White, Warm Gold/Yellow
   ============================================================ */

:root {
    --fb-black: #0d0d0d;
    --fb-dark: #1a1a1a;
    --fb-gray: #2d2d2d;
    --fb-gold: #e8b923;
    --fb-gold-dark: #c99a1a;
    --fb-gold-light: #f5d76e;
    --fb-white: #ffffff;
    --fb-offwhite: #f8f7f4;
    --fb-text: #333333;
    --fb-muted: #6c757d;
    --fb-success: #28a745;
    --fb-danger: #dc3545;
    --fb-radius: 12px;
    --fb-radius-sm: 8px;
    --fb-shadow: 0 4px 20px rgba(0,0,0,0.08);
    --fb-shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --font-bn: 'Noto Sans Bengali', 'Inter', sans-serif;
    --font-en: 'Inter', 'Noto Sans Bengali', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-bn);
    color: var(--fb-text);
    background: var(--fb-offwhite);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
}

.text-gold { color: var(--fb-gold) !important; }
.bg-gold { background-color: var(--fb-gold) !important; }
.bg-dark-fb { background-color: var(--fb-black) !important; }

/* Buttons */
.btn-gold {
    background: linear-gradient(135deg, var(--fb-gold), var(--fb-gold-dark));
    color: var(--fb-black);
    border: none;
    font-weight: 600;
    padding: 0.6rem 1.4rem;
    border-radius: var(--fb-radius-sm);
    transition: all 0.25s ease;
}
.btn-gold:hover {
    background: linear-gradient(135deg, var(--fb-gold-light), var(--fb-gold));
    color: var(--fb-black);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(232, 185, 35, 0.4);
}
.btn-outline-gold {
    border: 2px solid var(--fb-gold);
    color: var(--fb-gold);
    background: transparent;
    font-weight: 600;
    border-radius: var(--fb-radius-sm);
}
.btn-outline-gold:hover {
    background: var(--fb-gold);
    color: var(--fb-black);
}
.btn-dark-fb {
    background: var(--fb-black);
    color: var(--fb-white);
    border: none;
    font-weight: 600;
    border-radius: var(--fb-radius-sm);
}
.btn-dark-fb:hover {
    background: var(--fb-gray);
    color: var(--fb-white);
}

/* Top Bar */
.top-bar {
    background: var(--fb-black);
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
}
.top-bar a { color: rgba(255,255,255,0.85); text-decoration: none; }
.top-bar a:hover { color: var(--fb-gold); }

/* Navbar */
.main-nav {
    background: var(--fb-black) !important;
    padding: 0.75rem 0;
    box-shadow: 0 2px 15px rgba(0,0,0,0.3);
}
.navbar-brand .brand-text {
    font-size: 1.5rem;
    letter-spacing: 1px;
    color: var(--fb-white);
}
.navbar-logo {
    max-height: 42px;
    width: auto;
    object-fit: contain;
}
@media (max-width: 575.98px) {
    .navbar-logo { max-height: 36px; }
}
.main-nav .nav-link {
    color: rgba(255,255,255,0.85) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.2s;
}
.main-nav .nav-link:hover,
.main-nav .nav-link.active {
    color: var(--fb-gold) !important;
}
.cart-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--fb-gold);
    color: var(--fb-black);
    font-size: 0.7rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero */
.hero-section {
    background: linear-gradient(135deg, var(--fb-black) 0%, #1f1a0a 50%, var(--fb-black) 100%);
    color: var(--fb-white);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(232,185,35,0.12) 0%, transparent 60%);
    pointer-events: none;
}
.hero-title {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 1rem;
}
.hero-subtitle {
    font-size: clamp(0.95rem, 2.5vw, 1.15rem);
    opacity: 0.9;
    margin-bottom: 1.5rem;
    max-width: 540px;
}
.hero-btns .btn {
    margin: 0.3rem;
    padding: 0.7rem 1.5rem;
}
.hero-img {
    border-radius: var(--fb-radius);
    box-shadow: var(--fb-shadow-lg);
    max-height: 400px;
    object-fit: cover;
    width: 100%;
}

/* Section */
.section { padding: 3.5rem 0; }
.section-title {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    position: relative;
}
.section-subtitle {
    color: var(--fb-muted);
    margin-bottom: 2rem;
}
.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

/* Food Cards */
.food-card {
    background: var(--fb-white);
    border-radius: var(--fb-radius);
    overflow: hidden;
    box-shadow: var(--fb-shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.food-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--fb-shadow-lg);
}
.food-card-img {
    position: relative;
    height: 180px;
    overflow: hidden;
    background: #eee;
}
.food-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.food-card:hover .food-card-img img {
    transform: scale(1.05);
}
.food-card-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--fb-gold);
    color: var(--fb-black);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
}
.food-card-body {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.food-card-title {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}
.food-card-desc {
    font-size: 0.85rem;
    color: var(--fb-muted);
    margin-bottom: 0.75rem;
    flex: 1;
}
.food-card-price {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--fb-black);
}
.food-card-price .old-price {
    font-size: 0.9rem;
    color: var(--fb-muted);
    text-decoration: line-through;
    font-weight: 400;
    margin-left: 0.4rem;
}
.food-card-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
}
.food-card-actions .btn {
    flex: 1;
    font-size: 0.85rem;
    padding: 0.45rem 0.5rem;
}

/* Category pills */
.category-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}
.category-pill {
    background: var(--fb-white);
    border: 1.5px solid #ddd;
    color: var(--fb-text);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
}
.category-pill:hover,
.category-pill.active {
    background: var(--fb-black);
    border-color: var(--fb-black);
    color: var(--fb-gold);
}

/* Why Choose */
.feature-box {
    text-align: center;
    padding: 1.5rem;
    background: var(--fb-white);
    border-radius: var(--fb-radius);
    box-shadow: var(--fb-shadow);
    height: 100%;
}
.feature-box i {
    font-size: 2.2rem;
    color: var(--fb-gold);
    margin-bottom: 0.75rem;
}
.feature-box h5 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.feature-box p { font-size: 0.9rem; color: var(--fb-muted); margin: 0; }

/* Review cards */
.review-card {
    background: var(--fb-white);
    border-radius: var(--fb-radius);
    padding: 1.5rem;
    box-shadow: var(--fb-shadow);
    height: 100%;
}
.review-stars { color: var(--fb-gold); margin-bottom: 0.5rem; }
.review-text { font-size: 0.95rem; margin-bottom: 1rem; }
.review-author { font-weight: 600; font-size: 0.9rem; }

/* Offer cards */
.offer-card {
    background: linear-gradient(135deg, var(--fb-black), #2a2208);
    color: var(--fb-white);
    border-radius: var(--fb-radius);
    padding: 1.5rem;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.offer-card::after {
    content: '';
    position: absolute;
    top: -20px; right: -20px;
    width: 80px; height: 80px;
    background: rgba(232,185,35,0.15);
    border-radius: 50%;
}
.offer-card h4 { color: var(--fb-gold); margin-bottom: 0.5rem; }
.offer-card .promo-code {
    display: inline-block;
    background: var(--fb-gold);
    color: var(--fb-black);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Cart */
.cart-item {
    background: var(--fb-white);
    border-radius: var(--fb-radius-sm);
    padding: 1rem;
    margin-bottom: 0.75rem;
    box-shadow: var(--fb-shadow);
}
.cart-item-img {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    object-fit: cover;
}
.qty-control {
    display: inline-flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}
.qty-control button {
    background: var(--fb-offwhite);
    border: none;
    width: 32px;
    height: 32px;
    font-size: 1rem;
    cursor: pointer;
}
.qty-control button:hover { background: #e0e0e0; }
.qty-control span {
    width: 36px;
    text-align: center;
    font-weight: 600;
}
.cart-summary {
    background: var(--fb-white);
    border-radius: var(--fb-radius);
    padding: 1.5rem;
    box-shadow: var(--fb-shadow);
    position: sticky;
    top: 90px;
}

/* Checkout */
.checkout-form label { font-weight: 500; margin-bottom: 0.3rem; }
.form-control, .form-select {
    border-radius: var(--fb-radius-sm);
    border: 1.5px solid #ddd;
    padding: 0.65rem 0.9rem;
}
.form-control:focus, .form-select:focus {
    border-color: var(--fb-gold);
    box-shadow: 0 0 0 3px rgba(232,185,35,0.2);
}
.order-type-btn {
    border: 2px solid #ddd;
    border-radius: var(--fb-radius-sm);
    padding: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}
.order-type-btn.active {
    border-color: var(--fb-gold);
    background: rgba(232,185,35,0.08);
}
.order-type-btn input { display: none; }

/* Success */
.success-box {
    background: var(--fb-white);
    border-radius: var(--fb-radius);
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--fb-shadow-lg);
    max-width: 600px;
    margin: 0 auto;
}
.success-icon {
    font-size: 4rem;
    color: var(--fb-success);
    margin-bottom: 1rem;
}

/* Footer */
.site-footer {
    background: var(--fb-black);
    color: rgba(255,255,255,0.8);
    margin-top: 3rem;
}
.footer-brand { color: var(--fb-white); font-size: 1.4rem; }
.footer-tagline { color: var(--fb-gold); font-size: 0.9rem; }
.footer-desc { font-size: 0.9rem; opacity: 0.8; }
.footer-title { color: var(--fb-white); font-size: 1.05rem; margin-bottom: 1rem; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.4rem; }
.footer-links a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.9rem; }
.footer-links a:hover { color: var(--fb-gold); }
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.6rem;
    font-size: 0.9rem;
}
.footer-contact a { color: rgba(255,255,255,0.8); text-decoration: none; }
.footer-contact a:hover { color: var(--fb-gold); }
.footer-social a {
    display: inline-flex;
    width: 36px; height: 36px;
    align-items: center;
    justify-content: center;
    background: var(--fb-gray);
    color: var(--fb-white);
    border-radius: 50%;
    margin-right: 0.4rem;
    text-decoration: none;
    transition: all 0.2s;
}
.footer-social a:hover { background: var(--fb-gold); color: var(--fb-black); }
.footer-bottom { color: rgba(255,255,255,0.5); }

/* Floating buttons */
.floating-whatsapp {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 4px 15px rgba(37,211,102,0.4);
    z-index: 1040;
    text-decoration: none;
    transition: transform 0.2s;
}
.floating-whatsapp:hover { transform: scale(1.08); color: white; }

.floating-cart {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--fb-black);
    color: var(--fb-white);
    padding: 0.7rem 1.4rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    z-index: 1040;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}
.floating-cart:hover { color: var(--fb-gold); }
.fc-total { color: var(--fb-gold); }

/* Gallery */
.gallery-item {
    border-radius: var(--fb-radius);
    overflow: hidden;
    position: relative;
    aspect-ratio: 1;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.gallery-item:hover img { transform: scale(1.08); }

/* Page header */
.page-header {
    background: var(--fb-black);
    color: var(--fb-white);
    padding: 2.5rem 0;
    text-align: center;
}
.page-header h1 { margin: 0; font-size: 1.8rem; }
.page-header p { opacity: 0.8; margin: 0.5rem 0 0; }

/* Search bar */
.search-box {
    position: relative;
    max-width: 400px;
    margin: 0 auto 1.5rem;
}
.search-box input {
    padding-left: 2.5rem;
    border-radius: 50px;
}
.search-box i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--fb-muted);
}

/* Toast */
.toast-container { z-index: 1100; }

/* Responsive */
@media (max-width: 767.98px) {
    .hero-section { padding: 2.5rem 0; text-align: center; }
    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .section { padding: 2.5rem 0; }
    .food-card-img { height: 150px; }
    .floating-whatsapp { bottom: 80px; right: 15px; width: 50px; height: 50px; font-size: 1.4rem; }
}

@media (max-width: 575.98px) {
    .navbar-brand .brand-text { font-size: 1.25rem; }
    .food-card-actions { flex-direction: column; }
}

/* Print styles for order receipt */
@media print {
    body * { visibility: hidden; }
    .print-area, .print-area * { visibility: visible; }
    .print-area { position: absolute; left: 0; top: 0; width: 100%; }
    .no-print { display: none !important; }
}

/* Accessibility */
:focus-visible {
    outline: 2px solid var(--fb-gold);
    outline-offset: 2px;
}

/* Loading spinner */
.spinner-border-sm { width: 1rem; height: 1rem; }

/* Unavailable badge */
.badge-unavailable {
    background: var(--fb-danger);
    color: white;
    font-size: 0.7rem;
}

.floating-messenger {
    position: fixed;
    bottom: 160px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #0084ff;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 4px 15px rgba(0,132,255,0.4);
    z-index: 1040;
    text-decoration: none;
}
.floating-messenger:hover { transform: scale(1.08); color: white; }
@media (max-width: 767.98px) {
    .floating-messenger { bottom: 145px; right: 15px; width: 46px; height: 46px; }
}

/* Hero Slider */
.hero-slider-wrap { background: #0d0d0d; }
.hero-slide {
    min-height: 420px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 3.5rem 0;
}
.hero-slide-content { max-width: 560px; color: #fff; }
.hero-slide .hero-title { color: #fff; text-shadow: 0 2px 12px rgba(0,0,0,.4); }
.hero-slide .hero-subtitle { color: rgba(255,255,255,.9); }
#heroCarousel .carousel-indicators [data-bs-target] {
    width: 10px; height: 10px; border-radius: 50%; background: #e8b923;
}
#heroCarousel .carousel-control-prev-icon,
#heroCarousel .carousel-control-next-icon {
    filter: none; background-color: rgba(0,0,0,.35); border-radius: 50%;
    width: 2.5rem; height: 2.5rem; background-size: 50%;
}

/* Price display - force readable Latin digits */
.food-card-price,
.food-card-price .price-now,
.cart-item .line-total,
.cart-summary {
    font-family: 'Inter', system-ui, sans-serif;
    font-variant-numeric: tabular-nums;
}
.food-card-price .price-now {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0d0d0d;
}
.food-card-price .old-price {
    font-size: 0.9rem;
    color: #6c757d;
    text-decoration: line-through;
    font-weight: 400;
    margin-left: 0.4rem;
}

/* Logo size guide visual */
.navbar-logo {
    max-height: 42px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
}

@media (max-width: 767.98px) {
    .hero-slide { min-height: 360px; text-align: center; }
    .hero-slide-content { margin: 0 auto; }
}

/* ===== Premium Hero ===== */
.hero-premium {
    background: linear-gradient(145deg, #0a0a0a 0%, #1a1508 40%, #0d0d0d 100%);
    color: #fff;
    overflow: hidden;
}
.hero-premium-slide {
    padding: 3.25rem 0 3.5rem;
    min-height: 380px;
    display: flex;
    align-items: center;
}
.hero-eyebrow {
    color: #e8b923;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}
.hero-premium .hero-title {
    font-size: clamp(1.75rem, 4.5vw, 2.6rem);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 0.85rem;
    color: #fff;
}
.hero-premium .hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.82);
    max-width: 480px;
    margin-bottom: 1.5rem;
}
.hero-visual {
    border-radius: 20px;
    overflow: hidden;
    background: rgba(232,185,35,0.08);
    border: 1px solid rgba(232,185,35,0.2);
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-visual-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}
.hero-visual-fallback {
    text-align: center;
    padding: 3rem;
    font-size: 2rem;
    font-weight: 700;
}
#heroCarousel .carousel-indicators {
    margin-bottom: 0.75rem;
}
#heroCarousel .carousel-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #e8b923;
    opacity: 0.4;
}
#heroCarousel .carousel-indicators .active {
    opacity: 1;
}

/* Category cards premium */
.cat-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid rgba(0,0,0,0.04);
}
.cat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.1);
}
.cat-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 0.75rem;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(232,185,35,0.2), rgba(232,185,35,0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #c99a1a;
}
.cat-card h5 {
    font-size: 0.98rem;
    margin-bottom: 0.2rem;
    color: #0d0d0d;
}
.cat-card p {
    font-size: 0.78rem;
    color: #888;
}

/* Order CTA stronger */
.btn-gold {
    box-shadow: 0 4px 14px rgba(232,185,35,0.35);
}

@media (max-width: 767.98px) {
    .hero-premium-slide {
        min-height: 320px;
        padding: 2.5rem 0;
        text-align: center;
    }
    .hero-premium .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-btns {
        justify-content: center;
    }
}

/* ===== Sticky contact stack (WhatsApp / Messenger / IMO / Call) ===== */
.sticky-contact {
    position: fixed;
    right: 16px;
    bottom: 100px;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}
.sticky-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    text-decoration: none !important;
    font-size: 1.55rem;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    position: relative;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    animation: sticky-bounce 2.4s ease-in-out infinite;
}
.sticky-btn:nth-child(2) { animation-delay: 0.2s; }
.sticky-btn:nth-child(3) { animation-delay: 0.4s; }
.sticky-btn:nth-child(4) { animation-delay: 0.6s; }

.sticky-btn::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid currentColor;
    opacity: 0.55;
    animation: sticky-pulse 2s ease-out infinite;
}
.sticky-btn:hover {
    transform: scale(1.12);
    box-shadow: 0 8px 28px rgba(0,0,0,0.35);
    animation-play-state: paused;
}
.sticky-label {
    position: absolute;
    right: 62px;
    background: #0d0d0d;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35rem 0.65rem;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translateX(8px);
    transition: all 0.2s ease;
}
.sticky-btn:hover .sticky-label {
    opacity: 1;
    transform: translateX(0);
}
.sticky-wa {
    background: #25D366;
    color: #fff;
}
.sticky-msg {
    background: #0084ff;
}
.sticky-imo {
    background: #1c1c1c;
    border: 2px solid #00c3ff;
}
.sticky-imo-text {
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #00c3ff;
    text-transform: lowercase;
}
.sticky-call {
    background: #e8b923;
    color: #0d0d0d !important;
    font-size: 1.35rem;
}
.sticky-call::before {
    border-color: #e8b923;
}

@keyframes sticky-pulse {
    0% { transform: scale(1); opacity: 0.55; }
    70% { transform: scale(1.35); opacity: 0; }
    100% { transform: scale(1.35); opacity: 0; }
}
@keyframes sticky-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* Hide old single floating whatsapp if any leftover */
.floating-whatsapp,
.floating-messenger { display: none !important; }

@media (max-width: 767.98px) {
    .sticky-contact {
        right: 12px;
        bottom: 90px;
        gap: 10px;
    }
    .sticky-btn {
        width: 48px;
        height: 48px;
        font-size: 1.35rem;
    }
    .sticky-label { display: none; }
}
