/* Trend Enerji - Teklif Sihirbazı stilleri */

.qw-steps {
    gap: 3rem;
}
.qw-step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    font-size: .85rem;
    color: #9B9B9B;
    font-weight: 500;
}
.qw-step-item span {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #F6F7F8;
    color: #9B9B9B;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    border: 2px solid #F6F7F8;
    transition: all .2s;
}
.qw-step-item.active span,
.qw-step-item.done span {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}
.qw-step-item.active,
.qw-step-item.done {
    color: var(--dark);
}

.qw-type-card {
    border: 2px solid #EEEEEE;
    border-radius: .75rem;
    padding: 2rem 1.25rem;
    text-align: center;
    cursor: pointer;
    transition: all .2s ease;
    background: #fff;
}
.qw-type-card:hover {
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(0,0,0,.08);
    transform: translateY(-3px);
}
.qw-type-card.selected {
    border-color: var(--primary);
    background: #F6F7F8;
    box-shadow: 0 0 30px rgba(0,0,0,.08);
}

.qw-device-list {
    border: 1px solid #EEEEEE;
    border-radius: .5rem;
    padding: .5rem 1rem;
}
.qw-device-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .75rem;
    padding: .6rem 0;
    border-bottom: 1px solid #F3F3F3;
}
.qw-device-row:last-child {
    border-bottom: none;
}
.qw-device-row .qw-device-label {
    flex: 1 1 220px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: .5rem;
}
.qw-device-row .qw-device-qty,
.qw-device-row .qw-device-hours {
    width: 90px;
}
.qw-device-row .qw-device-qty[disabled],
.qw-device-row .qw-device-hours[disabled] {
    background: #F6F7F8;
}

.qw-summary-box {
    background: #F6F7F8;
    border-radius: .5rem;
}

.qw-device-adder {
    border: 1px solid #EEEEEE;
    border-radius: .5rem;
    padding: 1rem;
    background: #fff;
}
.qw-added-table {
    margin-bottom: 0;
    font-size: .9rem;
}
.qw-added-table th {
    font-weight: 600;
    color: #9B9B9B;
    border-top: none;
}
.qw-empty-row td {
    text-align: center;
    padding: 1rem 0;
}

.qw-honeypot {
    position: absolute;
    left: -9999px;
    top: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.qw-panel {
    animation: qwFadeIn .3s ease;
}
@keyframes qwFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}
