/* Paint Finder Styles */

.finder-main {
    padding: 3rem 0;
    min-height: 60vh;
    background-color: #f8fafc;
}

.wizard-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    min-height: 400px;
}

/* Progress Bar */
.progress-bar {
    height: 6px;
    background-color: #e2e8f0;
    border-radius: 3px;
    margin-bottom: 2rem;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background-color: #3b82f6;
    width: 33%;
    transition: width 0.3s ease;
}

/* Steps */
.wizard-step {
    display: none;
    animation: fadeIn 0.4s ease;
}

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

.wizard-step h2 {
    text-align: center;
    color: #1e3a8a;
    margin-bottom: 2rem;
}

/* Options Grid */
.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.option-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.option-card:hover {
    border-color: #3b82f6;
    background-color: #eff6ff;
    transform: translateY(-2px);
}

.option-card .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.option-card h3 {
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.option-card p {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0;
}

/* Results Section */
.recommendation-list {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.product-result-card {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-left: 5px solid #3b82f6;
}

.product-result-card h3 {
    color: #1e3a8a;
    margin-bottom: 0.5rem;
}

.product-result-card .badge {
    display: inline-block;
    background: #e0f2fe;
    color: #0369a1;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    align-self: flex-start;
}

.restart-btn {
    display: block;
    margin: 2rem auto 0;
    padding: 0.75rem 2rem;
    background-color: #64748b;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
}

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

/* Sheen Guide Section */
.sheen-guide-section {
    margin-top: 0;
    padding-top: 0;
    margin-bottom: 2rem;
}

.sheen-guide-section h2 {
    text-align: center;
    color: #1e3a8a;
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 1.5rem;
    color: #64748b;
}

.sheen-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.sheen-table {
    width: 100%;
    border-collapse: collapse;
    border: 2px solid #9ca3af;
    font-size: 0.95rem;
    background: #fff;
}

.sheen-table th,
.sheen-table td {
    border: 1px solid #d1d5db;
    padding: 1rem 0.75rem;
    vertical-align: middle;
    text-align: center;
    color: #374151;
}

.sheen-table .sheen-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    padding: 1.25rem 0.75rem;
    background: transparent;
    color: #374151;
}

.sheen-table thead th {
    background: #f8fafc;
    color: #1f2937;
    font-weight: 700;
}

.sheen-table ._spacer {
    background: transparent;
    border: none;
}

.sheen-table .row-label {
    width: 12%;
    text-align: left;
    padding-left: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #1f2937;
}

@media (max-width: 700px) {
    .sheen-table th,
    .sheen-table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.9rem;
    }
    .sheen-table .sheen-title {
        font-size: 1.25rem;
    }
}

.sheen-table .sheen-desc td {
    font-style: italic;
    color: #6b7280;
    background: #ffffff;
    text-align: left;
    padding-left: 1rem;
    line-height: 1.25;
}

.sheen-table .sheen-desc td:nth-child(n+2) {
    min-width: 120px;
}

.color-accuracy-note {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    background: #fff7ed;
    border-left: 4px solid #f59e0b;
    color: #92400e;
    font-weight: 800;
    border-radius: 6px;
    line-height: 1.25;
}

.color-accuracy-note a {
    color: #92400e;
    text-decoration: underline;
    font-weight: 800;
}