/* Add Product CSS — Premium Overhaul */
.add-product-container {
    padding: var(--space-md);
    padding-bottom: 40px;
}

.media-uploader {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.media-box {
    flex: 1;
    height: 120px;
    border-radius: var(--radius-lg);
    background: var(--color-bg-elevated);
    border: 1px dashed var(--color-border-hover);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    font-size: var(--fs-xs);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--t-base);
    box-shadow: var(--shadow-sm);
}

.media-box:active {
    transform: scale(0.96);
}

.media-box:hover {
    border-color: var(--color-accent);
    color: var(--color-text);
    background: var(--color-accent-soft);
}

.media-box svg {
    width: 28px;
    height: 28px;
    margin-bottom: 8px;
    stroke: var(--color-accent);
}

.settings-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--space-md);
    transition: box-shadow var(--t-base);
}

.settings-card__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.settings-card__title {
    font-size: var(--fs-md);
    font-weight: 600;
    margin-bottom: 2px;
}

.settings-card__desc {
    font-size: 12px;
    color: var(--color-text-muted);
}

/* Slider */
.slider-wrapper {
    background: var(--color-bg-elevated);
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border-hover);
}

.slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-md);
    font-size: 13px;
    font-weight: 500;
}

.range-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background: var(--color-border);
    border-radius: 5px;
    outline: none;
}

.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: var(--color-accent);
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 0 10px var(--color-accent-glow);
    border: 3px solid var(--color-bg-card);
}

/* Services */
.services-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.extra-service-item {
    background: var(--color-bg-elevated);
    border-radius: var(--radius-lg);
    padding: 10px;
    border: 1px solid var(--color-border-hover);
}

.input-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.input-with-currency {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-currency .currency {
    position: absolute;
    left: 12px;
    color: var(--color-accent);
    font-weight: 600;
}

.input-with-currency .input {
    padding-left: 24px !important;
}

.input--sm {
    min-height: 40px !important;
    font-size: 14px !important;
}

.animate-in {
    animation: slideUpFade 0.3s ease forwards;
}

@keyframes slideUpFade {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.badge {
    padding: 4px 8px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.badge--primary {
    background: var(--color-accent);
    color: white;
}
