 :root {
    --primary-color: #d16b4d;
    --background-light: #f8f6f6;
    --background-dark: #1f1613;
    --cream: #F5F1E9;
    --deep-green: #3E5C4E;
}



.step-circle {
    width: 32px;
    height: 32px;
    background: var(--deep-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.form-section {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.experience-option {
    border: 2px solid #dee2e6;
    border-radius: 8px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.experience-option:hover {
    border-color: var(--primary-color);
    background-color: rgba(209, 107, 77, 0.05);
}

.experience-option.selected {
    border-color: var(--primary-color);
    background-color: rgba(209, 107, 77, 0.1);
}

.meal-plan-option {
    border: 2px solid #dee2e6;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.meal-plan-option input[type="radio"]:checked + div {
    border-color: var(--primary-color);
    background-color: rgba(209, 107, 77, 0.1);
}

.summary-card {
    background: var(--cream);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid rgba(209, 107, 77, 0.1);
    position: sticky;
    top: 100px;
}

.price-breakdown {
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 1rem;
}

.total-price {
    font-size: 2rem;
    font-weight: 900;
    color: var(--deep-green);
}

.room-counter {
    display: flex;
    align-items: center;
    gap: 0rem;
}

.counter-btn {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.2s;
}

.counter-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.counter-value {
    min-width: 40px;
    text-align: center;
    font-weight: bold;
    font-size: 1.1rem;
    display: inline-inline-flex;
}

.form-group .required::after {
    display: none;
}
