.wizard-container {    display: flex;    flex-direction: column;    justify-content: center;    align-items: center;    padding: 2rem 1rem;    min-height: calc(100vh - 120px); }.wizard-card {    background-color: #ffffff;    padding: 2rem;    border-radius: 12px;    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);    text-align: center;    width: 100%;    max-width: 800px;}.wizard-card h2 {    font-size: 2rem;    font-weight: 700;    color: #2d3748;    margin-bottom: 1.5rem;}.product-grid {    display: grid;    grid-template-columns: 1fr;    gap: 1.5rem;    margin-top: 2rem;}@media (min-width: 640px) {    .product-grid {        grid-template-columns: repeat(2, 1fr);    }}.product-card {    display: flex;    flex-direction: column;    align-items: center;    justify-content: center;    padding: 1.5rem;    background-color: #f7fafc;    border: 1px solid #e2e8f0;    border-radius: 8px;    text-decoration: none;    color: inherit;    transition: all 0.3s ease;}.product-card:hover {    background-color: #edf2f7;    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);    transform: translateY(-5px);}.product-card img {    max-width: 150px;    border-radius: 8px;    margin-bottom: 1rem;}.product-card h3 {    font-size: 1.25rem;    font-weight: 600;    color: #2d3748;}.product-card p {    font-size: 0.9rem;    color: #718096;    margin-top: 0.5rem;    text-align: center;}