/*
Theme Name: X-Style Product Filter Theme
Theme URI: http://example.com/
Author: Your Name
Description: A WordPress theme with a multi-step product filter wizard styled like the provided mascot design.
Version: 1.0
*/
body {
    background-color: #000;
    color: #fff;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}
header, footer {
    text-align: center;
    padding: 20px;
}
#wizard {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 20px;
}
#wizard .mascot {
    width: 220px;
    margin-right: 20px;
}
#wizard .steps {
    flex: 1;
    background-color: #111;
    padding: 20px;
    border-radius: 12px;
}
.steps h2 {
    font-size: 28px;
    margin-bottom: 15px;
}
.button-group button {
    background-color: #222;
    color: #fff;
    border: 2px solid #ff0000;
    border-radius: 8px;
    padding: 10px 15px;
    margin: 5px;
    cursor: pointer;
    font-weight: bold;
}
.button-group button:hover {
    background-color: #ff0000;
    color: #000;
}
.filter-section {
    margin-top: 20px;
}
.filter-section h3 {
    margin-bottom: 10px;
    color: #ffcc00;
}
.top-products {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}
.top-products .product {
    background-color: #222;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    #wizard {
        flex-direction: column;
        align-items: center;
    }
    #wizard .mascot {
        width: 150px;
        margin-bottom: 20px;
    }
    #wizard .steps {
        width: 95%;
        padding: 15px;
    }
    .button-group button {
        width: 100%;
        margin: 8px 0;
        font-size: 16px;
    }
    .filter-section input {
        margin: 5px;
    }
    .top-products {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .steps h2 {
        font-size: 22px;
    }
    .button-group button {
        font-size: 14px;
        padding: 8px;
    }
    .top-products {
        grid-template-columns: 1fr;
    }
}
