/* ── Mini Cart Trigger — icono de carrito con badge contador ─────────── */

.beps-mct-wrap {
    display: inline-flex;
    align-items: center;
}

.beps-mct-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    outline: none;
    box-shadow: none;
    cursor: pointer;
    padding: 6px;
    line-height: 1;
    -webkit-appearance: none;
    appearance: none;
    transition: opacity 0.2s ease;
    color: inherit;
    text-decoration: none;
    border-radius: 0;
}

.beps-mct-btn:hover,
.beps-mct-btn:focus,
.beps-mct-btn:active,
.beps-mct-btn:focus-visible {
    background: none !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    color: inherit !important;
    text-decoration: none !important;
    opacity: 0.75;
}

.beps-mct-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    line-height: 1;
    pointer-events: none;
}

.beps-mct-icon svg {
    display: block;
}

/* Badge de contador — esquina superior derecha del icono */
.beps-mct-count {
    position: absolute;
    top: -2px;
    right: -6px;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    box-sizing: border-box;
    border-radius: 50px;
    background: #141436;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    font-family: 'Raleway', sans-serif;
    line-height: 18px;
    text-align: center;
    pointer-events: none;
}

.beps-mct-count.is-empty {
    display: none;
}
