/* ================================
   HEADER MINI CART DROPDOWN
   ================================ */

/* Основний блок випадаючого кошика */
.ct-header-cart .ct-cart-content,
.ct-cart-content,
.ct-cart-content[data-placement],
.ct-cart-content .ct-cart-content-inner {
    background: #101820 !important;
    color: #ffffff !important;

    border-radius: 22px !important;
    border: 1px solid rgba(255,255,255,0.08) !important;

    box-shadow: 0 18px 50px rgba(0,0,0,0.35) !important;

    overflow: hidden !important;
}

/* Товари */
.ct-cart-content .woocommerce-mini-cart,
.ct-cart-content .woocommerce-mini-cart li,
.ct-cart-content .woocommerce-mini-cart-item,
.ct-cart-content .cart_list li {
    background: transparent !important;
    color: #ffffff !important;
}

/* Назви товарів */
.ct-cart-content .woocommerce-mini-cart-item a,
.ct-cart-content .cart_list li a,
.ct-cart-content .product-title,
.ct-cart-content .product-title a,
.ct-cart-content .ct-cart-item-title,
.ct-cart-content .ct-cart-item-title a {
    color: #ffffff !important;
    font-weight: 800 !important;
    line-height: 1.35 !important;
    text-decoration: none !important;
}

/* Hover по назві */
.ct-cart-content .woocommerce-mini-cart-item a:hover,
.ct-cart-content .cart_list li a:hover,
.ct-cart-content .product-title a:hover,
.ct-cart-content .ct-cart-item-title a:hover {
    color: var(--primary) !important;
}

/* Кількість і ціна */
.ct-cart-content .quantity,
.ct-cart-content .quantity *,
.ct-cart-content .woocommerce-Price-amount,
.ct-cart-content .woocommerce-Price-amount *,
.ct-cart-content .amount,
.ct-cart-content .amount * {
    color: #ffffff !important;
    font-weight: 800 !important;
}

/* Ціну можна зробити трохи акцентною */
.ct-cart-content .woocommerce-mini-cart-item .quantity .amount,
.ct-cart-content .woocommerce-mini-cart-item .woocommerce-Price-amount {
    color: #ffffff !important;
}

/* Сума внизу */
.ct-cart-content .woocommerce-mini-cart__total,
.ct-cart-content .woocommerce-mini-cart__total *,
.ct-cart-content .total,
.ct-cart-content .total * {
    color: #ffffff !important;
}

/* Лінії між товарами */
.ct-cart-content .woocommerce-mini-cart-item,
.ct-cart-content .cart_list li {
    border-bottom: 1px dashed rgba(255,255,255,0.12) !important;
}

/* Кнопка видалення */
.ct-cart-content a.remove,
.ct-cart-content .remove {
    color: rgba(255,255,255,0.55) !important;
}

.ct-cart-content a.remove:hover,
.ct-cart-content .remove:hover {
    color: var(--primary) !important;
}

/* Кнопки внизу */
.ct-cart-content .woocommerce-mini-cart__buttons,
.ct-cart-content .buttons {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;

    background: rgba(16,24,32,0.96) !important;
    padding: 16px !important;
}

.ct-cart-content .woocommerce-mini-cart__buttons a,
.ct-cart-content .buttons a,
.ct-cart-content .button,
.ct-cart-content .checkout {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
    color: #ffffff !important;

    border-radius: 16px !important;
    border: none !important;

    min-height: 48px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    text-align: center !important;
    font-weight: 900 !important;
    font-size: 13px !important;
    line-height: 1.2 !important;

    text-decoration: none !important;
}

.ct-cart-content .woocommerce-mini-cart__buttons a:hover,
.ct-cart-content .buttons a:hover,
.ct-cart-content .button:hover,
.ct-cart-content .checkout:hover {
    background: var(--primary-hover) !important;
    color: #ffffff !important;
}

/* Зображення товарів */
.ct-cart-content img,
.ct-cart-content .woocommerce-mini-cart-item img {
    background: #ffffff !important;
    border-radius: 10px !important;
    padding: 3px !important;
}

/* Якщо є текст "Разом" */
.ct-cart-content .woocommerce-mini-cart__total strong,
.ct-cart-content .total strong {
    color: rgba(255,255,255,0.65) !important;
}