/**
 * Tyre Selection Guide - Styles
 *
 * Simple, Bootstrap-based styling for the tyre selection guide
 */

/* Container */
.tyre-selection-guide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Option Cards - Clickable cards for wizard steps */
.option-card {
    transition: all 0.2s ease;
    border: 2px solid #dee2e6;
    cursor: pointer;
}

.option-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-color: #0d6efd;
    text-decoration: none;
}

.option-card .card-body {
    padding: 1.5rem;
}

.option-card h3 {
    color: #212529;
    margin-bottom: 0.5rem;
}

/* Progress Indicator */
.progress-indicator {
    max-width: 600px;
    margin: 0 auto;
}

/* Wizard Content */
.wizard-content {
    margin-top: 2rem;
}

/* Results Page */
.results-page .card {
    border: 1px solid #dee2e6;
}

.recommendation-card {
    transition: box-shadow 0.2s ease;
}

.recommendation-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Score Display */
.score-display {
    margin-bottom: 0.5rem;
}

.score-display .progress {
    margin-top: 0.25rem;
}

.score-display .progress-bar {
    font-size: 0.875rem;
    font-weight: bold;
}

/* Award Badges */
.badge {
    font-size: 0.75rem;
    padding: 0.35rem 0.65rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .tyre-selection-guide {
        padding: 1rem 0.5rem;
    }

    .option-card .card-body {
        padding: 1rem;
    }

    .recommendation-card .row {
        margin-bottom: 1rem;
    }

    .recommendation-card .col-md-4 {
        margin-bottom: 0.5rem;
    }
}

/* Landing page steps */
.tyre-selection-guide h1 {
    margin-bottom: 1rem;
}

.tyre-selection-guide .lead {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

/* Button spacing for selection guide */
.tyre-selection-guide .btn {
    margin: 0.25rem;
}
