.sabors-title {
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 500;
}
.sabors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.sabor {
    padding: 0.5rem 0;
}

.sabor-inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.sabor-nom {
	min-height: 3em;
    padding-bottom: 7px;
	text-align: center;
    font-family: 'Montserrat', sans;
    color: #89764B;
    font-size: 14px;
    font-weight: 600;
	line-height: 1.3em;
}

.controls {
    display: flex;
    align-items: center;
}

.controls button {
    width: 32px;
    height: 32px;
    font-size: 18px;
    padding: 5px !important;
    margin-left: 0 !important;
    background-color: #89764B !important;
    border: 0 !important;
    border-radius: 0 !important;
    cursor: pointer;
    transition: background-color 0.2s;
	color: #FFFFFF;
	font-weight: 700;
}

.controls button:hover:not(.disabled) {
    background-color: #ddd;
}

.controls button.remove {
    border-radius: 50% 0 0 50% !important;
}
.controls button.add {
    border-radius: 0 50% 50% 0 !important;
}

.controls .qty {
    padding: 0.19rem 0.75rem;
    min-width: 20px;
    border-top: 1px solid #89764B !important;
    border-bottom: 1px solid #89764B !important;
	background-color: #000000;
	color: #FFFFFF;
    text-align: center;
    font-weight: 600;
}

button.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.progress-wrap {
    margin: 1rem 0;
    text-align: center;
}

#sabors-progress {
    width: 100%;
    height: 16px;
    appearance: none;
    border-radius: 8px;
    overflow: hidden;
    background-color: #eee;
}

#sabors-progress::-webkit-progress-bar {
    background-color: #eee;
    border-radius: 8px;
}

#sabors-progress::-webkit-progress-value {
    background-color: #89764B;
    border-radius: 8px;
}

#sabors-progress::-moz-progress-bar {
    background-color: #89764B;
    border-radius: 8px;
}

.progress-label {
    margin-top: 4px;
	color: #FFFFFF;
    font-size: 0.9rem;
    font-weight: 500;
}