/* ============================================================
    PREMIUM ADMIN DASHBOARD - OCEANIC LINEAR BLUE THEME
   ============================================================
*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* 1. Global Setup & Background */
body {
    overflow-x: hidden !important;
    font-family: 'Poppins', sans-serif !important;
    /* Soft version of your linear gradient for the body */
    background: #f4f7f9; 
    background-image: linear-gradient(90deg, rgba(28, 181, 224, 0.05) 0%, rgba(0, 8, 81, 0.05) 100%) !important;
    background-attachment: fixed !important;
    color: #333 !important;
    min-height: 100vh;
    margin: 0;
}

/* 2. Header & Navbar (Deep Blue Gradient) */
header, .navbar:not(.navbar-vertical), .topbar, .navbar-brand-wrapper {
    background: #1CB5E0 !important;
    /* Right side ekhon 'Deep Blue' kintu 'Dark Navy' noy */
    background: linear-gradient(90deg, #1CB5E0 0%, #0072ff 100%) !important;
    border-bottom: none !important;
    box-shadow: 0 4px 15px rgba(0, 114, 255, 0.2);
}

.navbar-nav .nav-link, .user-name, .navbar-tool-text, .navbar-tool-icon-box i {
    color: #ffffff !important;
    font-weight: 500 !important;
}
/* 3. Sidebar (Clean & Modern) */
.navbar-vertical-aside, .sidebar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    border-right: 1px solid rgba(28, 181, 224, 0.2) !important;
}

.navbar-vertical-fixed {
    right: 0 !important;
}

.navbar-vertical .navbar-nav.nav-tabs .active .nav-link {
    border-right: 4px solid #1CB5E0 !important;
    background: rgba(28, 181, 224, 0.1) !important;
    color: #000851 !important;
    font-weight: 600;
}

/* 4. Glassmorphism Cards */
.card, .banner_card, .flash_deal_product {
    background: #ffffff !important;
    border: 1px solid rgba(28, 181, 224, 0.1) !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04) !important;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(28, 181, 224, 0.15) !important;
}

/* 5. Buttons (Gradient Style) */
.btn-primary, .buy_btn, .btn-submit, .btn-scroll-top {
    background: #1CB5E0 !important;
    background: linear-gradient(90deg, #1CB5E0 0%, #000851 100%) !important;
    border: none !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 12px rgba(28, 181, 224, 0.3);
    transition: 0.3s;
}

.btn-primary:hover {
    filter: brightness(1.1);
    transform: scale(1.02);
    box-shadow: 0 6px 18px rgba(0, 8, 81, 0.3);
}

/* 6. Flash Deals & Countdowns */
.cz-countdown .cz-countdown-value {
    background: #000851 !important;
    color: #ffffff !important;
    border-radius: 4px;
    padding: 2px 8px;
}

.cz-countdown-days, .cz-countdown-hours, .cz-countdown-minutes, .cz-countdown-seconds {
    border: 1px solid #1CB5E0 !important;
}

/* 7. Footer (Gradient Style) */
footer, .footer {
    background: linear-gradient(90deg, #1CB5E0 0%, #000851 100%) !important;
    color: #ffffff !important;
    padding: 30px 0 !important;
    border-top: none !important;
}

footer a, footer p, footer span {
    color: #ffffff !important;
    opacity: 0.9;
}

/* 8. Forms & Inputs */
.form-control, .qty_input {
    background: #ffffff !important;
    border: 1px solid #dce0e5 !important;
    border-radius: 8px !important;
}

.form-control:focus {
    border-color: #1CB5E0 !important;
    box-shadow: 0 0 0 3px rgba(28, 181, 224, 0.15) !important;
}

/* 9. Badges & Labels */
.for-discount-value {
    background: linear-gradient(90deg, #1CB5E0 0%, #000851 100%) !important;
    color: #ffffff !important;
    font-weight: bold;
    border-radius: 4px;
    padding: 2px 10px;
}

/* Scrollbar Customization */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-thumb { 
    background: #000851; 
    border-radius: 10px; 
}
::-webkit-scrollbar-track { 
    background: rgba(28, 181, 224, 0.1); 
}