.aromaholik-floating-cart-wrap {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.aromaholik-floating-cart-button {
    position: relative;
    width: 60px;
    height: 60px;
    /* ZMIANA: Gradient niebieski zamiast żółtego tła */
    background-image: linear-gradient(170deg, #39D1ED 0%, #0040E5 100%);
    background-color: #0040E5;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    /* ZMIANA: Niebieski cień */
    box-shadow: 0 4px 12px rgba(0, 64, 229, 0.3);
    transition: all 0.3s ease;
}

.aromaholik-floating-cart-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 64, 229, 0.4);
}

.aromaholik-floating-cart-button .cart-icon {
    color: white;
}

.aromaholik-floating-cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4444;
    color: white;
    font-size: 12px;
    font-weight: bold;
    min-width: 22px;
    height: 22px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
    border: 2px solid white;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .aromaholik-floating-cart-wrap {
        bottom: 15px;
        right: 15px;
    }

    .aromaholik-floating-cart-button {
        width: 50px;
        height: 50px;
    }

    svg.cart-icon { transform: scale(1.8); transform-origin: center; }
}

/* ============================================
   MINI CART - OVERLAY & SIDEBAR (DARK)
   ============================================ */

/* Overlay (ciemne tło) */
.mini-cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.02);
    z-index: 999998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: none;
}

.mini-cart-overlay.active {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

/* Sidebar (wysuwany panel - czarny) */
.mini-cart-sidebar {
    position: fixed !important;
    top: 0;
    right: -488px;
    width: 488px;
    max-width: 100%;
    height: 100%;
    background: #202328;
    z-index: 999999;
    display: flex;
    flex-direction: column;
    transition: right 0.3s ease;
    box-shadow: -2px 0 20px rgba(0, 0, 0, 0.5);
}

.mini-cart-sidebar.active {
    right: 0 !important;
}

body.mini-cart-open {
    overflow: hidden !important;
}

/* ============================================
   MINI CART - HEADER (DARK)
   ============================================ */

.mini-cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: #202328;
    color: #fff;
}

.mini-cart-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}

.aromaholik-login-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mini-cart-button {
    display: block;
    width: 100%;
    padding: 12px 16px;
    text-align: center;
    background-color: transparent;
    /* ZMIANA: Gradient niebieski */
    background-image: linear-gradient(170deg, #39D1ED 0%, #0040E5 100%);
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border-radius: 20px;
}

.mini-cart-close {
    background: none;
    border: none;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    color: #EFEFEF;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s;
}

.mini-cart-close:hover {
    /* ZMIANA: Jasny niebieski hover */
    color: #39D1ED;
}

/* ============================================
   MINI CART - BODY (DARK)
   ============================================ */

.mini-cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 0;
    background: #202328;
    display: flex;
    flex-direction: column;
}

/* Scrollbar dark */
.mini-cart-body::-webkit-scrollbar {
    width: 8px;
}

.mini-cart-body::-webkit-scrollbar-track {
    background: #1a1a1a;
}

.mini-cart-body::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

.mini-cart-body::-webkit-scrollbar-thumb:hover {
    background: #444;
}

/* Loading spinner */
.mini-cart-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.mini-cart-loading .spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #222;
    /* ZMIANA: Niebieski spinner */
    border-top: 3px solid #39D1ED;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Empty cart */
.mini-cart-empty {
    text-align: center;
    padding: 60px 20px;
}

.mini-cart-empty svg {
    color: #444;
    margin-bottom: 20px;
}

.mini-cart-empty p {
    color: #999;
    margin: 0 0 20px;
    font-size: 15px;
}

.mini-cart-empty .button {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
    /* ZMIANA: Gradient niebieski */
    background-image: linear-gradient(170deg, #39D1ED 0%, #0040E5 100%) !important;
    background-color: #0040E5 !important;
    color: #ffffff !important;
    border: 1px solid #0040E5 !important;
}

.mini-cart-empty .button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 64, 229, 0.3) !important;
}

/* ============================================
   MINI CART - FREE SHIPPING BAR (DARK)
   ============================================ */

.mini-cart-free-shipping {
    flex-shrink: 0;
    margin: 0 20px;
    padding: 6px 8px 7px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(26, 26, 26, 0.9);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
    margin-top: 7px;
}

.free-shipping-message {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 13px;
    color: #f1f1f1;
}

.free-shipping-message svg {
    flex-shrink: 0;
    /* ZMIANA: Ikona na niebieski */
    color: #0040E5;
}

.free-shipping-message .message-title {
    display: block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1;
}

.free-shipping-message .message-subtitle {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1;
}

.free-shipping-message.success svg {
    /* ZMIANA: Sukces na jasny niebieski */
    color: #39D1ED;
}

.free-shipping-message.success .message-title {
    color: #e0f7fa;
    padding-top: 3px;
}

.free-shipping-message.success .message-subtitle {
    color: rgba(224, 247, 250, 0.8);
}

.free-shipping-progress {
    margin-top: 5px;
    padding-top: 2px;
}

.progress-bar {
    position: relative;
    width: 100%;
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.progress-bar::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0.4;
    pointer-events: none;
}

.progress-fill {
    position: relative;
    height: 100%;
    border-radius: inherit;
    /* ZMIANA: Pasek postępu - gradient niebieski */
    background: linear-gradient(90deg, #39D1ED 0%, #0040E5 100%);
    box-shadow: 0 4px 12px rgba(0, 64, 229, 0.25);
    transition: width 0.5s ease;
}

.progress-details {
    margin-top: 8px;
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.5);
}

.progress-details span {
    display: inline-flex;
    gap: 6px;
    align-items: center;
}

.progress-details .progress-current {
    color: rgba(255, 255, 255, 0.8);
}

.progress-details .progress-threshold {
    /* ZMIANA: Kwota docelowa na jasny niebieski */
    color: #39D1ED;
}

/* ============================================
   MINI CART - ITEMS (DARK)
   ============================================ */

.mini-cart-items {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
}

.mini-cart-item {
    display: flex;
    gap: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    transition: opacity 0.3s ease;
}

.mini-cart-item:last-child {
    border-bottom: none;
}

.mini-cart-item-image {
    flex: 0 0 80px;
}

.mini-cart-item-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.mini-cart-item-details {
    flex: 1;
    min-width: 0;
    padding-right: 25px;
}

.mini-cart-item-name {
    margin: 0 0 8px;
    font-size: 14px;
    font-weight: 400 !important;
    line-height: 1.15 !important;
}

.mini-cart-item-name a {
    color: #fff;
    text-decoration: none;
}

.mini-cart-item-name a:hover {
    /* ZMIANA: Hover linku produktu */
    color: #39D1ED;
}

.mini-cart-item-quantity {
    font-size: 13px;
    color: #999;
    margin-bottom: 4px;
}

.mini-cart-item-total {
    font-size: 14px;
    font-weight: 600;
    /* ZMIANA: Cena produktu */
    color: #39D1ED;
}

.mini-cart-item-remove {
    position: absolute;
    top: 0;
    right: 0;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    transition: color 0.3s;
}

.mini-cart-item-remove:hover {
    color: #e74c3c;
}

.mini-cart-item.removing {
    opacity: 0.5;
    pointer-events: none;
}

/* ============================================
   MINI CART - SUGGESTED PRODUCTS (DARK)
   ============================================ */

.mini-cart-suggested {
    flex-shrink: 0;
    padding: 10px;
    color: #fff;
}

/* Scrollbar tylko dla items - NIEBIESKI */
.mini-cart-items::-webkit-scrollbar {
    width: 8px;
}

.mini-cart-items::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.mini-cart-items::-webkit-scrollbar-thumb {
    /* ZMIANA: Scrollbar gradient */
    background: linear-gradient(180deg, #39D1ED 0%, #0040E5 100%);
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 8px rgba(0, 64, 229, 0.3);
}

.mini-cart-items::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #6ae0f5 0%, #39D1ED 100%);
    box-shadow: 0 2px 12px rgba(0, 64, 229, 0.5);
}


.mini-cart-suggested h4 {
    margin: 0 0 15px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.suggested-products {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.suggested-product {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 12px;
    background: #1a1a1a;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.mini-cart-body.first-load .suggested-product {
    animation: fadeInUp 0.3s ease backwards;
}

.mini-cart-body.first-load .suggested-product:nth-child(1) { animation-delay: 0.1s; }
.mini-cart-body.first-load .suggested-product:nth-child(2) { animation-delay: 0.2s; }
.mini-cart-body.first-load .suggested-product:nth-child(3) { animation-delay: 0.3s; }
.mini-cart-body.first-load .suggested-product:nth-child(4) { animation-delay: 0.4s; }

.suggested-product:hover {
    background: #1a1a1a;
    /* ZMIANA: Obramowanie hover */
    border-color: rgba(57, 209, 237, 0.3);
}

.suggested-product-image {
    flex: 0 0 60px;
}

.suggested-product-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.suggested-product-details {
    flex: 1;
    min-width: 0;
}

.suggested-product-name {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    margin-bottom: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.suggested-product-name:hover {
    /* ZMIANA: Hover nazwy */
    color: #39D1ED;
}

.suggested-product-price {
    font-size: 14px;
    font-weight: 600;
    /* ZMIANA: Cena sugerowanego */
    color: #39D1ED;
}

.suggested-product-add {
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    /* ZMIANA: Przycisk dodania - gradient */
    background-image: linear-gradient(170deg, #39D1ED 0%, #0040E5 100%);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mini-cart-empty-button {
    display: block;
    width: 100%;
    padding: 12px 16px;
    background-color: transparent;
    /* ZMIANA: Przycisk pustego koszyka */
    background-image: linear-gradient(170deg, #39D1ED 0%, #0040E5 100%);
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border-radius: 20px;
}

.suggested-product-add:hover {
    background-color: #0040E5;
    transform: scale(1.1);
}

.suggested-product-add svg {
    color: #fefefe;
}

.suggested-product-add.loading {
    pointer-events: none;
    opacity: 0.7;
}

.suggested-product.added-to-cart {
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.mini-cart-empty + .mini-cart-suggested {
    border-top: none;
    margin-top: 20px;
}

/* ============================================
   MINI CART - FOOTER (DARK)
   ============================================ */

.mini-cart-footer {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: #202328;
}

.mini-cart-subtotal {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 16px;
    color: #fff;
}

.mini-cart-subtotal strong {
    /* ZMIANA: Kwota sumy */
    color: #39D1ED;
}

.mini-cart-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mini-cart-buttons .button {
    width: 100%;
    text-align: center;
    padding: 12px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.mini-cart-buttons .button-cart {
    background: transparent;
    /* ZMIANA: Przycisk Zobacz koszyk */
    color: #39D1ED;
    border: 2px solid #39D1ED;
}

.mini-cart-buttons .button-cart:hover {
    background: #39D1ED;
    color: #000;
}

.mini-cart-buttons .button-checkout {
    /* ZMIANA: Przycisk Zamówienie */
    background-image: linear-gradient(170deg, #39D1ED 0%, #0040E5 100%) !important;
    background-color: #0040E5 !important;
    color: #ffffff !important;
    border: 1px solid #0040E5;
    box-shadow: 0 0 20px rgba(0, 64, 229, 0.4);
}

.mini-cart-buttons .button-checkout:hover {
    background-color: #0033b5 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 64, 229, 0.6);
}

/* ============================================
   MINI CART - BADGE (licznik)
   ============================================ */

.cart-count-badge {
    /* ZMIANA: Badge licznika */
    background: #39D1ED;
    color: #000;
    font-size: 10px;
    font-weight: 600;
    min-width: 18px;
    height: 18px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    margin-left: 5px;
    padding: 0 5px;
    white-space: nowrap;
}

.cart-count-badge.pulse {
    animation: badgePulse 0.3s ease;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.3);
    }
}

/* ============================================
   MINI CART - ANIMATIONS
   ============================================ */

.mini-spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   MINI CART - MOBILE RESPONSIVE
   ============================================ */


/* ============================================
   MOBILE FIXES
   ============================================ */
@media (max-width: 768px) {
    .wishlist-item {
        display: block;
    }
    /* Prevent body scroll when cart is open */
    body.aromaholik-mini-cart-open {
        overflow: hidden !important;
        position: fixed;
        width: 100%;
        height: 100vh;
    }

    /* Mini cart full screen */
    .aromaholik-mini-cart-wrapper {
        width: 100vw !important;
        max-width: 100vw !important;
        height: 100vh !important;
        height: 100dvh !important;
    }


    .mini-cart-suggested {
        padding: 15px 20px;
    }

    .mini-cart-suggested .suggested-product {
        display: none;
    }

    .mini-cart-suggested .suggested-product:first-child {
        display: flex;
    }

    /* Items more compact */
    .mini-cart-items {
        gap: 12px;
        padding: 15px;
    }

    /* Compact cart item */
    .mini-cart-item {
        padding: 3px;
    }

    .mini-cart-item-image {
        width: 60px;
        height: 60px;
    }

    .mini-cart-item-details {
        gap: 4px;
    }

    .mini-cart-item-title {
        font-size: 13px;
    }

    .mini-cart-item-price {
        font-size: 14px;
    }

    /* Footer sticky */
    .mini-cart-footer {
        padding: 15px 20px;
    }
}

.mini-cart-item-quantity-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 1px 0;
}

.quantity-selector {
    display: inline-flex;
    align-items: stretch;
    background: #1a1a1a;
    border-radius: 4px;
    overflow: hidden;
}

.quantity-btn {
    background: transparent;
    border: none;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    /* ZMIANA: Kolor przycisków ilości */
    color: #39D1ED;
    cursor: pointer;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    padding: 8px 0;
}

.quantity-btn:last-child {
    border-right: none;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.quantity-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.quantity-btn svg {
    width: 12px;
    height: 12px;
}

.quantity-input {
    width: 45px !important;
    text-align: center!important;
    border: none!important;
    background: transparent!important;
    color: #fff!important;
    font-size: 14px!important;
    font-weight: 600!important;
    font-family: inherit!important;
    -moz-appearance: textfield!important;
    padding: 8px 4px!important;
}

.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.quantity-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.02);
}

.mini-cart-item-price {
    font-size: 13px;
    color: #EFEFEF;
    white-space: nowrap;
    margin-left: auto;
}

@media (max-width: 768px) {
    .quantity-selector {
        border-radius: 3px;
    }

    .quantity-btn {
        width: 28px;
        padding: 6px 0;
    }

    .quantity-input {
        width: 40px;
        font-size: 13px;
        padding: 6px 4px;
    }
}

.cart-price-badge {
    font-weight: 600;
    white-space: nowrap;
}

a.mini-cart-button:hover {
    color: #ffffff !important;
}

/* Styl przycisku "Dodaj do koszyka" na liście produktów */
.woocommerce a.button.add_to_cart_button,
.woocommerce a.button.product_type_simple,
.woocommerce .products .product .add_to_cart_button {
    /* Tło - Niebieski Gradient */
    background-image: linear-gradient(170deg, #39D1ED 0%, #0040E5 100%) !important;
    background-color: #0040E5 !important; /* Zabezpieczenie */
    color: #ffffff !important;

    /* Wygląd pudełka */
    border: none !important;
    border-radius: 6px !important; /* Pasuje do reszty stylu */
    padding: 10px 20px !important;

    /* Tekst */
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    text-transform: none !important; /* Opcjonalnie: uppercase jeśli wolisz drukowane */
    text-decoration: none !important;
    line-height: 1.4 !important;

    /* WYŁĄCZENIE ANIMACJI */
    transition: none !important;
    transform: none !important;
    box-shadow: none !important;
}

/* Stan po najechaniu (Hover) i kliknięciu (Active) - BEZ ZMIAN */
.woocommerce a.button.add_to_cart_button:hover,
.woocommerce a.button.add_to_cart_button:active,
.woocommerce a.button.add_to_cart_button:focus,
.woocommerce a.button.product_type_simple:hover {
    /* Utrzymujemy dokładnie to samo tło, żeby nie mrugało */
    background-image: linear-gradient(170deg, #39D1ED 0%, #0040E5 100%) !important;
    background-color: #0040E5 !important;
    color: #ffffff !important;

    /* Blokada ruchu */
    transform: none !important;
    box-shadow: none !important;
    opacity: 1 !important;
    border: none !important;
}

/* Styl po dodaniu do koszyka (gdy pojawia się "Zobacz koszyk" lub fajka) */
.woocommerce a.button.added {
    opacity: 1 !important;
}

/* Ikona ładowania (opcjonalnie, żeby była biała) */
.woocommerce a.button.loading::after {
    color: #ffffff !important;
}

.ast-on-card-button {
    display: none !important;
}

/* Styl głównego przycisku "Dodaj do koszyka" (Strona Produktu) */
button.single_add_to_cart_button.button.alt {
    /* Tło i Gradient */
    background-image: linear-gradient(170deg, #39D1ED 0%, #0040E5 100%) !important;
    background-color: #0040E5 !important;
    color: #ffffff !important;
    border: 1px solid #0040E5 !important;

    /* Kształt i Typografia */
    border-radius: 6px !important;
    padding: 15px 30px !important; /* Większy padding dla głównego przycisku */
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px;

    /* Cień i Animacja */
    box-shadow: 0 4px 15px rgba(0, 64, 229, 0.3) !important;
}

/* Disabled (Gdy np. nie wybrano wariantu) */
button.single_add_to_cart_button.button.alt.disabled,
button.single_add_to_cart_button.button.alt:disabled,
button.single_add_to_cart_button.button.alt[disabled] {
    background-image: none !important;
    background-color: #e5e7eb !important;
    border-color: #e5e7eb !important;
    color: #9ca3af !important;
    cursor: not-allowed !important;
    transform: none !important;
    box-shadow: none !important;
}