/* Products Page */
.products-page {
    padding: 2rem 20px;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

/* Products Header */
.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 0 20px;
}

.products-header h1 {
    margin: 0;
    font-size: 2rem;
    color: #333;
}

.sort-options select {
    padding: 0.5rem 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: white;
    font-size: 0.9rem;
    cursor: pointer;
}

.sort-options select:focus {
    outline: none;
    border-color: #007bff;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.pagination a {
    padding: 0.5rem 1rem;
    border: 1px solid var(--gray-300);
    text-decoration: none;
    color: var(--gray-900);
    border-radius: var(--border-radius);
}

.pagination a.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.pagination a.next {
    background-color: var(--gray-100);
}

/* Responsive styles */
@media (max-width: 768px) {
    .products-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .sort-options {
        width: 100%;
    }

    .sort-options select {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .products-page {
        padding: 1.2rem 10px;
    }

    .products-header {
        padding: 0 10px;
    }
}
