/* ============================================
   Fragrance Finder - TheAromaverse
   Premium multi-step quiz styles
   ============================================ */

.finder-hero {
    padding: 100px 0 70px;
    text-align: center;
    background: #0a0a0a;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.finder-intro {
    max-width: 620px;
    margin: 0 auto;
    padding: 0 20px;
}

.finder-overline {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 4px;
    color: #d4af37;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 14px;
}

.finder-intro h1 {
    font-size: 3.25rem;
    line-height: 1.05;
    color: #fff;
    margin-bottom: 18px;
    font-weight: 700;
}

.finder-intro p {
    font-size: 1.15rem;
    color: #aaa;
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.6;
}

.finder-section {
    padding: 60px 0 100px;
    background: #0f0f0f;
}

.finder-card {
    max-width: 780px;
    margin: 0 auto;
    background: #121212;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 24px;
    padding: 55px 50px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
    position: relative;
    overflow: hidden;
}

.finder-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    opacity: 0.3;
}

/* Progress */
.finder-progress {
    max-width: 620px;
    margin: 0 auto 45px;
}

.finder-progress-bar {
    height: 6px;
    background: #1f1f1f;
    border-radius: 50px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
}

.finder-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #d4af37, #f7e28b);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 16.6%;
}

.finder-progress-text {
    text-align: center;
    margin-top: 14px;
    color: #888;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Steps */
.finder-step {
    display: none;
}

.finder-step.active {
    display: block;
    animation: finderFadeIn 0.4s ease forwards;
}

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

.finder-step h2 {
    text-align: center;
    margin-bottom: 38px;
    font-size: 1.85rem;
    color: #fff;
    font-weight: 600;
    line-height: 1.3;
}

/* Options Grid */
.finder-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.finder-option {
    cursor: pointer;
    position: relative;
}

.finder-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.finder-option span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 92px;
    padding: 18px 24px;
    border-radius: 18px;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #ddd;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.02rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.4;
}

.finder-option:hover span {
    transform: translateY(-4px);
    border-color: #d4af37;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.finder-option input:checked + span {
    background: #d4af37;
    color: #111;
    border-color: #d4af37;
    box-shadow: 0 0 0 1px #d4af37, 0 15px 35px rgba(212, 175, 55, 0.3);
    font-weight: 700;
}

/* Error message */
.finder-error-message {
    color: #f87171;
    font-size: 0.9rem;
    text-align: center;
    margin-top: 18px;
    min-height: 22px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.finder-error-message.show {
    opacity: 1;
}

/* Actions */
.finder-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
    gap: 12px;
    flex-wrap: wrap;
}

.finder-actions .btn {
    min-width: 190px;
    padding: 14px 32px;
    font-weight: 600;
    border-radius: 9999px;
    transition: all 0.2s ease;
}

.finder-actions .btn-secondary {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.15);
    color: #ccc;
}

.finder-actions .btn-secondary:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.3);
    color: #fff;
}

.finder-actions .btn-primary {
    background: #d4af37;
    color: #111;
    border: none;
}

.finder-actions .btn-primary:hover {
    background: #f7e28b;
    transform: translateY(-1px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.35);
}

/* Mobile */
@media (max-width: 768px) {
    .finder-card {
        padding: 35px 24px;
        border-radius: 20px;
    }

    .finder-intro h1 {
        font-size: 2.35rem;
    }

    .finder-step h2 {
        font-size: 1.55rem;
        margin-bottom: 28px;
    }

    .finder-options {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .finder-option span {
        min-height: 78px;
        font-size: 0.98rem;
        padding: 16px 20px;
    }

    .finder-actions {
        flex-direction: column;
        gap: 12px;
    }

    .finder-actions .btn {
        width: 100%;
        min-width: auto;
    }
}

/* Extra polish for luxury feel */
.finder-option span {
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}