/**
 * File: frontend-cart.css
 * Purpose: Styling for Cart triggers and future notifications.
 */

.daf-cart-trigger {
    position: relative;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}

.daf-cart-icon {
    width: 24px;
    height: 24px;
    background: url('../icons/cart.svg') no-repeat center;
    background-size: contain;
}

.daf-cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #2271b1;
    color: #fff;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 50%;
    font-weight: bold;
}