.goddess-wizard {
    max-width: 800px;
    margin: 40px auto;
    padding: 40px 20px;
    font-family: 'Georgia', serif;
    background-color: #3D3B1D;
    color: #e4be87;
    text-align: center;
    line-height: 1.6;
    border: 1px solid #84a98c;
}

.goddess-wizard h2 {
    font-weight: normal;
    font-style: italic;
    margin-bottom: 30px;
    color: #e4be87;
}

.step-hint {
    font-size: 0.9em;
    color: #84a98c;
    margin-bottom: 20px;
}

.wizard-step {
    display: none;
    animation: fadeIn 0.8s ease;
}

.wizard-step.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.input-container {
    max-width: 400px;
    margin: 0 auto 40px;
}

.input-container input[type="text"] {
    width: 100%;
    padding: 15px;
    background: transparent;
    border: 1px solid #84a98c;
    color: #e4be87;
    font-family: inherit;
    font-size: 1.1em;
    text-align: center;
    outline: none;
    transition: all 0.3s ease;
}

.input-container input[type="text"]::placeholder {
    color: rgba(132, 169, 140, 0.6);
}

.input-container input[type="text"]:focus {
    border-color: #e4be87;
    box-shadow: 0 0 5px rgba(228, 190, 135, 0.3);
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.option-card {
    cursor: pointer;
    border: 1px solid #84a98c;
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(132, 169, 140, 0.05);
    color: #e4be87;
}

.option-card input {
    position: absolute;
    opacity: 0;
}

.option-card:hover {
    border-color: #e4be87;
    background: rgba(132, 169, 140, 0.1);
}

.option-card:has(input:checked) {
    border-color: #e4be87;
    background: rgba(228, 190, 135, 0.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.card-content {
    font-size: 1.1em;
}

.wizard-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.wizard-nav button {
    background: none;
    border: 1px solid #e4be87;
    color: #e4be87;
    padding: 10px 25px;
    cursor: pointer;
    font-family: inherit;
    font-style: italic;
    transition: all 0.3s ease;
}

.wizard-nav button:hover {
    background: #e4be87;
    color: #3D3B1D;
}

#goddess-price-display {
    font-size: 1.5em;
    margin: 30px 0;
    font-weight: normal;
    color: #e4be87;
}

#goddess-total {
    font-weight: bold;
    color: #84a98c;
}

.intention-footer {
    margin: 20px auto 40px;
    max-width: 600px;
    font-style: italic;
    color: #84a98c;
    font-size: 1.1em;
}

.loader {
    font-style: italic;
    color: #84a98c;
    margin-top: 20px;
}

