.catalog-page {
    padding-top: 80px;
    min-height: 100vh;
}

.catalog-header {
    background-color: var(--gray-color);
    padding: 2rem 1rem;
    text-align: center;
    margin-bottom: 2rem;
}

.catalog-header h1 {
    color: var(--light-color);
    margin-bottom: 1rem;
}

.search-box {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    gap: 0.5rem;
}

.search-box input {
    flex: 1;
    padding: 0.8rem;
    border: 2px solid var(--dark-color);
    border-radius: 5px;
    font-size: 1rem;
    background: var(--dark-color);
    color: var(--light-color);
}

.search-box button {
    padding: 0.8rem 1.5rem;
    background: var(--gradient);
    color: var(--light-color);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-box button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(206, 16, 52, 0.4);
}

.catalog-container {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.filters {
    background: var(--gray-color);
    padding: 1.5rem;
    border-radius: 10px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.filters h3 {
    color: var(--light-color);
    margin-bottom: 1.5rem;
}

.filter-section {
    margin-bottom: 1.5rem;
}

.filter-section h4 {
    color: var(--light-color);
    margin-bottom: 0.8rem;
}

.filter-section label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--light-color);
    opacity: 0.9;
    cursor: pointer;
}

.filter-section input[type="checkbox"] {
    margin-right: 0.5rem;
}

.apply-filters {
    width: 100%;
    padding: 0.8rem;
    background: var(--gradient);
    color: var(--light-color);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.apply-filters:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(206, 16, 52, 0.4);
}

.quests-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.quest-card {
    display: flex;
    flex-direction: column;
    background: var(--gray-color);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.quest-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(206, 16, 52, 0.3);
}

.quest-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 1.5rem;
}

.quest-info p {
    margin-bottom: 1rem;
    flex-grow: 1;
}

.quest-meta {
    display: flex;
    gap: 1rem;
    margin: 0.8rem 0;
    color: var(--light-color);
    opacity: 0.8;
    font-size: 0.9rem;
}

.quest-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.quest-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.price {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .catalog-container {
        grid-template-columns: 1fr;
    }

    .filters {
        position: relative;
        top: 0;
        margin-bottom: 2rem;
    }

    .filter-section {
        margin-bottom: 1.5rem;
    }

    .filter-section h3 {
        font-size: 1.2rem;
    }

    .filter-options label {
        font-size: 1rem;
    }

    .apply-filters {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
    }

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