.calculator-steps { padding: 24px 40px; border-bottom: 1px solid var(--border-color); background: #fafafa; } .step-indicator { display: flex; align-items: center; justify-content: center; gap: 0; } .step-indicator .step { display: flex; flex-direction: column; align-items: center; gap: 8px; opacity: 0.4; transition: opacity 0.3s, transform 0.3s; } .step-indicator .step-num { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; background: var(--bg-secondary); border: 2px solid var(--border-color); font-size: 14px; font-weight: 600; color: var(--text-secondary); transition: all 0.3s; } .step-indicator .step-text { font-size: 12px; font-weight: 500; color: var(--text-secondary); } .step-indicator .step-line { flex: 0 0 60px; height: 2px; background: var(--border-color); margin: 0 12px; margin-bottom: 24px; } .calculator-step-content { display: none; } .step-title { font-size: 20px; font-weight: 600; color: var(--text-primary); margin-bottom: 24px; text-align: center; } .brand-selection { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; max-width: 500px; margin: 0 auto 32px; } .brand-card { cursor: pointer; } .brand-card input { display: none; } .brand-card-inner { display: flex; flex-direction: column; align-items: center; gap: 12px; padding: 32px 24px; background: var(--bg-secondary); border: 2px solid transparent; border-radius: 16px; transition: all 0.3s; } .brand-card-inner i { font-size: 48px; color: var(--text-secondary); transition: color 0.3s; } .brand-card-inner span { font-size: 18px; font-weight: 600; color: var(--text-primary); } .brand-card input:checked + .brand-card-inner { background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(167, 139, 250, 0.1) 100%); border-color: var(--accent-primary); } .brand-card input:checked + .brand-card-inner i { color: var(--accent-primary); } .brand-card:hover .brand-card-inner { transform: translateY(-2px); box-shadow: var(--shadow-md); } .model-selection { display: grid; gap: 20px; max-width: 500px; margin: 0 auto 32px; } .form-select { width: 100%; padding: 14px 18px; font-size: 16px; font-family: inherit; color: var(--text-primary); background: var(--bg-secondary); border: 2px solid var(--border-color); border-radius: 12px; outline: none; transition: border-color 0.3s, box-shadow 0.3s; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236e6e73' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; cursor: pointer; } .form-select:focus { border-color: var(--accent-primary); box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15); } .form-select:disabled { opacity: 0.5; cursor: not-allowed; } .condition-selection { max-width: 600px; margin: 0 auto 32px; } .condition-group { margin-bottom: 28px; } .condition-group h4 { font-size: 16px; font-weight: 600; color: var(--text-primary); margin-bottom: 16px; text-align: center; } .battery-options { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; } .option-card { cursor: pointer; } .option-card input { display: none; } .option-card-inner { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 20px 16px; background: var(--bg-secondary); border: 2px solid transparent; border-radius: 12px; transition: all 0.3s; text-align: center; } .option-card-inner i { font-size: 28px; color: var(--text-secondary); } .option-card-inner .option-title { font-size: 16px; font-weight: 600; color: var(--text-primary); } .option-card-inner .option-desc { font-size: 13px; color: var(--text-secondary); } .option-card input:checked + .option-card-inner { background: rgba(124, 58, 237, 0.1); border-color: var(--accent-primary); } .option-card input:checked + .option-card-inner i { color: var(--accent-green); } .condition-checkboxes { display: flex; flex-direction: column; gap: 12px; } .condition-checkbox { display: flex; align-items: flex-start; gap: 14px; padding: 16px 20px; background: var(--bg-secondary); border-radius: 12px; cursor: pointer; transition: background 0.2s; } .condition-checkbox:hover { background: var(--bg-card-hover); } .condition-checkbox input { display: none; } .condition-checkbox input:checked + .checkbox-custom { background: var(--accent-primary); border-color: var(--accent-primary); } .condition-checkbox input:checked + .checkbox-custom::after { opacity: 1; transform: scale(1); } .checkbox-content { flex: 1; } .checkbox-title { display: block; font-size: 15px; font-weight: 600; color: var(--text-primary); margin-bottom: 4px; } .checkbox-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.4; } .step-actions { display: flex; justify-content: center; gap: 12px; margin-top: 32px; } .btn-step { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; font-size: 15px; font-weight: 600; font-family: inherit; border: none; border-radius: 12px; cursor: pointer; transition: all 0.3s; } .btn-prev { background: var(--bg-secondary); color: var(--text-primary); } .btn-prev:hover { background: var(--bg-card-hover); } .btn-next, .btn-calculate { background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%); color: #fff; } .btn-next:hover, .btn-calculate:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(124, 58, 237, 0.3); } .btn-step:disabled { opacity: 0.5; cursor: not-allowed; transform: none !important; box-shadow: none !important; } .result-container { min-height: 300px; display: flex; align-items: center; justify-content: center; } .result-loading { text-align: center; } .result-loading p { color: var(--text-secondary); font-size: 16px; } .result-content { width: 100%; } .result-success { text-align: center; margin-bottom: 32px; } .result-icon { width: 80px; height: 80px; margin: 0 auto 20px; background: linear-gradient(135deg, rgba(52, 199, 89, 0.15) 0%, rgba(52, 199, 89, 0.05) 100%); border-radius: 50%; display: flex; align-items: center; justify-content: center; } .result-icon i { font-size: 40px; color: var(--accent-green); } .result-title { font-size: 20px; font-weight: 600; color: var(--text-secondary); margin-bottom: 12px; } .result-price { font-size: 48px; font-weight: 700; color: var(--accent-green); margin-bottom: 24px; } .detail-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; font-size: 14px; } .detail-row:not(:last-child) { border-bottom: 1px solid var(--border-color); } .detail-row.base-price .detail-value { color: var(--accent-primary); } .detail-row.deduction .detail-value { color: var(--accent-red); } .btn-contact { display: inline-flex; align-items: center; gap: 10px; padding: 16px 32px; font-size: 16px; font-weight: 600; font-family: inherit; background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%); color: #fff; border: none; border-radius: 12px; cursor: pointer; transition: all 0.3s; } .btn-contact:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(124, 58, 237, 0.35); } .btn-restart { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; font-size: 14px; font-weight: 500; font-family: inherit; background: transparent; color: var(--text-secondary); border: none; cursor: pointer; transition: color 0.2s; } .btn-restart:hover { color: var(--text-primary); } .result-error { text-align: center; } .result-error h3 { font-size: 20px; font-weight: 600; color: var(--text-primary); margin-bottom: 8px; } .result-error p { color: var(--text-secondary); margin-bottom: 24px; } @media (max-width: 991px) { .step-indicator { flex-wrap: wrap; gap: 8px; } .step-indicator .step-line { display: none; } .step-indicator .step { flex: 0 0 auto; } } @media (max-width: 600px) { .calculator-steps { padding: 16px 24px; } .brand-selection { grid-template-columns: 1fr; } .battery-options { grid-template-columns: 1fr; } .result-price { font-size: 36px; } }