/* ===========================
   Business Setup Wizard Styles
   =========================== */

.rts-setup-wizard-area {
    padding-top: 40px;
}

.wizard-card-wrapper {
    position: relative;
}

.wizard-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
    padding: 36px 40px;
}

/* Progress */
.wizard-progress {
    margin-bottom: 28px;
}
.progress-bars {
    display: flex;
    gap: 6px;
    margin-bottom: 8px;
}
.progress-bars .bar {
    height: 6px;
    flex: 1;
    border-radius: 99px;
    background: #e5e7eb;
    transition: background 0.4s ease;
}
.progress-bars .bar.active {
    background: var(--color-primary, #1967d2);
    box-shadow: 0 0 8px rgba(25, 103, 210, 0.25);
}
.progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
}

/* Steps */
.wizard-steps {
    min-height: 300px;
}
.wizard-step {
    display: none;
    animation: wizardFadeIn 0.35s ease;
}
.wizard-step.active {
    display: block;
}
@keyframes wizardFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

.wizard-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #111827;
}
.wizard-subtitle {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 20px;
}
.wizard-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #374151;
}

/* Option Buttons */
.wizard-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.wizard-options.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.wizard-opt {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border: 1.5px solid #e5e7eb;
    border-radius: 14px;
    background: #fff;
    cursor: pointer;
    text-align: left;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
    font-size: 14px;
    font-weight: 500;
    color: #111827;
}
.wizard-opt:hover {
    border-color: var(--color-primary, #1967d2);
    background: #f0f6ff;
}
.wizard-opt.selected {
    border-color: var(--color-primary, #1967d2);
    background: #eef4ff;
    box-shadow: 0 0 0 3px rgba(25,103,210,.1);
}
.wizard-opt i {
    font-size: 18px;
    color: var(--color-primary, #1967d2);
    min-width: 22px;
}
.wizard-opt div strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #111827;
}
.wizard-opt div small {
    font-size: 12px;
    color: #6b7280;
}
.wizard-opt.small {
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 13px;
    justify-content: center;
    gap: 0;
}
.wizard-yn {
    display: flex;
    gap: 10px;
}
.wizard-yn .wizard-opt {
    flex: 1;
    justify-content: center;
}
.wizard-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}
.wizard-timeline {
    margin-top: 16px;
}

/* Nav */
.wizard-nav {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #f3f4f6;
}
.wizard-back-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    transition: background 0.2s;
}
.wizard-back-btn:hover { background: #f9fafb; }
.wizard-next-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    border-radius: 12px;
    padding: 12px 24px;
}

/* Trust Badges */
.wizard-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    margin-top: 20px;
    font-size: 12px;
    color: #6b7280;
    justify-content: center;
}
.wizard-trust span {
    display: flex;
    align-items: center;
    gap: 5px;
}
.wizard-trust i {
    color: var(--color-primary, #1967d2);
    font-size: 13px;
}

/* Info Side */
.wizard-info-side {
    padding-left: 30px;
}
[dir="rtl"] .wizard-info-side { padding-left: 0; padding-right: 30px; }

.wizard-benefits {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    color: #374151;
}
.benefit-item i {
    color: var(--color-primary, #1967d2);
    font-size: 14px;
}
.wizard-logo-area {
    margin-top: 30px;
}
.wizard-logo-area p {
    font-size: 13px;
    color: #9ca3af;
}

/* Wizard Form */
.wizard-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.wizard-form input {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #e5e7eb;
    border-radius: 12px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
}
.wizard-form input:focus {
    border-color: var(--color-primary, #1967d2);
}
.wizard-form .rts-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
}

/* RTL overrides */
[dir="rtl"] .wizard-opt {
    text-align: right;
}
[dir="rtl"] .wizard-grid-4 {
    direction: rtl;
}

/* Responsive */
@media (max-width: 768px) {
    .wizard-card { padding: 24px 20px; }
    .wizard-options.grid-2 { grid-template-columns: 1fr; }
    .wizard-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .wizard-info-side { padding-left: 0; padding-right: 0; margin-top: 30px; }
}
