/* ==========================================================================
   🌴 COOL SUMMER EVENT THEME - HEADER CLIENT REDESIGN 🌴
   This is a separate, modular CSS file. 
   When summer is over, simply delete/rename this file to restore default styles.
   ========================================================================== */

/* 1. Header & Glassmorphic Sea Breeze Background */
.main-header {
    background: rgba(224, 242, 254, 0.8) !important;
    /* Cool translucent Sky Blue */
    backdrop-filter: blur(20px) saturate(170%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(170%) !important;
    border-bottom: 2px dashed #93c5fd !important;
    /* Soft sea wave dashed line */
    box-shadow: 0 4px 20px rgba(14, 165, 233, 0.08) !important;
    transition: all 0.3s ease;
    z-index: 1030;
}

/* Deep Marine Ocean Top Bar */
.top-bar {
    background: linear-gradient(90deg, #0284c7 0%, #0369a1 40%, #0c4a6e 100%) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
    color: #e0f2fe !important;
    font-weight: 500;
}

.top-bar-left .top-bar-badge {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%) !important;
    /* Sunny orange badge */
    color: #ffffff !important;
    box-shadow: 0 2px 6px rgba(217, 119, 6, 0.4);
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.top-bar-text {
    color: #bae6fd !important;
}

.top-bar-right .top-bar-item {
    color: #e0f2fe !important;
    transition: color 0.2s ease;
}

.top-bar-right .top-bar-item:hover {
    color: #fef08a !important;
    /* Yellow warm sun color on hover */
}

/* 2. Floating Summer Wave Accent */
.summer-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    /* Crucial: ensures no clicks are blocked */
    overflow: hidden;
    z-index: 1;
}

/* Dynamic moving small wave at the very bottom of the header */
.summer-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 200%;
    height: 4px;
    background: radial-gradient(circle at 10px 0, transparent 8px, #38bdf8 8px, #38bdf8 10px, transparent 11px);
    background-size: 20px 20px;
    opacity: 0.4;
    animation: wave-slide 10s linear infinite;
}

/* 3. Navigation Links Aesthetics */
.navbar-glass .nav-link {
    color: #0369a1 !important;
    /* Cool dark ocean blue color */
    font-weight: 600 !important;
    padding: 10px 14px !important;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 10;
}

.navbar-glass .nav-link iconify-icon {
    transition: transform 0.3s ease;
    color: #0ea5e9;
}

/* Hover effect: cooling ocean blue pill */
.navbar-glass .nav-link:hover {
    color: #0284c7 !important;
    background: rgba(14, 165, 233, 0.08);
    transform: translateY(-2px);
}

.navbar-glass .nav-link:hover iconify-icon {
    transform: rotate(15deg) scale(1.15);
    color: #0284c7;
}

/* Active links styled as tropical island wave */
.navbar-glass .nav-link.active {
    color: #ffffff !important;
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%) !important;
    box-shadow: 0 4px 10px rgba(2, 132, 199, 0.25);
}

.navbar-glass .nav-link.active iconify-icon {
    color: #ffffff !important;
}

/* Custom indicator (Nav blob) hidden to let our summer links shine */
.nav-blob {
    display: none !important;
}

/* 4. Action Buttons, Icons and Badges */
.nav-icon-btn {
    background: rgba(14, 165, 233, 0.06) !important;
    border: 1px solid rgba(14, 165, 233, 0.15) !important;
    color: #0284c7 !important;
    transition: all 0.25s ease !important;
    border-radius: 12px !important;
    width: 40px !important;
    height: 40px !important;
}

.nav-icon-btn:hover {
    background: linear-gradient(135deg, #bae6fd 0%, #38bdf8 100%) !important;
    color: #0369a1 !important;
    border-color: #38bdf8 !important;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 8px rgba(14, 165, 233, 0.15);
}

.nav-badge-count {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%) !important;
    /* Vivid sun orange count badge */
    border: 2px solid rgba(224, 242, 254, 0.9) !important;
    color: #ffffff !important;
    font-weight: 700;
}

/* User avatar container decoration */
.user-avatar-small {
    border: 2px solid #38bdf8 !important;
    box-shadow: 0 0 10px rgba(56, 189, 248, 0.3);
    transition: all 0.3s ease;
}

.nav-user-info:hover .user-avatar-small {
    transform: scale(1.08) rotate(5deg);
    border-color: #0284c7 !important;
    box-shadow: 0 0 12px rgba(2, 132, 199, 0.5);
}

.user-name {
    color: #0369a1 !important;
}

.user-balance {
    color: #f97316 !important;
    /* Hot sunny orange for balance text */
}

/* Dropdown styling to match ocean theme */
.user-dropdown-menu,
.notification-dropdown,
.recent-viewed-dropdown,
.mega-menu {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    border: 1px solid #bae6fd !important;
    border-radius: 16px !important;
    box-shadow: 0 10px 30px rgba(3, 105, 161, 0.1) !important;
    padding: 8px !important;
}

.user-dropdown-menu .dropdown-item {
    border-radius: 10px;
    color: #334155;
    transition: all 0.2s ease;
}

.user-dropdown-menu .dropdown-item:hover {
    background: rgba(14, 165, 233, 0.08) !important;
    color: #0284c7 !important;
    transform: translateX(4px);
}

.user-dropdown-menu .dropdown-item.text-danger:hover {
    background: #fef2f2 !important;
    color: #dc2626 !important;
}

/* 5. Mobile Layout Harmonization */
.navbar-toggler {
    background: rgba(56, 189, 248, 0.15) !important;
    border: 1px solid rgba(56, 189, 248, 0.3) !important;
    border-radius: 10px !important;
    padding: 6px 10px !important;
    transition: all 0.2s ease;
}

.navbar-toggler:hover {
    background: rgba(56, 189, 248, 0.25) !important;
}

.navbar-toggler-icon {
    filter: invert(36%) sepia(85%) saturate(1915%) hue-rotate(180deg) brightness(98%) contrast(98%) !important;
}

@media (min-width: 992px) {
    .navbar-glass {
        background: transparent !important;
        box-shadow: none !important;
        border-bottom: none !important;
    }
}

@media (max-width: 991.98px) {
    .main-header {
        background: rgba(224, 242, 254, 0.95) !important;
        border-bottom: 2px dashed #bae6fd !important;
    }
}

/* 6. Animations (Keyframes) */

/* Wave sliding animation */
@keyframes wave-slide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* 7. Deep Blue Ocean Sailing Boat */
.summer-boat-container {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.summer-boat {
    position: absolute;
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.9) !important;
    /* Premium classy white sailboat */
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15)) drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
    animation: sail-back-forth 205s linear infinite;
    /* Mega slow, highly relaxing wind-powered feel */
    top: calc(50% - 13px);
    opacity: 0.88;
}

/* Sail back and forth keyframe animation with realistic floating sway */
@keyframes sail-back-forth {
    0% {
        left: -50px;
        transform: scaleX(-1) rotate(0deg);
        /* Face right and sail right */
    }

    12.5% {
        transform: scaleX(-1) rotate(3deg) translateY(-1px);
        /* Gentle waves sway */
    }

    25% {
        transform: scaleX(-1) rotate(-3deg) translateY(1px);
    }

    37.5% {
        transform: scaleX(-1) rotate(3deg) translateY(-1px);
    }

    45% {
        left: calc(100% + 50px);
        transform: scaleX(-1) rotate(0deg) translateY(0);
    }

    46% {
        left: calc(100% + 50px);
        transform: scaleX(1) rotate(0deg) translateY(0);
        /* Turn around facing left */
    }

    50% {
        left: calc(100% + 50px);
        transform: scaleX(1) rotate(0deg);
    }

    62.5% {
        transform: scaleX(1) rotate(3deg) translateY(-1px);
    }

    75% {
        transform: scaleX(1) rotate(-3deg) translateY(1px);
    }

    87.5% {
        transform: scaleX(1) rotate(3deg) translateY(-1px);
    }

    95% {
        left: -50px;
        transform: scaleX(1) rotate(0deg) translateY(0);
    }

    96% {
        left: -50px;
        transform: scaleX(-1) rotate(0deg) translateY(0);
        /* Turn around facing right */
    }

    100% {
        left: -50px;
        transform: scaleX(-1) rotate(0deg);
    }
}

/* 8. Summer Vibe Sidebar & Quick-Rankings Widget */

/* Glass-panel container */
.side-panel-fix.glass-panel {
    background: rgba(240, 253, 250, 0.5) !important;
    /* Cool Mint Water translucent background */
    backdrop-filter: blur(25px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(25px) saturate(180%) !important;
    border: 1px solid rgba(147, 197, 253, 0.4) !important;
    box-shadow: 0 12px 40px rgba(14, 165, 233, 0.06) !important;
    border-radius: 20px !important;
}

/* Prevent card hover clipping by adding margin/padding breathing room */
.side-panel-fix .side-tab-content.active {
    padding: 6px 8px 6px 6px !important;
}

.category-sidebar,
.top-recharge-list {
    padding: 2px !important;
}

/* Tabs container with smooth sand shell capsule */
.side-tabs-container {
    background: rgba(224, 242, 254, 0.65) !important;
    padding: 5px !important;
    border-radius: 30px !important;
    border: 1px solid rgba(147, 197, 253, 0.3) !important;
    display: flex !important;
    gap: 4px !important;
}

/* Tab buttons style */
.side-tab-btn {
    flex: 1 !important;
    background: transparent !important;
    border: none !important;
    border-radius: 30px !important;
    color: #0369a1 !important;
    /* Dark Ocean Blue */
    font-weight: 700 !important;
    font-size: 0.9rem !important;
    padding: 8px 16px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* Active tab button with stunning azure ocean gradient */
.side-tab-btn.active {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%) !important;
    /* Active Sunny Breeze Gradient */
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.35) !important;
    font-weight: 700 !important;
}

/* Tab button hover effect */
.side-tab-btn:hover:not(.active) {
    background: rgba(14, 165, 233, 0.1) !important;
    color: #0284c7 !important;
}

/* Category Item styling in Sidebar */
.cat-side-item {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 11px 14px !important;
    margin-bottom: 8px !important;
    background: rgba(255, 255, 255, 0.75) !important;
    /* Soft white sand foam */
    border: 1px solid rgba(186, 230, 253, 0.4) !important;
    border-radius: 14px !important;
    color: #0369a1 !important;
    text-decoration: none !important;
    font-weight: 700 !important;
    box-shadow: 0 2px 6px rgba(14, 165, 233, 0.02) !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* Category Hover / Interaction */
.cat-side-item:hover {
    transform: translateY(-2px) scale(1.01) !important;
    background: #ffffff !important;
    border-color: #38bdf8 !important;
    box-shadow: 0 6px 16px rgba(14, 165, 233, 0.12) !important;
    color: #0284c7 !important;
}

/* Category Icon / Thumbnail */
.cat-side-img {
    width: 32px !important;
    height: 32px !important;
    border-radius: 10px !important;
    object-fit: cover !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08) !important;
    flex-shrink: 0 !important;
    transition: transform 0.25s ease !important;
}

.cat-side-item:hover .cat-side-img {
    transform: scale(1.08) !important;
}

/* Fallback icons inside category item */
.cat-side-item .bg-light.text-secondary {
    width: 32px !important;
    height: 32px !important;
    border-radius: 10px !important;
    background: rgba(224, 242, 254, 0.8) !important;
    color: #0284c7 !important;
    font-size: 1.1rem !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05) !important;
    flex-shrink: 0 !important;
}

.cat-side-name {
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    letter-spacing: -0.01em !important;
}

/* Top Recharge List Item styling */
.top-list-item {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 11px 14px !important;
    margin-bottom: 8px !important;
    background: rgba(255, 255, 255, 0.75) !important;
    border: 1px solid rgba(186, 230, 253, 0.4) !important;
    border-radius: 14px !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 2px 6px rgba(14, 165, 233, 0.02) !important;
}

.top-list-item:hover {
    transform: translateY(-2px) scale(1.01) !important;
    background: #ffffff !important;
    border-color: #38bdf8 !important;
    box-shadow: 0 6px 16px rgba(14, 165, 233, 0.12) !important;
}

/* Rank Badge as Ocean Pearl Medallions */
.rank-badge {
    width: 24px !important;
    height: 24px !important;
    border-radius: 50% !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: 800 !important;
    font-size: 11px !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08) !important;
    flex-shrink: 0 !important;
}

/* Top Rank 1: Sunshine Golden Medallion */
.rank-badge.rank-1 {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%) !important;
    color: #ffffff !important;
    border: 1.5px solid #fff !important;
}

/* Top Rank 2: Pearl Silver Medallion */
.rank-badge.rank-2 {
    background: linear-gradient(135deg, #94a3b8 0%, #64748b 100%) !important;
    color: #ffffff !important;
    border: 1.5px solid #fff !important;
}

/* Top Rank 3: Sunset Bronze Medallion */
.rank-badge.rank-3 {
    background: linear-gradient(135deg, #b45309 0%, #78350f 100%) !important;
    color: #ffffff !important;
    border: 1.5px solid #fff !important;
}

/* General ranks 4+ badge styling */
.rank-badge:not(.rank-1):not(.rank-2):not(.rank-3) {
    background: rgba(224, 242, 254, 0.8) !important;
    color: #0369a1 !important;
}

/* 9. Premium Summer Banner overrides */
.home-banner-image {
    height: 100% !important;
    width: 100% !important;
    object-fit: cover !important;
    border-radius: inherit !important;
}

.home-banner .swiper-slide {
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
}

/* 10. Premium Summer Marquee / Recent Orders Ticker */
.modern-marquee {
    background: linear-gradient(90deg, rgba(224, 242, 254, 0.2) 0%, rgba(240, 253, 250, 0.3) 50%, rgba(224, 242, 254, 0.2) 100%) !important;
    border-top: 1px solid rgba(14, 165, 233, 0.1) !important;
    border-bottom: 1px solid rgba(14, 165, 233, 0.1) !important;
    padding: 10px 0 !important;
    height: auto !important;
}

.glass-marquee-card {
    background: rgba(255, 255, 255, 0.75) !important;
    backdrop-filter: blur(12px) saturate(120%) !important;
    -webkit-backdrop-filter: blur(12px) saturate(120%) !important;
    border: 1px solid rgba(14, 165, 233, 0.18) !important;
    border-radius: 16px !important;
    box-shadow: 0 8px 24px rgba(14, 165, 233, 0.05) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.glass-marquee-card:hover {
    transform: none !important;
    box-shadow: 0 8px 24px rgba(14, 165, 233, 0.05) !important;
    border-color: rgba(14, 165, 233, 0.18) !important;
    background: rgba(255, 255, 255, 0.75) !important;
}

/* Glowing Neon Mint breathing pulse dot */
.card-pulse {
    background: #10b981 !important;
    box-shadow: 0 0 8px #10b981, 0 0 15px rgba(16, 185, 129, 0.5) !important;
    animation: pulse-glow 2s infinite alternate !important;
}

@keyframes pulse-glow {
    0% {
        transform: scale(0.9);
        opacity: 0.6;
        box-shadow: 0 0 4px #10b981, 0 0 8px rgba(16, 185, 129, 0.3);
    }

    100% {
        transform: scale(1.2);
        opacity: 1;
        box-shadow: 0 0 10px #10b981, 0 0 20px rgba(16, 185, 129, 0.6);
    }
}

/* Avatar: Sunset/Ocean Blue lagoon gradient */
.avatar-gradient {
    background: linear-gradient(135deg, #0ea5e9 0%, #059669 100%) !important;
    /* Sky Blue to Mint Emerald */
    border-radius: 10px !important;
    box-shadow: 0 4px 10px rgba(14, 165, 233, 0.2) !important;
}

.avatar-gradient i {
    color: #ffffff !important;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1)) !important;
}

/* Typography styles */
.u-name {
    color: #0284c7 !important;
    /* Deep ocean blue */
    font-weight: 800 !important;
    letter-spacing: 0.5px !important;
}

.u-action {
    color: #64748b !important;
    font-size: 0.7rem !important;
}

.p-name {
    color: #0f172a !important;
    /* Charcoal black */
    font-weight: 700 !important;
}

.p-price {
    color: #f97316 !important;
    /* Sunny Orange / Coral Red */
    font-weight: 850 !important;
    text-shadow: 0 1px 1px rgba(249, 115, 22, 0.05) !important;
}

/* Meta time tag divider */
.card-meta {
    border-left: 1px dashed rgba(14, 165, 233, 0.3) !important;
}

.time-tag {
    color: #0369a1 !important;
    /* Light sky ocean blue */
    font-weight: 600 !important;
}

/* ============================================================
   10.5 Summer Top Recharge Modal - Ocean Leaderboard
   ============================================================ */

/* Modal content wrapper */
#topRechargeModal .modal-content {
    background: linear-gradient(165deg,
            #f0f9ff 0%,
            #e0f2fe 40%,
            #f0fdf4 100%) !important;
    border: 1px solid rgba(14, 165, 233, 0.25) !important;
    border-radius: 18px !important;
    box-shadow:
        0 20px 60px rgba(14, 165, 233, 0.18),
        0 4px 16px rgba(0, 0, 0, 0.08) !important;
    overflow: hidden !important;
}

/* Header - deep ocean gradient */
#topRechargeModal .modal-header {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 60%, #0369a1 100%) !important;
    border-bottom: none !important;
    padding: 18px 20px !important;
    position: relative !important;
    overflow: hidden !important;
}

/* Header wave ripple decoration */
#topRechargeModal .modal-header::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: -20%;
    width: 140%;
    height: 24px;
    background: linear-gradient(165deg,
            #f0f9ff 0%,
            #e0f2fe 40%,
            #f0fdf4 100%);
    border-radius: 50% 50% 0 0;
    z-index: 1;
}

/* Trophy icon & title - white on ocean bg */
#topRechargeModal .modal-header h5 {
    color: #ffffff !important;
    font-size: 1.1rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.5px !important;
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.15) !important;
}

#topRechargeModal .modal-header h5 i {
    color: #fde68a !important;
    filter: drop-shadow(0 0 6px rgba(251, 191, 36, 0.6)) !important;
    animation: trophy-float 2.5s ease-in-out infinite !important;
}

@keyframes trophy-float {

    0%,
    100% {
        transform: translateY(0) rotate(-4deg);
    }

    50% {
        transform: translateY(-4px) rotate(4deg);
    }
}

/* Close button - white on dark bg */
#topRechargeModal .btn-close {
    filter: invert(1) brightness(2) !important;
    opacity: 0.85 !important;
    position: relative;
    z-index: 2;
}

/* Body padding */
#topRechargeModal .modal-body {
    padding: 20px 16px 8px !important;
}

/* Each recharge row */
#topRechargeModal .top-recharge-list>* {
    background: rgba(255, 255, 255, 0.75) !important;
    border: 1px solid rgba(14, 165, 233, 0.12) !important;
    border-radius: 10px !important;
    margin-bottom: 8px !important;
    transition: all 0.2s ease !important;
    backdrop-filter: blur(4px) !important;
}

#topRechargeModal .top-recharge-list>*:hover {
    background: rgba(255, 255, 255, 0.95) !important;
    border-color: rgba(14, 165, 233, 0.35) !important;
    transform: translateX(3px) !important;
    box-shadow: 0 3px 12px rgba(14, 165, 233, 0.12) !important;
}

/* Rank 1 - Ocean Gold (teal-gold) */
#topRechargeModal .rank-1 {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%) !important;
    border: none !important;
    box-shadow: 0 4px 14px rgba(14, 165, 233, 0.4) !important;
    color: #fff !important;
}

/* Rank 2 - Ocean Silver (cool cyan) */
#topRechargeModal .rank-2 {
    background: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 100%) !important;
    border: none !important;
    box-shadow: 0 3px 10px rgba(56, 189, 248, 0.35) !important;
    color: #fff !important;
}

/* Rank 3 - Ocean Teal (mint-teal) */
#topRechargeModal .rank-3 {
    background: linear-gradient(135deg, #34d399 0%, #059669 100%) !important;
    border: none !important;
    box-shadow: 0 3px 10px rgba(52, 211, 153, 0.35) !important;
    color: #fff !important;
}

/* Footer close button - cool ocean blue */
#topRechargeModal .modal-footer {
    background: transparent !important;
    border-top: 1px solid rgba(14, 165, 233, 0.12) !important;
    padding: 12px 16px 16px !important;
}

#topRechargeModal .modal-footer .btn-primary {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%) !important;
    border: none !important;
    border-radius: 10px !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    box-shadow: 0 4px 14px rgba(14, 165, 233, 0.35) !important;
    transition: all 0.25s ease !important;
}

#topRechargeModal .modal-footer .btn-primary:hover {
    background: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 100%) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.45) !important;
}

/* ============================================================
   11. Premium Summer Product Cards & Category Sections
   Single Cool Ocean Blue: #0ea5e9
   ============================================================ */

/* Category Header - single cool blue underline */
.category-header {
    border-bottom: 2px solid rgba(14, 165, 233, 0.35) !important;
    background: transparent !important;
    position: relative !important;
}

/* Category Title - underwater drifting effect */
@keyframes underwater-drift {
    0% {
        letter-spacing: 1px;
        transform: scaleX(1) scaleY(1);
        text-shadow:
            0 0 6px rgba(14, 165, 233, 0.20),
            0 1px 0 rgba(255, 255, 255, 0.5);
        filter: blur(0px);
    }

    30% {
        letter-spacing: 3px;
        transform: scaleX(1.025) scaleY(0.97);
        text-shadow:
            0 0 12px rgba(14, 165, 233, 0.35),
            0 2px 8px rgba(56, 189, 248, 0.25),
            0 1px 0 rgba(255, 255, 255, 0.6);
        filter: blur(0.3px);
    }

    60% {
        letter-spacing: 2px;
        transform: scaleX(1.01) scaleY(0.99);
        text-shadow:
            0 0 10px rgba(14, 165, 233, 0.28),
            0 1px 4px rgba(56, 189, 248, 0.15);
        filter: blur(0.15px);
    }

    100% {
        letter-spacing: 1px;
        transform: scaleX(1) scaleY(1);
        text-shadow:
            0 0 6px rgba(14, 165, 233, 0.20),
            0 1px 0 rgba(255, 255, 255, 0.5);
        filter: blur(0px);
    }
}

.category-title {
    color: #0284c7 !important;
    background: none !important;
    -webkit-text-fill-color: #0284c7 !important;
    border-left: 5px solid #0ea5e9 !important;
    text-shadow: none !important;
    display: inline-block !important;
    animation: underwater-drift 3.8s ease-in-out infinite !important;
    transform-origin: left center !important;
}

/* View All link - single cool blue */
.view-all-link {
    color: #0ea5e9 !important;
    font-weight: 700 !important;
    transition: all 0.25s ease !important;
}

.view-all-link:hover {
    color: #0284c7 !important;
    opacity: 1 !important;
    filter: none !important;
}

/* Idle shimmer keyframe */
@keyframes cat-card-idle-glow {

    0%,
    100% {
        box-shadow:
            0 2px 12px rgba(14, 165, 233, 0.08),
            0 1px 3px rgba(0, 0, 0, 0.05),
            inset 0 0 0 0 rgba(14, 165, 233, 0);
        border-color: rgba(14, 165, 233, 0.16);
    }

    50% {
        box-shadow:
            0 4px 20px rgba(14, 165, 233, 0.14),
            0 1px 4px rgba(0, 0, 0, 0.04),
            inset 0 0 8px rgba(186, 230, 253, 0.08);
        border-color: rgba(14, 165, 233, 0.30);
    }
}

/* Product Card - cool glass, idle breathing glow */
.cat-card {
    background: linear-gradient(175deg,
            rgba(255, 255, 255, 0.97) 0%,
            rgba(240, 249, 255, 0.90) 60%,
            rgba(224, 242, 254, 0.82) 100%) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    border: 1px solid rgba(14, 165, 233, 0.20) !important;
    border-radius: 8px !important;
    box-shadow:
        0 2px 12px rgba(14, 165, 233, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.05) !important;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
    animation: cat-card-idle-glow 3.5s ease-in-out infinite !important;
}

/* Product Card Hover - ocean glow, stop idle animation */
.cat-card:hover {
    border-color: rgba(14, 165, 233, 0.55) !important;
    box-shadow:
        0 12px 32px rgba(14, 165, 233, 0.20),
        0 0 0 2px rgba(14, 165, 233, 0.14),
        inset 0 0 20px rgba(186, 230, 253, 0.06) !important;
    transform: translateY(-6px) scale(1.015) !important;
    background: #ffffff !important;
    animation-play-state: paused !important;
}

/* Thumbnail - gentle warm vignette overlay */
.cat-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            transparent 55%,
            rgba(14, 165, 233, 0.08) 100%);
    pointer-events: none;
    z-index: 1;
    border-radius: 0 0 2px 2px;
    transition: opacity 0.3s ease;
}

.cat-card:hover .cat-thumb::after {
    background: linear-gradient(180deg,
            transparent 40%,
            rgba(14, 165, 233, 0.10) 100%);
}

/* Image hover - warm zoom */
.cat-card:hover .cat-thumb img {
    transform: scale(1.08) !important;
    filter: brightness(1.04) saturate(1.1) !important;
}

/* Cat Body - cool tinted footer */
.cat-body {
    background: linear-gradient(180deg,
            rgba(240, 249, 255, 0.50) 0%,
            rgba(224, 242, 254, 0.30) 100%) !important;
    border-top: 1px solid rgba(14, 165, 233, 0.12) !important;
}

.cat-card:hover .cat-body {
    background: rgba(248, 251, 255, 0.70) !important;
}

/* Product title */
.cat-title {
    color: #0f172a !important;
    font-weight: 700 !important;
    transition: color 0.2s ease !important;
}

.cat-card:hover .cat-title {
    color: #0284c7 !important;
}

/* Stock / Sold info */
.cat-info {
    color: #475569 !important;
}

.cat-info b {
    color: #0ea5e9 !important;
}

/* Ribbon - cool ocean blue */
.ribbon-hot {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%) !important;
    box-shadow: -2px 2px 10px rgba(14, 165, 233, 0.4) !important;
    border-bottom-left-radius: 14px !important;
    letter-spacing: 0.5px !important;
}

/* Random price badge - cool blue */
.cat-thumb .badge.bg-danger {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%) !important;
    box-shadow: 0 2px 10px rgba(14, 165, 233, 0.4) !important;
    letter-spacing: 0.3px !important;
}

/* Category block spacing - subtle wave separator */
.category-block {
    position: relative !important;
}

.category-block::before {
    content: '';
    display: block;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.12) 30%, rgba(249, 115, 22, 0.08) 70%, transparent);
    margin-bottom: 4px;
}

/* Mobile tweaks */
@media (max-width: 768px) {
    .cat-card {
        border-radius: 8px !important;
    }

    .cat-card:hover {
        transform: translateY(-3px) scale(1.01) !important;
    }
}

/* ============================================================
   12. Summer FX - Sea Bubble Hover Effect
   ============================================================ */

/* Keyframe: bubbles rising upward */
@keyframes sea-bubble-rise {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.7;
    }

    80% {
        opacity: 0.5;
    }

    100% {
        transform: translateY(-110px) scale(0.4);
        opacity: 0;
    }
}

@keyframes sea-bubble-rise-2 {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.5;
    }

    80% {
        opacity: 0.3;
    }

    100% {
        transform: translateY(-95px) scale(0.3);
        opacity: 0;
    }
}

@keyframes sea-bubble-rise-3 {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.6;
    }

    80% {
        opacity: 0.2;
    }

    100% {
        transform: translateY(-130px) scale(0.2);
        opacity: 0;
    }
}

@keyframes summer-ribbon-shine {
    0% {
        left: -60%;
    }

    100% {
        left: 160%;
    }
}

@keyframes summer-card-entrance {
    from {
        opacity: 0;
        transform: translateY(16px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ── Card base: clean, glass, entrance animation ── */
.cat-card {
    overflow: hidden;
    animation: summer-card-entrance 0.45s ease both;
}

/* ── Card hover: pure white background ── */
.cat-card:hover {
    background: #ffffff !important;
}

/* ── Sea bubbles: pseudo-element container approach ──
   3 bubbles positioned at bottom, triggered on hover */
.cat-card .cat-body {
    position: relative;
    overflow: visible;
}

/* Bubble 1 – center */
.cat-card:hover .cat-body::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 30%;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.9), rgba(14, 165, 233, 0.35));
    border: 1.5px solid rgba(14, 165, 233, 0.5);
    box-shadow: inset 0 -2px 4px rgba(255, 255, 255, 0.6), 0 2px 6px rgba(14, 165, 233, 0.2);
    animation: sea-bubble-rise 1.4s ease-out infinite;
    pointer-events: none;
    z-index: 20;
}

/* Bubble 2 – left offset, different size & timing */
.cat-card:hover .cat-body::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 55%;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.9), rgba(56, 189, 248, 0.3));
    border: 1px solid rgba(56, 189, 248, 0.45);
    box-shadow: inset 0 -1px 3px rgba(255, 255, 255, 0.5);
    animation: sea-bubble-rise-2 1.1s ease-out 0.3s infinite;
    pointer-events: none;
    z-index: 20;
}

/* Bubble 3 – injected via cat-thumb pseudo (right side) */
.cat-card:hover .cat-thumb::before {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 15%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.95), rgba(14, 165, 233, 0.2));
    border: 1px solid rgba(14, 165, 233, 0.35);
    animation: sea-bubble-rise-3 1.7s ease-out 0.6s infinite;
    pointer-events: none;
    z-index: 6;
}

/* ── Ribbon shine sweep ── */
.ribbon-hot {
    overflow: hidden;
}

.ribbon-hot::after {
    content: '';
    position: absolute;
    top: 0;
    left: -60%;
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
    animation: summer-ribbon-shine 2.8s ease-in-out infinite;
}

/* ── "Xem Tất Cả" arrow slide on hover ── */
.view-all-link i {
    display: inline-block;
    transition: transform 0.25s ease;
}

.view-all-link:hover i {
    transform: translateX(5px) !important;
}

/* ── Remove category title animations, keep just color ── */
.category-title {
    animation: none !important;
}

/* ── Remove ☀️ sun icon from category header ── */
.category-header::before {
    display: none !important;
    content: none !important;
}

.category-header {
    padding-left: 0 !important;
}

/* ── Mobile: strip pseudo-bubble FX ── */
@media (max-width: 768px) {

    .cat-card:hover .cat-body::before,
    .cat-card:hover .cat-body::after,
    .cat-card:hover .cat-thumb::before {
        display: none;
    }
}

/* ── JS-injected sea bubbles ── */
.sea-bubble {
    position: absolute;
    bottom: 0;
    border-radius: 50%;
    pointer-events: none;
    z-index: 30;
    /* Base glass look - single cool blue tones */
    background: radial-gradient(circle at 32% 32%,
            rgba(255, 255, 255, 0.92) 0%,
            rgba(186, 230, 253, 0.55) 50%,
            rgba(14, 165, 233, 0.18) 100%);
    border: 1px solid rgba(14, 165, 233, 0.4);
    box-shadow:
        inset 0 -2px 5px rgba(255, 255, 255, 0.7),
        inset 2px 2px 4px rgba(255, 255, 255, 0.5),
        0 2px 8px rgba(14, 165, 233, 0.15);
    animation: sea-bubble-js-rise var(--dur, 1.6s) ease-out var(--delay, 0s) forwards;
}

@keyframes sea-bubble-js-rise {
    0% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0;
    }

    8% {
        opacity: 0.85;
    }

    60% {
        transform: translateY(calc(var(--height, -80px))) translateX(var(--sway, 6px)) scale(0.85);
        opacity: 0.6;
    }

    100% {
        transform: translateY(calc(var(--height, -80px) * 1.4)) translateX(calc(var(--sway, 6px) * -0.5)) scale(0.3);
        opacity: 0;
    }
}

/* ============================================================
   13. Summer Nav Active State - Ocean Pill Style
   ============================================================ */

/* Desktop navbar active link */
.navbar-nav .nav-link.active,
.nav-link.active {
    background: linear-gradient(135deg,
            rgba(14, 165, 233, 0.14) 0%,
            rgba(56, 189, 248, 0.10) 100%) !important;
    color: #0284c7 !important;
    border-bottom: 2px solid #0ea5e9 !important;
    border-radius: 8px 8px 0 0 !important;
    box-shadow:
        0 2px 10px rgba(14, 165, 233, 0.12),
        inset 0 -1px 0 rgba(14, 165, 233, 0.3) !important;
    font-weight: 700 !important;
}

/* Desktop nav active hover stays cool */
.navbar-nav .nav-link.active:hover,
.nav-link.active:hover {
    color: #0284c7 !important;
    background: linear-gradient(135deg,
            rgba(14, 165, 233, 0.20) 0%,
            rgba(56, 189, 248, 0.14) 100%) !important;
    border-bottom-color: #0ea5e9 !important;
}

/* Mobile nav active - pill style, no underline */
@media (max-width: 991px) {

    .navbar-nav .nav-link.active,
    .nav-link.active {
        border-bottom: none !important;
        border-left: 3px solid #0ea5e9 !important;
        border-radius: 0 8px 8px 0 !important;
        background: linear-gradient(90deg,
                rgba(14, 165, 233, 0.12) 0%,
                rgba(56, 189, 248, 0.06) 100%) !important;
        padding-left: 14px !important;
    }
}

/* ============================================================
   14. Summer Header - Profile Hover & Icon Colors
   ============================================================ */

/* User profile pill hover - ocean blue border */
.nav-user-info:hover {
    border-color: #0ea5e9 !important;
    box-shadow:
        0 4px 14px rgba(14, 165, 233, 0.18),
        0 0 0 3px rgba(14, 165, 233, 0.10) !important;
    transform: translateY(-1px) !important;
}

/* User avatar border glow on profile hover */
.nav-user-info:hover .user-avatar-small {
    border-color: #0ea5e9 !important;
    box-shadow: 0 0 0 2px rgba(14, 165, 233, 0.30) !important;
}

/* Nav icon buttons hover - ocean blue */
.nav-icon-btn:hover {
    color: #0284c7 !important;
    background: rgba(14, 165, 233, 0.08) !important;
    box-shadow: 0 3px 10px rgba(14, 165, 233, 0.14) !important;
}

.nav-icon-btn:hover iconify-icon {
    color: #0284c7 !important;
}

/* Top-bar icons - dark ocean blue instead of white */
@media (min-width: 992px) {

    /* Top-bar right icons (nạp tiền, lịch sử...) */
    .top-bar-item {
        color: #bae6fd !important;
    }

    .top-bar-item span {
        color: #bae6fd !important;
    }

    .top-bar-item iconify-icon,
    .top-bar-item i {
        color: #bae6fd !important;
    }

    .top-bar-item:hover {
        color: #fef08a !important;
    }

    .top-bar-item:hover span,
    .top-bar-item:hover iconify-icon,
    .top-bar-item:hover i {
        color: #fef08a !important;
    }

    /* Navbar nav-link icons - always dark ocean, not white */
    .navbar-nav .nav-link iconify-icon {
        color: #334155 !important;
    }

    .navbar-nav .nav-link:hover iconify-icon {
        color: #0284c7 !important;
    }

    .navbar-nav .nav-link.active iconify-icon {
        color: #0284c7 !important;
    }
}

/* ============================================================
   15. Summer Wind Effect - Diagonal Breeze Streaks
   ============================================================ */

/* Fixed overlay: sits above content, no interaction */
#summer-wind-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

/* Individual wind streak */
.wind-streak {
    position: absolute;
    /* angle: -15deg diagonal, left→right */
    border-radius: 999px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(56, 189, 248, 0.35) 20%,
            rgba(255, 255, 255, 0.85) 50%,
            rgba(56, 189, 248, 0.35) 80%,
            transparent 100%);
    transform: rotate(-12deg);
    animation: wind-blow var(--dur, 1.2s) ease-out var(--delay, 0s) forwards;
    pointer-events: none;
    box-shadow: 0 0 3px rgba(56, 189, 248, 0.25);
}

@keyframes wind-blow {
    0% {
        transform: translateX(-120%) rotate(-12deg);
        opacity: 0;
    }

    10% {
        opacity: var(--opacity, 0.5);
    }

    85% {
        opacity: calc(var(--opacity, 0.5) * 0.75);
    }

    100% {
        transform: translateX(130vw) rotate(-12deg);
        opacity: 0;
    }
}

/* Summer Theme - Premium Footer Styling */
footer {
    position: relative;
    overflow: hidden;
    /* Soft sand-beach gradient to cool breeze water color */
    background: linear-gradient(180deg, #f0fdf4 0%, #e0f2fe 100%) !important;
    border-top: 2px solid #bae6fd !important;
}

footer .container {
    position: relative;
    z-index: 3;
}

/* ============================================================
   16. COOL SUMMER PRODUCT & DETAIL PAGE REJUVENATION 🌴
   ============================================================ */

/* Breadcrumbs Styling */
.breadcrumb-item a {
    color: #0284c7 !important;
    font-weight: 600 !important;
    transition: color 0.2s ease;
}

.breadcrumb-item a:hover {
    color: #0369a1 !important;
}

.breadcrumb-item.active {
    color: #0ea5e9 !important;
    font-weight: 500;
}

/* Glassmorphic Panel (Filters & Messages) */
.glass-panel {
    background: rgba(240, 253, 254, 0.65) !important;
    border: 1.5px solid rgba(14, 165, 233, 0.12) !important;
    backdrop-filter: blur(14px) saturate(120%) !important;
    -webkit-backdrop-filter: blur(14px) saturate(120%) !important;
    border-radius: 16px !important;
    box-shadow: 0 8px 32px rgba(14, 165, 233, 0.04) !important;
}

.glass-panel.border-start.border-primary {
    border-left: 4px solid #0ea5e9 !important;
}

/* Elegant Search & Filter Form Elements */
.input-group-text {
    background: rgba(224, 242, 254, 0.8) !important;
    border: 1.5px solid rgba(14, 165, 233, 0.15) !important;
    color: #0369a1 !important;
    font-weight: 700 !important;
    border-radius: 12px 0 0 12px !important;
}

.form-control,
.form-select {
    background: rgba(255, 255, 255, 0.85) !important;
    border: 1.5px solid rgba(14, 165, 233, 0.15) !important;
    color: #0369a1 !important;
    border-radius: 12px !important;
    font-weight: 500 !important;
    transition: all 0.25s ease !important;
}

.form-control:focus,
.form-select:focus {
    background: #ffffff !important;
    border-color: #0ea5e9 !important;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.2) !important;
    color: #0284c7 !important;
}

.input-group>.form-control {
    border-radius: 0 12px 12px 0 !important;
}

.input-group>.form-select {
    border-radius: 0 12px 12px 0 !important;
}

/* Category Filter Buttons */
.btn-filter-mobile {
    background: rgba(240, 253, 254, 0.85) !important;
    border: 1.5px solid rgba(14, 165, 233, 0.2) !important;
    color: #0284c7 !important;
    border-radius: 14px !important;
}

.btn-filter-mobile:hover {
    background: #e0f2fe !important;
    color: #0369a1 !important;
}

/* Premium Filter Buttons */
.btn-secondary.btn-sm.px-4.w-bold,
.btn-secondary.btn-sm.px-4 {
    background: #e2e8f0 !important;
    border: 1px solid #cbd5e1 !important;
    color: #475569 !important;
    border-radius: 12px !important;
    font-weight: 700 !important;
    padding: 8px 18px !important;
}

.btn-secondary.btn-sm.px-4:hover {
    background: #cbd5e1 !important;
}

.btn-primary.btn-sm.px-4.fw-bold,
.btn-primary.btn-sm.px-4 {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%) !important;
    border: none !important;
    color: #fff !important;
    border-radius: 12px !important;
    font-weight: 700 !important;
    padding: 8px 18px !important;
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.2) !important;
}

.btn-primary.btn-sm.px-4:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(2, 132, 199, 0.3) !important;
}

/* Clean Product Explorer Cards Custom Styling */
.product-card {
    background: rgba(255, 255, 255, 0.85) !important;
    border: 1.5px solid rgba(14, 165, 233, 0.08) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.03) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.product-card:hover {
    transform: translateY(-6px) !important;
    border-color: rgba(14, 165, 233, 0.25) !important;
    box-shadow: 0 12px 28px rgba(14, 165, 233, 0.09) !important;
}

/* Dynamic Specs badge inside Cards */
.spec-card {
    background: rgba(224, 242, 254, 0.22) !important;
    border: 1px dashed rgba(14, 165, 233, 0.24) !important;
    border-radius: 10px !important;
    padding: 6px 10px !important;
    transition: all 0.2s ease;
}

.spec-card:hover {
    background: rgba(224, 242, 254, 0.45) !important;
    border-style: solid !important;
    border-color: #0ea5e9 !important;
}

.spec-label {
    color: #0284c7 !important;
}

.spec-value {
    color: #0f172a !important;
}

/* ============================================================
   17. INDIVIDUAL PRODUCT DETAIL PAGE (.product-gallery & Info) 🌴
   ============================================================ */

/* Product Gallery */
.product-gallery {
    background: rgba(255, 255, 255, 0.85) !important;
    border: 1.5px solid rgba(14, 165, 233, 0.08) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    box-shadow: 0 8px 30px rgba(14, 165, 233, 0.04) !important;
}

.product-slider-container {
    border-radius: 12px 12px 0 0 !important;
    overflow: hidden;
}

/* Swiper Pagination dots custom cool theme */
.main-swiper .swiper-pagination-bullet-active {
    background: #0ea5e9 !important;
    width: 20px !important;
    border-radius: 5px !important;
}

/* Thumbs */
.thumb-item {
    border: 2px solid transparent !important;
    border-radius: 12px !important;
    transition: all 0.25s ease !important;
    background: rgba(224, 242, 254, 0.1) !important;
}

.thumb-item:hover {
    border-color: #bae6fd !important;
}

.thumb-item.active {
    border-color: #0ea5e9 !important;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.18) !important;
}

/* Specs cards inside individual product page info block */
.col-lg-5 .card {
    background: rgba(255, 255, 255, 0.85) !important;
    border: 1.5px solid rgba(14, 165, 233, 0.08) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    box-shadow: 0 8px 30px rgba(14, 165, 233, 0.04) !important;
}

.col-lg-5 .col-6 .p-3.rounded {
    background-color: rgba(224, 242, 254, 0.35) !important;
    border: 1.5px solid rgba(14, 165, 233, 0.15) !important;
    border-radius: 14px !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 10px rgba(14, 165, 233, 0.02);
}

.col-lg-5 .col-6 .p-3.rounded:hover {
    transform: translateY(-2px);
    border-color: #0ea5e9 !important;
    background-color: rgba(224, 242, 254, 0.55) !important;
    box-shadow: 0 6px 16px rgba(14, 165, 233, 0.06);
}

.col-lg-5 .col-6 .p-3.rounded .fw-bold {
    color: #0284c7 !important;
    font-size: 11.5px !important;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.col-lg-5 .col-6 .p-3.rounded .text-dark {
    color: #0c4a6e !important;
    font-weight: 700 !important;
}

/* Beautiful Premium Summer Price Box */
.col-lg-5 .p-4.rounded.text-center.border-primary.border {
    background: linear-gradient(135deg, rgba(240, 253, 254, 0.8) 0%, rgba(224, 242, 254, 0.8) 100%) !important;
    border: 1.5px dashed rgba(14, 165, 233, 0.35) !important;
    border-radius: 18px !important;
    box-shadow: inset 0 0 12px rgba(14, 165, 233, 0.05);
}

/* Flash Sale banner */
.flash-sale-box {
    background: linear-gradient(135deg, rgba(254, 243, 199, 0.8) 0%, rgba(254, 240, 138, 0.8) 100%) !important;
    border-color: #f59e0b !important;
}

.col-lg-5 .fs-3.fw-bold.text-primary,
.price-box .text-danger {
    color: #0284c7 !important;
    font-family: 'Space Grotesk', sans-serif !important;
    font-weight: 800 !important;
}

/* Buy buttons custom styling */
.col-lg-5 form button[type="submit"],
.col-lg-5 .btn-buy-responsive {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%) !important;
    border: none !important;
    border-radius: 12px !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    height: 44px !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 4px 15px rgba(2, 132, 199, 0.3) !important;
}

.col-lg-5 form button[type="submit"]:hover,
.col-lg-5 .btn-buy-responsive:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(2, 132, 199, 0.45) !important;
}

/* Favorite heart button custom styles */
#btn-favorite {
    border-radius: 12px !important;
    transition: all 0.25s ease !important;
    background: #fff !important;
}

#btn-favorite:hover {
    background: rgba(220, 38, 38, 0.05) !important;
    border-color: #dc2626 !important;
    transform: scale(1.05);
}

/* Detail Description Block Card */
.row.g-4 .card {
    background: rgba(255, 255, 255, 0.85) !important;
    border: 1.5px solid rgba(14, 165, 233, 0.08) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border-radius: 18px !important;
    box-shadow: 0 8px 30px rgba(14, 165, 233, 0.04) !important;
}

.row.g-4 .card h5.border-bottom {
    color: #0369a1 !important;
    border-color: rgba(14, 165, 233, 0.15) !important;
}

.row.g-4 .card h5.border-bottom i {
    color: #0ea5e9 !important;
}

.product-description {
    color: #334155 !important;
    line-height: 1.7;
}

/* Modal styles custom styling */
#imagePreviewModal .modal-body {
    border-radius: 20px !important;
}

#imagePreviewModal img {
    border: 3px solid #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3) !important;
}

/* ============================================================
   18. COOL SUMMER CATEGORY EXPLORER PAGE REJUVENATION 🌴
   ============================================================ */

/* Category Page Banner Glassmorphic Styles */
.category-banner .glass-panel {
    background: rgba(240, 253, 254, 0.7) !important;
    border: 1.5px solid rgba(14, 165, 233, 0.15) !important;
    border-radius: 18px !important;
    box-shadow: 0 8px 30px rgba(14, 165, 233, 0.04) !important;
}

.category-icon-inner {
    background: rgba(224, 242, 254, 0.8) !important;
    border: 2px solid #bae6fd !important;
    border-radius: 12px !important;
    padding: 6px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.category-icon-inner img {
    border-radius: 6px !important;
}

/* Navigation Pills & Tabs Summer Theme Rejuvenation */
.nav-pills {
    background: rgba(224, 242, 254, 0.6) !important;
    border: 1.5px solid rgba(14, 165, 233, 0.18) !important;
    border-radius: 14px !important;
    padding: 4px !important;
    box-shadow: inset 0 0 10px rgba(14, 165, 233, 0.04) !important;
}

.nav-pills .nav-link {
    color: #0369a1 !important;
    background: transparent !important;
    font-weight: 700 !important;
    border-radius: 10px !important;
    transition: all 0.25s ease !important;
    border: none !important;
    font-size: 13.5px !important;
    padding: 8px 20px !important;
}

.nav-pills .nav-link:hover:not(.active) {
    background: rgba(14, 165, 233, 0.08) !important;
    color: #0284c7 !important;
}

.nav-pills .nav-link.active {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.3) !important;
    border-radius: 10px !important;
    border: none !important;
    padding-left: 20px !important;
    border-left: none !important;
}

/* Premium Summer Card Action Buttons */
.btn-cat-action {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%) !important;
    border: none !important;
    color: #ffffff !important;
    border-radius: 12px !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 15px rgba(2, 132, 199, 0.25) !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.btn-cat-action:hover {
    background: linear-gradient(135deg, #0ea5e9 0%, #0369a1 100%) !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 24px rgba(2, 132, 199, 0.4) !important;
}

/* ============================================================
   19. JELLY BOUNCE & FLOATING BUBBLES/SPARKLES BUY BUTTONS 🫧✨
   ============================================================ */

/* Target all main purchase/detail buttons */
.btn-cat-action,
.btn-buy-responsive,
.col-lg-5 form button[type="submit"],
#btn-submit-order,
.sticky-top button[data-bs-target="#authModal"] {
    position: relative !important;
    overflow: hidden !important;
    z-index: 1 !important;
    transition: all 0.3s ease !important;
}

/* 1. satisfying Jelly Bounce / Elastic wobble when hover */
.btn-cat-action:hover,
.btn-buy-responsive:hover,
.col-lg-5 form button[type="submit"]:hover,
#btn-submit-order:hover,
.sticky-top button[data-bs-target="#authModal"]:hover {
    animation: jelly-bounce 0.8s ease-in-out forwards !important;
    background: linear-gradient(135deg, #0ea5e9 0%, #0369a1 100%) !important;
    box-shadow: 0 8px 24px rgba(2, 132, 199, 0.4) !important;
}

/* 2. Floating Bubbles emitter from bottom left */
.btn-cat-action::before,
.btn-buy-responsive::before,
.col-lg-5 form button[type="submit"]::before,
#btn-submit-order::before,
.sticky-top button[data-bs-target="#authModal"]::before {
    content: '🫧' !important;
    position: absolute !important;
    font-size: 14px !important;
    bottom: -25px !important;
    left: 20% !important;
    opacity: 0 !important;
    pointer-events: none !important;
    z-index: 2 !important;
}

.btn-cat-action:hover::before,
.btn-buy-responsive:hover::before,
.col-lg-5 form button[type="submit"]:hover::before,
#btn-submit-order:hover::before,
.sticky-top button[data-bs-target="#authModal"]:hover::before {
    animation: bubble-float-left 1.4s ease-out infinite !important;
}

/* 3. Floating Golden Sparkles emitter from bottom right */
.btn-cat-action::after,
.btn-buy-responsive::after,
.col-lg-5 form button[type="submit"]::after,
#btn-submit-order::after,
.sticky-top button[data-bs-target="#authModal"]::after {
    content: '✨' !important;
    position: absolute !important;
    font-size: 12px !important;
    bottom: -25px !important;
    right: 25% !important;
    opacity: 0 !important;
    pointer-events: none !important;
    z-index: 2 !important;
}

.btn-cat-action:hover::after,
.btn-buy-responsive:hover::after,
.col-lg-5 form button[type="submit"]:hover::after,
#btn-submit-order:hover::after,
.sticky-top button[data-bs-target="#authModal"]:hover::after {
    animation: bubble-float-right 1.6s ease-out 0.4s infinite !important;
}

/* Icon micro-animations on hover */
.btn-cat-action:hover i,
.btn-buy-responsive:hover i,
.col-lg-5 form button[type="submit"]:hover i,
#btn-submit-order:hover i,
.sticky-top button[data-bs-target="#authModal"]:hover i,
.btn-cat-action:hover iconify-icon,
.btn-buy-responsive:hover iconify-icon,
.col-lg-5 form button[type="submit"]:hover iconify-icon,
#btn-submit-order:hover iconify-icon,
.sticky-top button[data-bs-target="#authModal"]:hover iconify-icon {
    display: inline-block !important;
    animation: cart-bounce 0.6s ease-in-out infinite alternate !important;
}

/* Animation Keyframes */

/* Jelly Elastic Wobble */
@keyframes jelly-bounce {
    0% { transform: scale(1); }
    30% { transform: scale(1.08, 0.92); }
    40% { transform: scale(0.92, 1.08); }
    50% { transform: scale(1.04, 0.96); }
    65% { transform: scale(0.98, 1.02); }
    75% { transform: scale(1.01, 0.99); }
    100% { transform: scale(1) translateY(-2px); }
}

/* Bubbles Floating Up Left */
@keyframes bubble-float-left {
    0% {
        bottom: -20px;
        left: 20%;
        opacity: 0;
        transform: scale(0.6) translateX(0);
    }
    30% {
        opacity: 0.9;
    }
    80% {
        opacity: 0.9;
    }
    100% {
        bottom: 110%;
        left: 28%;
        opacity: 0;
        transform: scale(1.2) translateX(12px);
    }
}

/* Golden Sparkles Floating Up Right */
@keyframes bubble-float-right {
    0% {
        bottom: -20px;
        right: 25%;
        opacity: 0;
        transform: scale(0.5) rotate(0deg) translateX(0);
    }
    30% {
        opacity: 0.95;
    }
    80% {
        opacity: 0.95;
    }
    100% {
        bottom: 110%;
        right: 32%;
        opacity: 0;
        transform: scale(1.3) rotate(180deg) translateX(-15px);
    }
}

/* Cart Icon bounce alternate */
@keyframes cart-bounce {
    0% {
        transform: translateY(0) scale(1);
    }
    100% {
        transform: translateY(-3px) scale(1.18);
    }
}

/* ============================================================
   20. GAME SERVICE (BOOSTING) SUMMER STYLE OVERRIDES 🎮☀️
   ============================================================ */

/* Left glass panel service detail styling */
.row.g-4 .col-lg-8 .glass-panel {
    background: rgba(255, 255, 255, 0.85) !important;
    border: 1.5px solid rgba(14, 165, 233, 0.12) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-radius: 20px !important;
}

/* Service Title & Headings */
.row.g-4 h4.fw-bold.text-dark {
    color: #0369a1 !important;
}

.row.g-4 h6.fw-bold.text-dark {
    color: #0284c7 !important;
    border-left: 4px solid #0ea5e9;
    padding-left: 10px;
    margin-left: -14px;
}

/* Custom Search Select Dropdown Summer Overrides */
.select-trigger {
    background: rgba(255, 255, 255, 0.9) !important;
    border: 1.5px solid rgba(14, 165, 233, 0.16) !important;
    border-radius: 12px !important;
    color: #0369a1 !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.select-trigger:hover,
.select-trigger.active {
    border-color: #0ea5e9 !important;
    background: #ffffff !important;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.15) !important;
}

.trigger-icon {
    color: #0ea5e9 !important;
}

.select-dropdown {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(15px) !important;
    border: 1.5px solid rgba(14, 165, 233, 0.18) !important;
    border-top: 3.5px solid #0ea5e9 !important;
    border-radius: 14px !important;
    box-shadow: 0 12px 36px rgba(14, 165, 233, 0.08) !important;
}

.search-box input {
    border: 1.5px solid rgba(14, 165, 233, 0.12) !important;
    border-radius: 8px !important;
}

.search-box input:focus {
    border-color: #0ea5e9 !important;
    box-shadow: 0 0 0 2px rgba(14, 165, 233, 0.1) !important;
}

.option-item:hover {
    background: rgba(14, 165, 233, 0.06) !important;
    color: #0284c7 !important;
    transform: translateX(4px) !important;
}

.option-item.selected {
    background: rgba(14, 165, 233, 0.12) !important;
}

.option-item.selected .option-name {
    color: #0284c7 !important;
    font-weight: 700 !important;
}

.option-name {
    color: #1e293b !important;
}

.option-price,
.check-icon {
    color: #0ea5e9 !important;
    font-weight: 700 !important;
}

/* Sticky payment side container */
.sticky-top > div.glass-panel {
    background: rgba(255, 255, 255, 0.95) !important;
    border: 1.5px solid rgba(14, 165, 233, 0.12) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    border-radius: 20px !important;
    box-shadow: 0 10px 35px rgba(14, 165, 233, 0.04) !important;
}

.sticky-top > div.glass-panel h5.border-bottom {
    color: #0369a1 !important;
    border-color: rgba(14, 165, 233, 0.15) !important;
}

#summary-package {
    color: #0ea5e9 !important;
}

#summary-price {
    color: #0284c7 !important;
    font-weight: 800 !important;
}

.py-3.px-3.bg-white.rounded-3.border.border-primary.border-dashed {
    background: rgba(224, 242, 254, 0.4) !important;
    border: 1.5px dashed rgba(14, 165, 233, 0.3) !important;
    border-radius: 12px !important;
}

/* Custom Payment Buttons Summer Color Override (To completely bypass Bootstrap's bg-primary) */
#btn-submit-order,
.sticky-top button[data-bs-target="#authModal"] {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%) !important;
    border: none !important;
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(2, 132, 199, 0.25) !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

/* Alert info box */
.alert-info.d-flex.gap-2 {
    background: rgba(224, 242, 254, 0.6) !important;
    border: 1px solid rgba(14, 165, 233, 0.14) !important;
    color: #0369a1 !important;
    border-radius: 14px !important;
}

.alert-info.d-flex.gap-2 i {
    color: #0ea5e9 !important;
}

/* ============================================================
   21. ICE-BLUE GLASSMOBILE BOTTOM NAVIGATION BAR 🫧📱
   ============================================================ */

.mobile-glass-nav {
    background: rgba(240, 253, 254, 0.85) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1.5px solid rgba(14, 165, 233, 0.18) !important;
    box-shadow: 0 12px 32px rgba(14, 165, 233, 0.12) !important;
}

.mobile-glass-item {
    color: #0369a1 !important;
    font-weight: 700 !important;
}

.mobile-glass-item.active {
    color: #ffffff !important;
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%) !important;
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.25) !important;
}

.mobile-glass-item.active .mobile-glass-icon {
    background: rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
}

/* Add a beautiful jelly scale pulse effect to active icons on hover/click */
.mobile-glass-item:hover .mobile-glass-icon {
    transform: scale(1.1);
}