* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #121212;
    color: #fff;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

h1 {
    font-size: 3.5rem;
    color: #00ffcc;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(0, 255, 204, 0.5);
}

h2 {
    font-size: 2.5rem;
    color: #00ffcc;
    margin-bottom: 30px;
}

p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 30px;
}

.choice-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    background: #00ffcc;
    color: #121212;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 255, 204, 0.4);
}

.hidden {
    display: none;
}

.filters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    width: 100%;
    max-width: 800px;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

label {
    font-size: 1rem;
    color: #ccc;
}

input[type="text"],
select {
    padding: 10px;
    border: none;
    border-radius: 8px;
    background: #1e1e1e;
    color: #fff;
    font-size: 1rem;
}

input[type="range"] {
    width: 100%;
    accent-color: #00ffcc;
}

.slider-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.slider-values {
    display: flex;
    justify-content: space-between;
    color: #ccc;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 10px;
}

input[type="checkbox"] {
    accent-color: #00ffcc;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.section:not(.hidden) {
    animation: fadeIn 0.5s ease-in-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .choice-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .filters {
        grid-template-columns: 1fr;
    }
}

/*Purchase page styles*/
.results {
    margin-top: 20px;
}

.results h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

#resultsList {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.result-item {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 5px;
    width: 100%;
    max-width: 300px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.result-item p {
    margin: 5px 0;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
}