.btn-minus,
.btn-plus {
    background-color: #F9FAFB;
    color: #1F2937;
    border: 1px solid #D1D5DB;
    height: 48px;
    width: 48px;
    border-radius: 0.375rem;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-minus:hover {
    background-color: #E5E7EB;
}

.btn-plus {
    background-color: #FC5647;
    color: #FFFFFF;
    border: none;
}

.btn-plus:hover {
    background-color: #E24436;
}

.btn-minus:focus,
.btn-plus:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(252, 86, 71, 0.3);
}

input[type="number"] {
    height: 48px;
    padding: 0.75rem;
    line-height: 1.5;
    border: 1px solid #D1D5DB;
    border-radius: 0.375rem;
    box-sizing: border-box;
    font-size: 1rem;
}

input[type="number"]:focus {
    outline: none;
    border-color: #FC5647;
    box-shadow: 0 0 0 3px rgba(252, 86, 71, 0.3);
}

input[type="number"], select {
    padding: 0.75rem;
    height: 48px;
    line-height: 1.5;
    border: 1px solid #D1D5DB;
    border-radius: 0.375rem;
    box-sizing: border-box;
    font-size: 1rem;
}

input[type="number"]:focus, select:focus {
    outline: none;
    border-color: #FC5647;
    box-shadow: 0 0 0 3px rgba(252, 86, 71, 0.3);
}

input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #FC5647 0%, #FC5647 var(--value), #FFEFE6 var(--value), #FFEFE6 100%);
    border-radius: 4px;
    outline: none;
    margin: 0;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #FC5647;
    cursor: pointer;
    border: 2px solid #fff;
    margin-top: -8px;
}

input[type="range"]::-moz-range-thumb,
input[type="range"]::-ms-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #FC5647;
    cursor: pointer;
    border: 2px solid #fff;
}

input[type="range"]::-webkit-slider-runnable-track {
    width: 100%;
    height: 4px;
    background: transparent;
    border-radius: 4px;
}

@keyframes shimmer {
    0% {
    background-position: -500px 0;
    }
    100% {
    background-position: 500px 0;
    }
}
.animate-shimmer {
    background: linear-gradient(to right, rgba(255, 255, 255, 0.8) 0%, rgba(252, 86, 71, 1) 20%, rgba(252, 86, 71, 1) 60%, rgba(255, 255, 255, 0.8) 100%);
    background-size: 1000px 100%;
    animation: shimmer 10s linear infinite;
    animation-delay: 0s;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    position: relative;
}
