

/* Header */
.drawer-body-container .modifier-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.drawer-body-container .modifier-title {
    /* font-weight: 600; */
    color: #1f2937; /* gray-800 */
    font-size: 16px;
}

.drawer-body-container .modifier-required-tag {
    display: inline-block;
    font-size: 12px;
    line-height: 1;
    padding: 6px 8px;
    border-radius: 6px;
    background: #fff4ef; /* light peach */
    color: #d2663b; /* orange text */
    border: 1px solid #ffd6c7;
}

.drawer-body-container .modifier-help-text {
    color: #4b5563; /* gray-600 */
    font-size: 14px;
    margin-bottom: 10px;
}

.drawer-body-container .modifier-price-per-unit {
    font-weight: 500;
    margin: 8px 0 10px;
    color: rgb(79, 85, 94);
    font-size: 14px;
}

/* Counter control */
.drawer-body-container .counter-control {
    display: flex;
    /* align-items: center;
    justify-content: center; */
    width: 140px;
    border: 1px solid #d1d5db;
    background: #ffffff;
}
.counter-decrement, .counter-increment {
    width: 2rem;
    height: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    color: #6b7280; /* gray-500 */
    margin-bottom: 5px;
}
.counter-increment:hover, .counter-decrement:hover {
    background: none;
    color: #000; /* or inherit, just not red or transparent */
}
.counter-increment:focus, .counter-decrement:focus {
    background: none;
    color: #000; /* or inherit, just not red or transparent */
}
.counter-decrement:disabled{
    cursor: not-allowed;
    color: #d1d5db; /* gray-300 */
    background-color: transparent;
}

.drawer-body-container .counter-decrement[disabled] {
    color: #d1d5db; /* gray-300 */
    cursor: not-allowed;
}

.drawer-body-container .counter-increment {
    color: #000000; /* green-700 */
}

.drawer-body-container .counter-value {
    flex: 1;
    appearance: textfield;
    -moz-appearance: textfield;
    border: none;
    background: transparent;
    text-align: center;
    font-weight: 700;
    font-size: 18px;
    color: #111827;
    padding: 0;
}

.drawer-body-container .counter-value:focus {
    outline: none;
}

/* Divider consistency */
.modifier-divider {
    height: 1px;
    background: #e5e7eb; /* gray-200 */
    margin: 28px 0px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .drawer-body-container .modifier-title {
        font-size: 15px;
    }
    
    .drawer-body-container .modifier-help-text {
        font-size: 13px;
    }
    
    .drawer-body-container .modifier-price-per-unit {
        font-size: 13px;
    }
    
    .drawer-body-container .counter-control {
        width: 130px;
    }
    
    .counter-decrement, .counter-increment {
        width: 2.25rem;
        height: 2.25rem;
        font-size: 2.25rem;
    }
}

@media (max-width: 480px) {
    .drawer-body-container .modifier-title {
        font-size: 14px;
    }
    
    .drawer-body-container .modifier-help-text {
        font-size: 12px;
    }
    
    .drawer-body-container .modifier-price-per-unit {
        font-size: 12px;
    }
    
    .drawer-body-container .counter-control {
        width: 120px;
    }
    
    .counter-decrement, .counter-increment {
        width: 2rem;
        height: 2rem;
        font-size: 2rem;
    }
    
    .drawer-body-container .counter-value {
        font-size: 16px;
    }
}


