.gs-form-wrapper_6e963b19 {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 30px;
    max-width: 600px;
    margin: 0 auto;
    font-family: inherit;
}

/* Progress Tracker */
.gs-progress-container {
    position: relative;
    margin-bottom: 40px;
}

.gs-progress-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #f0f0f0;
    transform: translateY(-50%);
    z-index: 1;
}

.gs-progress-bar-fill {
    height: 100%;
    background-color: #D4AF37;
    transition: width 0.3s ease;
}

.gs-steps-nodes {
    position: relative;
    display: flex;
    justify-content: space-between;
    z-index: 2;
}

.gs-step-node {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 2px solid #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #a0a0a0;
    transition: all 0.3s ease;
}

.gs-step-node.active {
    border-color: #D4AF37;
    color: #D4AF37;
}

.gs-step-node.completed {
    background-color: #D4AF37;
    border-color: #D4AF37;
    color: #ffffff;
}

/* Step content visibility */
.gs-form-step {
    display: none;
}

.gs-form-step.active {
    display: block;
}

.gs-step-title {
    margin: 0 0 10px 0;
    font-size: 22px;
    font-weight: 600;
}

.gs-text {
    margin: 0 0 25px 0;
    color: #666;
    font-size: 15px;
}

/* Options Grid (Step 1) */
.gs-options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.gs-option-card {
    border: 2px solid #f0f0f0;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.gs-option-card:hover {
    border-color: #e0e0e0;
}

.gs-option-card.selected {
    border-color: #D4AF37;
    background-color: #fdfbf7;
}

.gs-option-icon {
    font-size: 24px;
    margin-bottom: 8px;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gs-option-icon svg,
.gs-option-icon i {
    width: 24px;
    height: 24px;
    font-size: 24px;
    fill: #555;
    color: #555;
}

.gs-option-title {
    font-weight: 500;
    font-size: 15px;
}

/* Inputs & Form Groups */
.gs-field-group {
    margin-bottom: 25px;
}

.gs-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 14px;
}

.gs-select,
.gs-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #dcdcdc;
    border-radius: 8px;
    background-color: #ffffff;
    font-size: 15px;
    box-sizing: border-box;
}

/* Range Slider */
.gs-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background: #e0e0e0;
    border-radius: 5px;
    outline: none;
}

.gs-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #D4AF37;
    cursor: pointer;
}

.gs-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #D4AF37;
    cursor: pointer;
}

/* Actions Area */
.gs-form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 30px;
}

.gs-btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
}

.gs-btn-primary {
    background-color: #D4AF37;
    color: #ffffff;
}

.gs-btn-primary:disabled {
    background-color: #f0f0f0;
    color: #b0b0b0;
    cursor: not-allowed;
}

.gs-btn-secondary {
    background-color: #f5f5f5;
    color: #333333;
}

.gs-btn-secondary:hover {
    background-color: #e8e8e8;
}
