/* Botón success personalizado */

#cart-button {
    display: block !important;
    opacity: 1 !important;
}

.botones-fijos {
    position: absolute;
    bottom: 5px;
    right: 5px;
    z-index: 2;
}

.uk-button-success {
    background-color: #00d692;
    color: #fff;
    border: 2px solid #00d692;
    height: 32px; /* Igual altura que input */
    min-width: 36px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.uk-button-success:hover {
    background-color: #01a56f;
	border: 2px solid #01a56f;
    color: #FFF;
}

.uk-button-group>.btn:nth-child(n+2), .uk-button-group>.uk-button:nth-child(n+2), .uk-button-group>div:nth-child(n+2) .btn, .uk-button-group>div:nth-child(n+2) .uk-button {
    margin-left: 0px;
	
}

.uk-button-group button{padding: 0px 10px;}
.uk-button-group input{border: 0px; height: 32px !important}

/* Estilo para iconos dentro de botones */
.uk-button-success .uk-icon,
.uk-button-danger .uk-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
	margin-right: 0px !important;
	
}

/* Input de cantidad igual altura que botones */
.select-product-qty {
    height: 32px;
    padding: 0 8px;
    font-size: 14px;
}


/* Móviles */
@media (max-width: 640px) {
    .producto-nombre {
        font-size: 16px;
        font-weight: 600;
    }
    .producto-precio {
        font-size: 18px;
        font-weight: bold;
        color: #111;
    }
    .producto-desc {
        font-size: 13px;
        margin-bottom: 4px;
    }
    .uk-label {
        font-size: 11px;
        padding: 2px 6px;
    }
}

/* Tablets y superiores */
@media (min-width: 641px) {
    .producto-nombre {
        font-size: 18px;
        font-weight: 700;
    }
    .producto-precio {
        font-size: 18px;
        font-weight: bold;
        color: #000;
    }
    .producto-desc {
        font-size: 14px;
        margin-bottom: 4px;
    }
    .uk-label {
        font-size: 13px;
        padding: 4px 8px;
    }
}
