/* Header cart counter styles */
.header__icon {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.cart-counter {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #A35A63;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    z-index: 1;
    min-width: 20px;
    padding: 0 4px;
    border-radius: 10px;
}

.cart-counter:empty {
    display: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cart-counter {
        top: -6px;
        right: -6px;
        width: 18px;
        height: 18px;
        font-size: 11px;
        min-width: 18px;
    }
}
