/* ========================================
   MODERN SHOP COMPLETE FIXED STYLES
   ======================================== */

/* ========== RESET & BASE ========== */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background: #f8fbff !important;
}

/* ========== FLOATING FILTER BUTTON ========== */
.modern-filter-toggle {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #0875bc 0%, #065a94 100%);
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 12px 0 0 12px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    z-index: 999;
    box-shadow: -4px 0 20px rgba(8, 117, 188, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modern-filter-toggle i {
    font-size: 20px;
}

.modern-filter-toggle:hover {
    padding-right: 20px;
    box-shadow: -8px 0 30px rgba(8, 117, 188, 0.6);
}

/* ========== FILTER SIDEBAR ========== */
.modern-filter-sidebar {
    position: fixed;
    top: 0;
    right: -450px;
    width: 420px;
    height: 100vh;
    background: #ffffff;
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.modern-filter-sidebar.active {
    right: 0;
}

.modern-filter-header {
    background: linear-gradient(135deg, #0875bc 0%, #065a94 100%);
    color: #fff;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 15px rgba(8, 117, 188, 0.2);
}

.modern-filter-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}

.modern-filter-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.modern-filter-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

/* ========== FILTER CONTENT ========== */
.modern-filter-content {
    flex: 1;
    overflow-y: auto;
    padding: 30px;
}

.modern-filter-content::-webkit-scrollbar {
    width: 8px;
}

.modern-filter-content::-webkit-scrollbar-track {
    background: #f0f4f8;
}

.modern-filter-content::-webkit-scrollbar-thumb {
    background: #0875bc;
    border-radius: 10px;
}

.modern-filter-section {
    margin-bottom: 35px;
}

.modern-filter-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0b2a4a;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e5e9f0;
}

.modern-filter-title i {
    color: #0875bc;
    font-size: 18px;
}

.modern-filter-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ========== CUSTOM CHECKBOX ========== */
.modern-filter-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 12px 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    background: #f8fbff;
}

.modern-filter-checkbox:hover {
    background: #e8f3ff;
    transform: translateX(5px);
}

.modern-filter-checkbox input[type="checkbox"] {
    display: none;
}

.modern-checkbox-mark {
    width: 22px;
    height: 22px;
    border: 2px solid #cbd5e1;
    border-radius: 6px;
    margin-right: 12px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.modern-filter-checkbox input:checked~.modern-checkbox-mark {
    background: linear-gradient(135deg, #0875bc 0%, #065a94 100%);
    border-color: #0875bc;
}

.modern-filter-checkbox input:checked~.modern-checkbox-mark::after {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 12px;
}

.modern-checkbox-label {
    font-size: 0.95rem;
    color: #334155;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    flex: 1;
}

.modern-count {
    color: #94a3b8;
    font-size: 0.85rem;
}

/* ========== CUSTOM SELECT ========== */
.modern-filter-select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e5e9f0;
    border-radius: 10px;
    font-size: 0.95rem;
    color: #334155;
    background: #f8fbff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.modern-filter-select:focus {
    outline: none;
    border-color: #0875bc;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(8, 117, 188, 0.1);
}

/* ========== FILTER FOOTER ========== */
.modern-filter-footer {
    padding: 25px 30px;
    border-top: 2px solid #e5e9f0;
    display: flex;
    gap: 15px;
    background: #f8fbff;
}

.modern-btn-reset,
.modern-btn-apply {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modern-btn-reset {
    background: #fff;
    color: #64748b;
    border: 2px solid #e5e9f0;
}

.modern-btn-reset:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
    transform: translateY(-2px);
}

.modern-btn-apply {
    background: linear-gradient(135deg, #f6891f 0%, #ff9f43 100%);
    color: #fff;
    box-shadow: 0 8px 20px rgba(246, 137, 31, 0.3);
}

.modern-btn-apply:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(246, 137, 31, 0.4);
}

/* ========== FILTER OVERLAY ========== */
.modern-filter-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modern-filter-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ========== SHOP WRAPPER ========== */
.modern-shop-wrapper {
    background: linear-gradient(135deg, #f5f9ff 0%, #ffffff 100%) !important;
    position: relative;
    overflow: hidden;
}

.modern-shop-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(8, 117, 188, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.modern-shop-wrapper::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(246, 137, 31, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

/* ========== PRODUCTS GRID ========== */
.modern-products-grid {
    gap: 0 !important;
    margin-top: 40px !important;
    position: relative;
    z-index: 2;
    list-style: none !important;
    padding: 0 !important;
}

.modern-products-grid>.col-lg-4 {
    padding: 0 15px !important;
    margin-bottom: 40px !important;
}

/* ========== PRODUCT CARD - COMPLETE REDESIGN ========== */
.modern-product-card {
    background: #ffffff !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    box-shadow: 0 10px 40px rgba(8, 29, 50, 0.08) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    border: 2px solid rgba(8, 117, 188, 0.1) !important;
    position: relative !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.modern-product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0875bc 0%, #f6891f 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.modern-product-card:hover::before {
    opacity: 1 !important;
}

.modern-product-card:hover {
    transform: translateY(-12px) !important;
    box-shadow: 0 25px 60px rgba(8, 29, 50, 0.15) !important;
    border-color: rgba(8, 117, 188, 0.3) !important;
}

/* ========== PRODUCT IMAGE - FIXED ========== */
.modern-product-card>.woocommerce-loop-product__link,
.modern-product-card>a.woocommerce-LoopProduct-link {
    position: relative !important;
    overflow: hidden !important;
    display: block !important;
    border-radius: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.modern-product-card .attachment-woocommerce_thumbnail,
.modern-product-card picture .attachment-woocommerce_thumbnail {
    width: 100% !important;
    height: 280px !important;
    object-fit: cover !important;
    display: block !important;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
    background: linear-gradient(135deg, #f6f8fb 0%, #e9ecef 100%) !important;
    border-radius: 0 !important;
    margin: 0 !important;
}

.modern-product-card:hover img,
.modern-product-card:hover picture img,
.modern-product-card:hover .woocommerce-loop-product__link img {
    transform: scale(1.08) !important;
}

/* ========== PRODUCT TITLE - FIXED ========== */
.modern-product-card .woocommerce-loop-product__title,
.modern-product-card h2.woocommerce-loop-product__title {
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    color: #0b2a4a !important;
    margin: 20px 20px 8px !important;
    line-height: 1.4 !important;
    min-height: 50px !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    transition: color 0.3s ease !important;
    text-overflow: ellipsis !important;
}

.modern-product-card:hover .woocommerce-loop-product__title {
    color: #0875bc !important;
}

/* ========== PRICE - FIXED ========== */
.modern-product-card .price,
.modern-product-card span.price {
    color: #06609c !important;
    font-weight: 800 !important;
    font-size: 2rem !important;
    display: block !important;
    margin: 0 20px 15px !important;
}

.modern-product-card .price del {
    color: #9ca3af !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    margin-right: 8px !important;
}

.modern-product-card .price ins {
    text-decoration: none !important;
}

.modern-product-card .price .price-unit {
    font-size: 0.85rem !important;
    color: #64748b !important;
    font-weight: 500 !important;
}

/* ========== PRODUCT META - FIXED ========== */
.modern-product-meta {
    padding: 0 20px 10px !important;
}

.modern-colors-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    background: linear-gradient(135deg, #eef6ff 0%, #dbeafe 100%) !important;
    color: #0b63b6 !important;
    padding: 8px 14px !important;
    border-radius: 20px !important;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    border: 1px solid rgba(11, 99, 182, 0.2) !important;
}

.modern-colors-badge i {
    font-size: 12px !important;
}

/* ========== PRODUCT ACTIONS - FIXED ========== */
.modern-product-actions {
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-start;
    gap: 15px !important;
    padding: 15px 20px 20px !important;
    border-top: 1px solid rgba(8, 117, 188, .1) !important;
    margin-top: auto !important;
    flex-wrap: wrap !important;
    flex-direction: column;
}

/* ========== COLOR SWATCHES - FIXED ========== */
.modern-color-swatches {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    flex-wrap: wrap !important;
    flex: 1 !important;
}

.modern-color-swatch,
.modern-color-swatches img {
    width: 42px !important;
    height: 42px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    cursor: pointer !important;
    border: 3px solid rgba(15, 23, 42, 0.08) !important;
    box-shadow: 0 4px 12px rgba(9, 20, 37, 0.08) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    margin: 0 !important;
}

.modern-color-swatch:hover,
.modern-color-swatches img:hover {
    transform: translateY(-4px) scale(1.05) !important;
    box-shadow: 0 12px 24px rgba(9, 20, 37, 0.15) !important;
    border-color: rgba(246, 137, 31, 0.5) !important;
}

.modern-color-swatch.active,
.modern-color-swatches img.active {
    outline: 3px solid rgba(246, 137, 31, 0.3) !important;
    outline-offset: 2px !important;
    border-color: #f6891f !important;
    transform: scale(1.1) !important;
}

/* ========== ADD TO CART BUTTON - COMPLETELY FIXED ========== */
.modern-add-cart-btn,
a.modern-add-cart-btn,
.modern-product-actions .add_to_cart_button {
    background: linear-gradient(135deg, #ff8c00 0%, #ffb347 100%) !important;
    border-radius: 50px !important;
    padding: 10px 20px !important;
    min-height: 48px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    font-weight: 700 !important;
    color: #fff !important;
    border: none !important;
    font-size: 0.9rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    box-shadow: 0 8px 20px rgba(255, 140, 0, 0.3) !important;
    position: relative !important;
    overflow: hidden !important;
    text-decoration: none !important;
    white-space: nowrap !important;
	flex-direction:row !important;
}

.modern-add-cart-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.modern-add-cart-btn:hover::before {
    width: 300px;
    height: 300px;
}

.modern-add-cart-btn i,
.modern-add-cart-btn .modern-btn-text {
    position: relative;
    z-index: 1;
}

.modern-add-cart-btn i {
    font-size: 18px !important;
}

.modern-add-cart-btn:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 18px 36px rgba(255, 140, 0, 0.4) !important;
    background: linear-gradient(135deg, #ff7700 0%, #ff9f43 100%) !important;
    color: #fff !important;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1200px) {
    .modern-products-grid>.col-lg-4 {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
}

@media (max-width: 768px) {
    .modern-filter-sidebar {
        width: 85%;
        right: -85%;
    }

    .modern-filter-toggle {
        font-size: 12px;
        padding: 12px 10px;
    }

    .modern-products-grid>.col-lg-4 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        padding: 0 10px !important;
    }

    .modern-product-card .attachment-woocommerce_thumbnail,
    .modern-product-card picture .attachment-woocommerce_thumbnail {
        height: 240px !important;
    }

    .modern-product-actions {
        flex-direction: column !important;
        gap: 12px !important;
    }

    .modern-color-swatches {
        justify-content: center !important;
        width: 100% !important;
    }

    .modern-add-cart-btn {
        width: 100% !important;
    }

    .modern-banner-inner {
        padding: 25px !important;
    }
}

@media (max-width: 480px) {
    .modern-filter-sidebar {
        width: 100%;
        right: -100%;
    }

    .modern-product-card {
        border-radius: 15px !important;
    }

    .modern-product-card .attachment-woocommerce_thumbnail,
    .modern-product-card picture .attachment-woocommerce_thumbnail {
        height: 200px !important;
    }

    .modern-color-swatch,
    .modern-color-swatches img {
        width: 36px !important;
        height: 36px !important;
    }
}


/* ========================================
   Underground Rollers Banner - Compact Modern Style
   ======================================== */

/* Main Banner Container */
.modern-underground-banner {
    padding: 50px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ebf0 100%);
    position: relative;
    overflow: hidden;
}

.modern-underground-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(0, 123, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0, 200, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Banner Inner Layout */
.modern-banner-inner {
    display: flex;
    align-items: center;
    gap: 35px;
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.06),
        0 5px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.modern-banner-inner:hover {
    transform: translateY(-3px);
    box-shadow:
        0 15px 50px rgba(0, 0, 0, 0.09),
        0 8px 25px rgba(0, 0, 0, 0.05);
}

/* Image Section */
.col-md-6 {
    flex: 1;
}

.modern-banner-image-link {
    display: block;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.modern-banner-image-link:hover {
    transform: scale(1.03);
}

.modern-banner-image-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(0, 123, 255, 0.08) 0%,
            rgba(0, 200, 255, 0.08) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modern-banner-image-link:hover::after {
    opacity: 1;
}

.modern-banner-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

/* Content Section */
.text-center.text-md-start {
    padding: 10px 0;
}

.modern-banner-title {
    font-size: 38px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.2;
    letter-spacing: -0.3px;
    position: relative;
    display: inline-block;
}

.modern-banner-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #007bff 0%, #00c8ff 100%);
    border-radius: 2px;
}

.modern-banner-description {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 25px;
    font-weight: 400;
    max-width: 480px;
}

/* CTA Button */
.modern-banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.25);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}

.modern-banner-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.modern-banner-btn:hover::before {
    left: 100%;
}

.modern-banner-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 123, 255, 0.35);
    color: #ffffff;
}

.modern-banner-btn:active {
    transform: translateY(0);
}

.modern-banner-btn i {
    transition: transform 0.3s ease;
    font-size: 13px;
}

.modern-banner-btn:hover i {
    transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .modern-underground-banner {
        padding: 40px 0;
    }

    .modern-banner-inner {
        flex-direction: column;
        padding: 25px 20px;
        gap: 25px;
    }

    .modern-banner-title {
        font-size: 32px;
        text-align: center;
    }

    .modern-banner-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .modern-banner-description {
        font-size: 15px;
        text-align: center;
        margin: 0 auto 20px;
    }

    .text-center.text-md-start {
        text-align: center !important;
    }

    .modern-banner-btn {
        padding: 13px 28px;
        font-size: 14px;
    }

    .col-md-6.mb-4.mb-md-0 {
        margin-bottom: 0 !important;
    }
}

@media (max-width: 480px) {
    .modern-banner-title {
        font-size: 26px;
    }

    .modern-banner-description {
        font-size: 14px;
    }

    .modern-banner-btn {
        padding: 12px 24px;
        font-size: 13px;
    }

    .modern-banner-inner {
        padding: 20px 15px;
        border-radius: 12px;
    }
}

/* Animation on Scroll */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.modern-banner-inner.animate {
    animation: fadeInUp 0.6s ease-out;
}

/* Shimmer Effect */
.modern-banner-image-link::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.modern-banner-image-link:hover::before {
    opacity: 1;
}

/* Utility Classes */
.my-5 {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

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

@media (min-width: 768px) {
    .mb-md-0 {
        margin-bottom: 0 !important;
    }
}

.woocommerce-result-count,
.woocommerce-ordering {
    display: none !important;
}

@media (max-width: 992px) {

    .flex-control-nav li,
    .flex-control-nav li img {
        width: 50px !important;
        height: 50px !important;
        border-radius: 50% !important;
    }

    .flex-control-nav li .flex-active {
        width: 50px !important;
        height: 50px !important;
        border-radius: 50% !important;
    }
}

img.modern-product-image {
    width: 100% !important;
    height: 280px !important;
    object-fit: cover !important;
    display: block !important;
    transition: all .5s cubic-bezier(.4, 0, .2, 1) !important;
    background: linear-gradient(135deg, #f6f8fb 0%, #e9ecef 100%) !important;
    border-radius: 0 !important;
    margin: 0 !important;
}