/* Притискаємо блок кошика до правого краю сайту */
#cart {
    float: right !important;
    position: relative !important;
    display: block !important;
    margin-left: auto !important;
    margin-right: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

/* Основна синя кнопка кошика */
#cart > .btn,
#cart > .btn.btn-inverse,
#cart > button {
    display: block !important;
    width: 100% !important;
    height: 42px !important;
    padding: 6px 15px !important;
    line-height: 28px !important;
    text-align: left !important;
    background-color: #23a1d1 !important; /* Фірмовий блакитний колір OpenCart */
    background-image: none !important;
    border: none !important;
    box-shadow: none !important;
    text-shadow: none !important;
    border-radius: 4px !important;
}

/* Ефект при наведенні миші на кошик */
#cart > .btn:hover,
#cart > button:hover {
    background-color: #1f8fa9 !important;
}

/* ТОТАЛЬНА НЕЙТРАЛІЗАЦІЯ БІЛОЇ ПЛАШКИ */
#cart .dropdown-toggle,
#cart-total,
#cart button span,
#cart .btn-block span,
#cart div,
#cart span,
#cart button * {
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    color: #ffffff !important; /* Текст стає білим */
    text-shadow: none !important;
}

/* Налаштування іконки кошика на лівому краї */
#cart .btn-block i, 
#cart .btn-block .fa,
#cart i.fa-shopping-cart,
#cart button i {
    display: inline-block !important;
    float: left !important;
    margin-right: 10px !important;
    line-height: 28px !important;
    font-size: 16px !important;
    color: #ffffff !important;
    background: transparent !important;
}

/* Вирівнювання тексту поруч із іконкою */
#cart-total {
    display: inline-block !important;
    line-height: 28px !important;
    vertical-align: middle !important;
}