/* ============================================
   MOBILE-FIRST RESPONSIVE STYLES
   JeninBeauty - 100% Mobile Friendly
   ============================================ */
/* Base - Mobile First */
* {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    font-size: 16px;
}

/* Touch-friendly targets */
a,
button,
input,
select,
textarea {
    min-height: 44px;
    min-width: 44px;
}

/* Prevent horizontal scroll */
body {
    overflow-x: hidden;
    max-width: 100vw;
}

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

/* Containers */
.container {
    width: 100%;
    padding: 0 15px;
    margin: 0 auto;
}

/* Grid System */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.col {
    padding: 0 10px;
    width: 100%;
}

/* Mobile (default) */
.col-xs-12 {
    width: 100%;
}

.col-xs-6 {
    width: 50%;
}

.col-xs-4 {
    width: 33.33%;
}

.col-xs-3 {
    width: 25%;
}

/* Small devices (landscape phones, 576px+) */
@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }

    .col-sm-12 {
        width: 100%;
    }

    .col-sm-6 {
        width: 50%;
    }

    .col-sm-4 {
        width: 33.33%;
    }

    .col-sm-3 {
        width: 25%;
    }
}

/* Medium devices (tablets, 768px+) */
@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }

    .col-md-12 {
        width: 100%;
    }

    .col-md-6 {
        width: 50%;
    }

    .col-md-4 {
        width: 33.33%;
    }

    .col-md-3 {
        width: 25%;
    }
}

/* Large devices (desktops, 992px+) */
@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }

    .col-lg-12 {
        width: 100%;
    }

    .col-lg-6 {
        width: 50%;
    }

    .col-lg-4 {
        width: 33.33%;
    }

    .col-lg-3 {
        width: 25%;
    }
}

/* Extra large (large desktops, 1200px+) */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

/* ============================================
   MOBILE NAVIGATION
   ============================================ */
/* Mobile Menu Button */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    padding: 10px;
    cursor: pointer;
    color: inherit;
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }

    /* Hide desktop nav on mobile */
    .main-nav,
    .header-actions {
        display: none !important;
    }

    /* Mobile header */
    .header {
        position: sticky;
        top: 0;
        z-index: 100;
        background: white;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .header-content {
        flex-wrap: wrap;
        gap: 10px;
        padding: 10px;
    }

    .header .logo img {
        max-height: 40px;
    }

    /* Mobile menu panel */
    .mobile-nav-panel {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: white;
        z-index: 9999;
        overflow-y: auto;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
    }

    .mobile-nav-panel.active {
        display: block;
    }

    .mobile-nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 9998;
    }

    .mobile-nav-overlay.active {
        display: block;
    }
}

/* ============================================
   PRODUCT CARDS - MOBILE
   ============================================ */
@media (max-width: 768px) {
    .products-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 10px;
    }

    .product-card {
        padding: 10px;
        border-radius: 8px;
    }

    .product-card img {
        aspect-ratio: 1;
        object-fit: cover;
    }

    .product-card h3 {
        font-size: 14px;
        line-height: 1.3;
    }

    .product-card .price {
        font-size: 16px;
        font-weight: 700;
    }

    .product-card .btn {
        padding: 10px;
        font-size: 12px;
    }
}

/* ============================================
   CART PAGE - MOBILE
   ============================================ */
@media (max-width: 768px) {
    .cart-page {
        padding: 20px 0;
    }

    .cart-layout {
        flex-direction: column;
    }

    .cart-item {
        flex-direction: column;
        padding: 15px;
        gap: 15px;
    }

    .cart-item-image {
        width: 100%;
        height: 150px;
    }

    .cart-item-details {
        width: 100%;
    }

    .cart-item-actions {
        flex-direction: row;
        justify-content: space-between;
    }



    body {
        padding-bottom: 80px;
    }
}

/* ============================================
   CHECKOUT - MOBILE
   ============================================ */
@media (max-width: 768px) {
    .checkout-page {
        padding: 20px 0;
    }

    .checkout-form {
        padding: 15px;
    }

    .checkout-steps {
        flex-direction: column;
        gap: 10px;
    }

    .checkout-step {
        padding: 15px;
        border-radius: 8px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px;
        font-size: 16px;
    }

    .payment-methods {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .payment-option {
        padding: 15px;
    }
}

/* ============================================
   PRODUCT DETAIL - MOBILE
   ============================================ */
@media (max-width: 768px) {
    .product-page {
        padding: 15px 0;
    }

    .product-gallery {
        margin-bottom: 20px;
    }

    .product-info {
        padding: 15px;
    }

    .product-price {
        font-size: 24px;
    }

    .quantity-selector {
        width: 100%;
    }

    .product-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .product-buttons .btn {
        width: 100%;
    }

    .product-tabs {
        flex-direction: column;
    }

    .product-tab {
        padding: 12px;
        text-align: center;
    }
}

/* ============================================
   ACCOUNT PAGE - MOBILE
   ============================================ */
@media (max-width: 768px) {
    .account-page {
        padding: 20px 0;
    }

    .account-tabs {
        flex-wrap: wrap;
        gap: 5px;
    }

    .account-tab {
        flex: 1 1 calc(50% - 5px);
        padding: 12px 8px;
        font-size: 14px;
    }

    .account-content {
        padding: 15px;
    }

    .order-item {
        padding: 15px;
    }
}

/* ============================================
   FORMS - MOBILE
   ============================================ */
@media (max-width: 768px) {
    .form-container {
        padding: 20px;
        margin: 10px;
    }

    .form-row {
        flex-direction: column;
        gap: 15px;
    }

    .form-group {
        margin-bottom: 15px;
    }

    .form-group label {
        font-size: 14px;
    }

    .form-group input,
    .form-group select,
    button[type="submit"] {
        width: 100%;
        padding: 14px;
        font-size: 16px;
    }
}

/* ============================================
   FOOTER - MOBILE
   ============================================ */
@media (max-width: 768px) {
    .footer {
        padding: 30px 0 80px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-column {
        padding: 10px;
    }

    .footer-column h4 {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .footer-column ul li {
        padding: 8px 0;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

/* ============================================
   SEARCH - MOBILE
   ============================================ */
@media (max-width: 768px) {
    .search-results {
        padding: 15px;
    }

    .search-result-item {
        flex-direction: column;
        padding: 15px;
        gap: 10px;
    }

    .search-result-item img {
        width: 100%;
        height: 120px;
    }

    .search-filters {
        flex-direction: column;
        gap: 10px;
    }

    .filter-group {
        width: 100%;
    }
}

/* ============================================
   WISHLIST - MOBILE
   ============================================ */
@media (max-width: 768px) {
    .wishlist-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .wishlist-item {
        padding: 10px;
    }

    .wishlist-item img {
        aspect-ratio: 1;
    }

    .wishlist-item-info {
        padding: 10px 0;
    }
}

/* ============================================
   NOTIFICATIONS / TOAST - MOBILE
   ============================================ */
@media (max-width: 768px) {
    .toast-container {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }

    .toast {
        width: 100%;
        min-width: auto;
        padding: 12px 15px;
        font-size: 14px;
    }

    #jb-toast {
        left: 10px;
        right: 10px;
        bottom: 10px;
        min-width: auto;
        width: auto;
    }
}

/* ============================================
   LOADING STATES - MOBILE
   ============================================ */
@media (max-width: 768px) {
    .skeleton {
        border-radius: 8px;
    }

    .skeleton-text {
        height: 14px;
    }

    .skeleton-image {
        aspect-ratio: 1;
    }

    .loading-spinner {
        width: 40px;
        height: 40px;
    }

    .loading-overlay {
        padding: 20px;
    }
}

/* ============================================
   BACK TO TOP - MOBILE
   ============================================ */
@media (max-width: 768px) {

    #jb-backtop,
    #quick-back-to-top {
        bottom: 100px;
        right: 15px;
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}

/* ============================================
   UTILITIES - MOBILE
   ============================================ */
@media (max-width: 768px) {
    .hide-mobile {
        display: none !important;
    }

    .show-mobile {
        display: block !important;
    }

    .show-mobile-flex {
        display: flex !important;
    }

    .text-center-mobile {
        text-align: center;
    }

    .text-right-mobile {
        text-align: right;
    }

    .text-left-mobile {
        text-align: left;
    }

    .mt-0-mobile {
        margin-top: 0;
    }

    .mb-0-mobile {
        margin-bottom: 0;
    }

    .p-0-mobile {
        padding: 0;
    }

    .w-100-mobile {
        width: 100%;
    }

    .h-100-mobile {
        height: 100%;
    }
}

/* ============================================
   SCROLLBAR - MOBILE
   ============================================ */
@media (max-width: 768px) {
    ::-webkit-scrollbar {
        width: 4px;
        height: 4px;
    }

    ::-webkit-scrollbar-track {
        background: #f1f1f1;
    }

    ::-webkit-scrollbar-thumb {
        background: #e11d48;
        border-radius: 2px;
    }
}

/* ============================================
   SAFE AREA - iPhone X+
   ============================================ */
@supports (padding-bottom: env(safe-area-inset-bottom)) {

    .mobile-nav,
    .cart-summary,
    .checkout-summary {
        padding-bottom: calc(10px + env(safe-area-inset-bottom));
    }

    body {
        padding-bottom: calc(20px + env(safe-area-inset-bottom));
    }
}

/* ============================================
   HEADER SEARCH - MOBILE FIXES
   ============================================ */
@media (max-width: 768px) {
    .header-search {
        position: relative !important;
        flex: 1 !important;
        min-width: 0 !important;
        max-width: 100% !important;
    }

    .header-search form {
        border-radius: 25px !important;
        display: flex !important;
        width: 100% !important;
    }

    .header-search input {
        padding: 10px 12px !important;
        font-size: 13px !important;
        min-width: 0 !important;
        flex: 1 !important;
    }

    .header-search button {
        padding: 8px 14px !important;
        font-size: 12px !important;
        min-width: 40px !important;
        max-width: 45px !important;
        width: 45px !important;
    }

    .header-search button i {
        font-size: 13px !important;
    }
}

@media (max-width: 480px) {
    .header-search input {
        padding: 8px 10px !important;
        font-size: 12px !important;
    }

    .header-search button {
        padding: 6px 10px !important;
        font-size: 11px !important;
        min-width: 36px !important;
        max-width: 38px !important;
        width: 38px !important;
    }

    .header-search button i {
        font-size: 12px !important;
    }
}

/* ============================================================
   MOBILE FIX 2026 – JeninBeauty Comprehensive Mobile Polish
   ============================================================ */

/* ── 1. TOP BAR: Hide on small phones, compact on tablets ──── */
@media (max-width: 640px) {
    .top-bar {
        display: none !important;
        /* Save screen real estate on phones */
    }
}

@media (min-width: 641px) and (max-width: 991px) {
    .top-bar {
        padding: 6px 0 !important;
        font-size: 11px !important;
    }

    .top-bar-contact a span {
        display: none !important;
    }

    .top-bar-contact a {
        width: 30px !important;
        height: 30px !important;
    }

    .top-bar-social a {
        width: 28px !important;
        height: 28px !important;
    }
}

/* ── 2. HEADER-MAIN: Compact single-row layout on mobile ────── */
@media (max-width: 991px) {
    .header-main {
        padding: 8px 0 !important;
    }

    .header-main .container {
        gap: 10px !important;
        padding: 0 12px !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
    }

    /* Logo: only icon, no brand text */
    .site-brand {
        display: none !important;
    }

    /* Logo image: smaller */
    .header-main .logo img {
        height: 44px !important;
        width: auto !important;
    }

    /* Search: take remaining space */
    .header-search {
        flex: 1 !important;
        min-width: 0 !important;
        max-width: none !important;
    }

    .header-search input {
        padding: 10px 12px !important;
        font-size: 13px !important;
    }

    .header-search button {
        padding: 10px 14px !important;
        min-width: 44px !important;
        max-width: 44px !important;
        width: 44px !important;
    }

    .header-search button span {
        display: none !important;
    }

    /* Action buttons: hide text/affiliate/wishlist — keep only cart & hamburger */
    .header-actions .header-action-btn:not(.cart-btn) {
        display: none !important;
    }

    .header-actions {
        gap: 6px !important;
        flex-shrink: 0 !important;
    }

    .header-action-btn.cart-btn {
        padding: 10px 14px !important;
        font-size: 13px !important;
        border-radius: 50px !important;
    }

    /* Hamburger: show */
    .mobile-menu-btn {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 44px !important;
        height: 44px !important;
        order: -1;
        flex-shrink: 0;
    }

    /* Nav bar: completely hidden on mobile (use bottom-nav instead) */
    .nav-bar {
        display: none !important;
    }
}

/* ── 3. HEADER SEARCH: autocomplete correct on mobile ─────── */
@media (max-width: 991px) {
    .header-search {
        position: relative !important;
        overflow: visible !important;
    }

    .header-search>.search-autocomplete {
        position: absolute !important;
        top: calc(100% + 4px) !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        max-width: none !important;
        z-index: 999999 !important;
    }
}

/* ── 4. TRUST BADGES BAR: always horizontal scroll, no wrap ── */
@media (max-width: 768px) {
    .trust-badges-bar-new {
        padding: 12px 0 !important;
        overflow: hidden !important;
    }

    .trust-badges-bar-new .trust-badges-grid,
    .trust-badges-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        -ms-overflow-style: none !important;
        /* IE 10+ / Edge Legacy         */
        gap: 0 !important;
        justify-content: flex-start !important;
    }

    /* Chrome, Safari, Samsung Internet: hide scrollbar via pseudo-element */
    .trust-badges-bar-new .trust-badges-grid::-webkit-scrollbar,
    .trust-badges-grid::-webkit-scrollbar {
        display: none !important;
    }

    .trust-badges-bar-new .trust-badge,
    .trust-badge {
        flex: 0 0 auto !important;
        flex-direction: row !important;
        padding: 8px 16px !important;
        border-radius: 0 !important;
        white-space: nowrap !important;
        align-items: center !important;
        gap: 8px !important;
    }

    .trust-badges-bar-new .trust-badge-text,
    .trust-badge-text {
        display: flex !important;
        flex-direction: row !important;
        align-items: baseline !important;
        gap: 4px !important;
        white-space: nowrap !important;
    }

    .trust-badge-title {
        font-size: 12px !important;
        font-weight: 700 !important;
    }

    .trust-badge-desc {
        font-size: 11px !important;
    }

    .trust-badges-bar-new .trust-badge-icon,
    .trust-badge-icon {
        width: 32px !important;
        height: 32px !important;
        font-size: 14px !important;
        flex-shrink: 0 !important;
    }
}

/* ── 5. TOAST: Lift above bottom nav bar on mobile ─────────── */
@media (max-width: 768px) {
    .toast-container {
        bottom: 80px !important;
        /* above 70px bottom nav */
        left: 12px !important;
        right: 12px !important;
        z-index: 10001 !important;
    }

    .toast {
        min-width: auto !important;
        max-width: none !important;
        width: 100% !important;
        font-size: 13px !important;
        padding: 12px 14px !important;
    }

    #jb-toast {
        bottom: 80px !important;
        left: 12px !important;
        right: 12px !important;
    }
}

/* ── 6. AI CHAT BUTTON: stack above WhatsApp properly ──────── */
@media (max-width: 768px) {

    /* AI chat toggle — above bottom nav + a little gap */
    .ai-chat-toggle,
    .ai-chat-widget {
        bottom: 90px !important;
        right: 15px !important;
    }

    /* Chat window opens upward from the button */
    .ai-chat-container {
        bottom: 155px !important;
        right: 10px !important;
        left: 10px !important;
        width: calc(100vw - 20px) !important;
        height: calc(100vh - 200px) !important;
        max-height: 520px !important;
    }
}

/* ── 7. BACK-TO-TOP BUTTON: clear of bottom nav and chat ───── */
@media (max-width: 768px) {

    #jb-backtop,
    #quick-back-to-top,
    .back-to-top,
    [id*="back-top"],
    [id*="scroll-top"],
    [class*="back-top"],
    [class*="scroll-top"] {
        bottom: 90px !important;
        right: 70px !important;
        /* offset left of chat btn */
        width: 40px !important;
        height: 40px !important;
        font-size: 16px !important;
    }
}

/* ── 8. FLOATING WHATSAPP BUTTON: above bottom nav ─────────── */
@media (max-width: 768px) {

    a[href*="wa.me"]:not(.header-action-btn):not(.social-link):not(.contact-support-btn),
    .whatsapp-float,
    .whatsapp-btn,
    [class*="whatsapp"][style*="fixed"] {
        bottom: 90px !important;
    }
}

/* ── 9. BODY PADDING: account for fixed header + bottom nav ── */
@media (max-width: 991px) {

    /* Extra bottom padding so content clears bottom nav */
    body {
        padding-bottom: 75px !important;
        overflow-x: hidden !important;
    }
}

/* ── 10. HERO SECTION: CTA button above bottom nav ─────────── */
@media (max-width: 768px) {
    .floating-product-hero {
        height: 75vh !important;
        min-height: 480px !important;
    }

    .hero-content {
        right: 5% !important;
        left: 5% !important;
        top: 52% !important;
        max-width: none !important;
        text-align: center !important;
    }

    .hero-content-inner {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .hero-content h2 {
        font-size: 26px !important;
    }

    .hero-content p {
        font-size: 14px !important;
    }

    .hero-cta-btn {
        padding: 16px 34px !important;
        font-size: 15px !important;
        margin-bottom: 20px !important;
        /* clear bottom nav */
    }

    .nav-arrow {
        display: none !important;
    }

    .hero-nav {
        bottom: 25px !important;
    }
}

/* ── 11. AFFILIATE CTA SECTION: tighter on phone ────────────  */
@media (max-width: 768px) {
    .affiliate-cta-section {
        padding: 30px 0 !important;
        margin: 20px 0 !important;
    }

    .affiliate-cta-section h2 {
        font-size: 22px !important;
    }

    .affiliate-cta-section p {
        font-size: 14px !important;
    }

    .affiliate-cta-section .btn {
        padding: 12px 24px !important;
        font-size: 13px !important;
    }
}

/* ── 12. PRODUCT GRID: 2-column on mobile ───────────────────  */
@media (max-width: 640px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
        padding: 0 8px !important;
    }

    .product-card-footer {
        flex-wrap: nowrap !important;
        gap: 6px !important;
    }

    .btn-card-buy {
        font-size: 11px !important;
        padding: 8px 6px !important;
    }
}

/* ── 13. CATEGORY GRID: 3-column on mobile ──────────────────  */
@media (max-width: 640px) {
    .category-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 8px !important;
    }

    .category-card-overlay {
        display: flex !important;
        align-items: flex-end !important;
        justify-content: center !important;
        padding: 8px 4px !important;
    }

    .category-card-overlay h3 {
        font-size: 10px !important;
        color: white !important;
        display: block !important;
        text-align: center !important;
        margin: 0 !important;
    }

    .category-count {
        font-size: 8px !important;
        display: block !important;
    }
}

/* ── 14. SECTION SPACING: tighter on phone ──────────────────  */
@media (max-width: 768px) {
    .products-section {
        padding: 30px 0 !important;
    }

    .features-section {
        padding: 20px 0 !important;
    }

    .categories-section {
        padding: 25px 0 !important;
    }

    .section-title h2 {
        font-size: 22px !important;
    }

    .section-title p {
        font-size: 13px !important;
    }
}

/* ── 15. GENERAL: prevent any horizontal overflow ────────────  */
img,
video,
iframe,
table {
    max-width: 100%;
}

.container {
    overflow-x: hidden;
}

/* ── 16. BIGGER TOUCH TARGETS on mobile ─────────────────────  */
@media (max-width: 768px) {
    .mobile-bottom-nav-item {
        min-height: 56px !important;
        padding: 6px 8px !important;
    }

    .add-to-wishlist,
    .quick-view-btn,
    .product-action {
        min-width: 36px !important;
        min-height: 36px !important;
    }
}

/* ── 17. PRODUCT PAGE UI GLITCHES FIXES ─────────────────────── */
@media (max-width: 768px) {

    /* Star Rating Component Size Fix */
    .product-rating,
    .stars,
    .star-rating,
    .product-item-rating,
    .rating-stars {
        font-size: 14px !important;
        line-height: 1 !important;
        margin-bottom: 8px !important;
        display: flex !important;
        align-items: center !important;
        flex-wrap: wrap !important;
    }

    .product-rating i,
    .stars i,
    .star-rating i,
    .product-item-rating i,
    .rating-stars i {
        font-size: 14px !important;
        display: inline-block !important;
    }

    /* Social Share Icons Overlap Fix */
    .product-share,
    .social-share,
    .share-buttons,
    .share-product {
        display: flex !important;
        flex-wrap: wrap !important;
        align-items: center !important;
        gap: 12px !important;
        margin-top: 15px !important;
    }

    .product-share label,
    .social-share label,
    .share-buttons label,
    .share-label {
        margin-bottom: 5px !important;
        display: block !important;
        width: 100% !important;
        /* Force label to own line if cramped */
        font-size: 14px !important;
    }

    .product-share a,
    .social-share a,
    .share-buttons a {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 36px !important;
        height: 36px !important;
        border-radius: 50% !important;
        margin-bottom: 5px !important;
        font-size: 16px !important;
    }
}

/* ── 18. CATEGORY CARDS VISUAL HIERARCHY ────────────────────── */
.category-card {
    position: relative !important;
}

.category-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.7) 100%) !important;
    pointer-events: none;
    z-index: 1;
    border-radius: inherit;
}

.category-card-overlay,
.category-card-content,
.category-info,
.category-card-body,
.category-title {
    position: relative !important;
    z-index: 2 !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8) !important;
}

/* ── 19. STICKY HEADER INCONSISTENCY FIX ──────────────────── */
.header-sticky,
.sticky-header,
.header.sticky {
    background-color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
    z-index: 9999 !important;
    position: sticky !important;
    top: 0 !important;
    transition: all 0.3s ease-in-out !important;
}