
.trstemp-final-step {
    max-width: 1000px;
    margin: 0 auto;
}

.step-header {
    text-align: center;
    margin-bottom: 40px;
}

.step-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin: 0 0 15px 0;
}

.step-header p {
    font-size: 18px;
    color: #666;
    margin: 0;
}

.review-sections {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.review-section {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
}

.review-section h3 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0 0 15px 0;
}

.review-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.change-btn {
    background: #667eea;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
}

.customization-preview {
    display: flex;
    align-items: center;
    gap: 10px;
}

.customization-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.custom-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.custom-label {
    font-weight: 600;
    color: #333;
    min-width: 50px;
}

.color-preview-small {
    display: flex;
    align-items: center;
    gap: 6px;
}

.color-preview-small span:first-child {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 0 0 1px #ddd;
}

.features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.feature-tag {
    background: #667eea;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.website-details {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.website-details h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 0 0 20px 0;
}

.details-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-group input {
    padding: 12px;
    border: 2px solid #e5e5e5;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #667eea;
}

.import-options {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.import-options h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 0 0 20px 0;
}

.content-options {
    margin-bottom: 30px;
}

.option-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.option-tab {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.option-tab.active {
    border-color: #667eea !important;
    background: rgba(102, 126, 234, 0.05) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
}

.option-tab:hover:not(.active) {
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.1);
}

.tab-icon {
    font-size: 32px;
    min-width: 40px;
}

.trstemp-tab-content h4 {
    margin: 0 0 8px 0;
    font-size: 16px;
    color: #333;
}

.trstemp-tab-content p {
    margin: 0;
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

.option-description {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}

.description-content {
    display: none;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.description-content.active {
    display: block;
}

.description-content strong {
    color: #333;
}

.additional-options h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0 0 15px 0;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.option-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.option-card input[type="checkbox"] {
    margin-top: 2px;
}

.option-card label {
    cursor: pointer;
    flex: 1;
}

.option-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0 0 5px 0;
}

.option-card p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.ready-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
}

.ready-section h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 15px 0;
}

.ready-section p {
    font-size: 16px;
    opacity: 0.9;
    margin: 0 0 25px 0;
}

.estimated-time {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(255,255,255,0.2);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.time-icon {
    font-size: 20px;
}

.what-happens {
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
}

.what-happens h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 15px 0;
}

.what-happens ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.what-happens li {
    padding: 5px 0;
    font-size: 14px;
    opacity: 0.9;
}

.what-happens li:before {
    content: "✓ ";
    font-weight: bold;
    margin-right: 8px;
}

.start-import-btn {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.start-import-btn:hover {
    background: rgba(255,255,255,0.3);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-2px);
}

.start-import-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-icon {
    font-size: 18px;
}

@media (max-width: 768px) {
    .review-sections {
        grid-template-columns: 1fr;
    }
    
    .option-tabs {
        grid-template-columns: 1fr;
    }
    
    .options-grid {
        grid-template-columns: 1fr;
    }
    
    .details-form {
        grid-template-columns: 1fr;
    }
}