/* =========================
   Cards
   ========================= */
.card {
    border-radius: 16px !important;
    background-color: #ffffff !important;
    border: none !important;
    box-shadow: var(--shadow-sm) !important;
    overflow: hidden;
}

.card.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg) !important;
}

/* =========================
   Buttons
   ========================= */
.btn {
    border-radius: 12px !important;
    font-weight: 600;
}

.btn-primary {
    background: var(--gradient-primary) !important;
    border: none !important;
}

.btn-primary:hover {
    filter: brightness(1.08);
}

/* =========================
   Forms
   ========================= */
.form-control {
    border-radius: 12px !important;
    border: 2px solid #e9ecef !important;
    padding: 12px 16px !important;
}

.form-control:focus {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 0.2rem rgba(74, 144, 226, 0.25) !important;
}

/* =========================
   Wizard steps
   ========================= */
.wizard-step {
    display: none;
}

.wizard-step.active {
    display: block;
}

/* =========================
   Color picker
   ========================= */
.color-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
}

.color-circle.selected {
    border: 3px solid #000;
}

/* =========================
   Autocomplete lists
   ========================= */
#brandList,
#modelList {
    z-index: 9999;
    background: #ffffff;
    max-height: 200px;
    overflow-y: auto;
    display: none;
    position: absolute;
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

#brandList li,
#modelList li {
    cursor: pointer;
    padding: 8px 12px;
}

#brandList li:hover,
#modelList li:hover {
    background-color: #f1f1f1;
}
