.contador {
    background: #e4e4e4;
    padding-top: 10px;

}

.contador-header {
    display: flex;
    align-items: center;
    padding: 0 10px;
    gap: 7%;
}

.contador-numero {
    font-size: 2rem;
    font-weight: bold;
    color: #888;
    line-height: 1;
}

.contador-texto {
    font-size: var(--bellota-font-size);
    color: var(--bellota-color-primary);
    font-weight: bold;
    text-transform: uppercase;
}

.contador-img {
    width: 100%;
    height: 140px;
    overflow: hidden;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contador-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

.contador-boton {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #c1272d;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    font-size: 1.1em;
    padding: 1px 14px;
    margin-top: 0;
    min-height: 28px;
    line-height: 1.2;
    gap: 8px; /* space between icon and text */
    transition: background 0.2s;
}

.contador-boton:hover {
    background: #a11f24;
    color: #fff;
}

.contador-boton-icon {
    display: flex;
}

.contador-boton-icon svg {
    height: 2.2em;
    width: 2.2em;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    margin-left: 6px;
}

.contador-boton-texto {
    display: flex;
    align-items: center;
    font-size: 1em;
    font-weight: bold;
    text-transform: uppercase;
}

.contador-rayita {
    width: 40px;
    height: 2px;
    background: #c1272d;
    border-radius: 2px;
    margin-top: 2px;
}