/* Collection Page Specific Styles */

.collection-header {
    background: linear-gradient(135deg, rgba(45, 95, 63, 0.95), rgba(30, 64, 41, 0.95)),
        url('https://images.unsplash.com/photo-1607623814075-e51df1bdc82f?w=1600') center/cover;
    padding: 80px 20px;
    text-align: center;
    color: white;
}

.collection-header h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 12px;
}

.collection-header p {
    font-size: 18px;
    opacity: 0.95;
}

.collection-content {
    padding: 60px 0;
}

.collection-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
}

/* Sidebar Filters */
.collection-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.filter-section {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: var(--shadow-sm);
}

.filter-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
}

.filter-group {
    margin-bottom: 30px;
}

.filter-heading {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-dark);
    transition: var(--transition);
}

.filter-checkbox:hover {
    color: var(--primary-green);
}

.filter-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-green);
}

/* Collection Main */
.collection-main {
    min-height: 600px;
}

.collection-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.product-count {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

.sort-dropdown {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sort-dropdown label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.sort-dropdown select {
    padding: 10px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
    background: white;
}

.sort-dropdown select:focus {
    outline: none;
    border-color: var(--primary-green);
}

/* Responsive */
@media (max-width: 1024px) {
    .collection-layout {
        grid-template-columns: 1fr;
    }

    .collection-sidebar {
        position: static;
    }

    .filter-section {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .collection-header h1 {
        font-size: 32px;
    }

    .collection-toolbar {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .sort-dropdown {
        width: 100%;
    }

    .sort-dropdown select {
        flex: 1;
    }
}

@media (max-width: 480px) {
    .collection-header {
        padding: 60px 20px;
    }

    .collection-header h1 {
        font-size: 28px;
    }

    .filter-section {
        padding: 20px;
    }
}